Add npm scripts

This commit is contained in:
Cole Bemis 2017-05-13 02:36:11 -07:00
parent b25e6c255b
commit 49bc7a1735

View File

@ -6,5 +6,17 @@
"type": "git",
"url": "https://github.com/colebemis/feather.git"
},
"license": "MIT"
}
"scripts": {
"start": "parallelshell 'jekyll serve' 'npm run watch'",
"watch": "onchange 'icons/**/*' -v -i -- npm run make",
"build": "npm run make && jekyll build",
"make": "npm run make:manifest && npm run make:zip",
"make:manifest": "./bin/make-manifest.sh > manifest.json",
"make:zip": "./bin/make-zip.sh"
},
"license": "MIT",
"devDependencies": {
"onchange": "^3.2.1",
"parallelshell": "^2.0.0"
}
}