File tree Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Expand file tree Collapse file tree 2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ Mixed-Nuts(ミックスナッツ)は便利なライブラリを組み合わせ
1313- ✅ purgeCssによる未使用スタイルの自動除去
1414- ✅ 本番ビルドによるファイル圧縮(Minify)対応
1515- ✅ 出力HTML自動整形
16+ - ✅ Netlifyにデプロイ対応
17+
18+ 昨今の複雑なフロントエンドの開発環境やデプロイ環境を数コマンドで構築できるようにしました。
19+ 環境作りが苦手だったり面倒だと感じている方にぜひ使っていただきたいです。
1620
1721## 要件
1822
@@ -35,10 +39,9 @@ $ npm install
3539### Git初期化
3640
3741```
38- $ rm -rf .git
39- $ git init
40- $ git add .
41- $ git commit -m "first commit"
42+ $ rm -rf .git && git init && git add . && git commit -m "first commit"
43+ $ git remote add origin 追加したいリポジトリ
44+ $ git push -u origin master
4245```
4346
4447## ビルド
Original file line number Diff line number Diff line change @@ -21,16 +21,9 @@ $ npm install
2121<h2 >Git initialize</h2 >
2222
2323<pre >
24- $ npm run git:init
25- </pre >
26-
27- <p >or...</p >
28-
29- <pre >
30- $ rm -rf .git
31- $ git init
32- $ git add .
33- $ git commit -m "first commit"
24+ $ rm -rf .git; git init; git add .; git commit -m "first commit"
25+ $ git remote add origin 追加したいリポジトリ
26+ $ git push -u origin master
3427</pre >
3528
3629<h2 >Build</h2 >
You can’t perform that action at this time.
0 commit comments