- Added instructions to create the html.js file as requested per the issue.
 - Added the html.min.js file to the vanilla example
 - Tested and working as expected.
This commit is contained in:
Matt McFarland
2016-08-02 10:17:59 -04:00
parent d547d5863b
commit b9698a7527
2 changed files with 7 additions and 0 deletions
+6
View File
@@ -22,6 +22,9 @@ build_dev () {
-g yo-yoify \
-g es2020 \
> dist/choo.js
NODE_ENV=development browserify html.js \
--standalone=html \
> dist/html.js
}
build_min () {
@@ -37,6 +40,9 @@ build_min () {
-p bundle-collapser/plugin \
| uglifyjs \
> dist/choo.min.js
NODE_ENV=production browserify html.js \
--standalone=html \
> dist/html.min.js
}
build_gz () {