Refactor build process
Showing
bin/build-manifest.sh
0 → 100755
bin/build.sh
deleted
100755 → 0
bin/make-manifest.sh
deleted
100755 → 0
... | @@ -7,12 +7,11 @@ | ... | @@ -7,12 +7,11 @@ |
"url": "https://github.com/colebemis/feather.git" | "url": "https://github.com/colebemis/feather.git" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"start": "parallelshell 'jekyll serve' 'npm run watch'", | "start": "npm run build:manifest && parallelshell 'jekyll serve' 'npm run watch'", | ||
"watch": "onchange 'icons/**/*' 'package.json' -v -i -- npm run make", | "watch": "onchange 'icons/**/*' -v -- npm run build:manifest", | ||
"build": "npm run make && jekyll build", | "build": "npm run build:manifest && npm run build:zip && jekyll build", | ||
"make": "npm run make:manifest && npm run make:zip", | "build:manifest": "./bin/build-manifest.sh > manifest.json", | ||
"make:manifest": "./bin/make-manifest.sh > manifest.json", | "build:zip": "./bin/build-zip.sh" | ||
"make:zip": "./bin/make-zip.sh" | |||
}, | }, | ||
"license": "MIT", | "license": "MIT", | ||
"devDependencies": { | "devDependencies": { | ||
... | ... |
Please register or sign in to comment