Add npm scripts
Showing
... | @@ -6,5 +6,17 @@ | ... | @@ -6,5 +6,17 @@ |
"type": "git", | "type": "git", | ||
"url": "https://github.com/colebemis/feather.git" | "url": "https://github.com/colebemis/feather.git" | ||
}, | }, | ||
"license": "MIT" | "scripts": { | ||
} | "start": "parallelshell 'jekyll serve' 'npm run watch'", | ||
\ No newline at end of file | "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" | |||
} | |||
} |
Please register or sign in to comment