1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-06-26 08:03:45 +02:00

package.json: Add clean task to remove temp style

Ignoring the temporary, intermediate style in .gitignore works for
this project, but the site still ends up with a copy of it in its
public folder. It's better to just clean up the temp file after
successful generation of the minified style.
This commit is contained in:
Alan Orth 2016-09-26 10:06:47 +03:00
parent 5ed4b51531
commit 05c962a797
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9

View File

@ -9,7 +9,8 @@
"scripts": {
"build:css": "node-sass --output-style compressed source/scss/style.scss static/css/style.css.tmp && cssnano static/css/style.css.tmp static/css/style.css",
"build:fonts": "cp node_modules/font-awesome/fonts/* static/fonts",
"build": "npm run build:css && npm run build:fonts"
"build": "npm run build:css && npm run build:fonts && npm run clean",
"clean": "rm static/css/style.css.tmp"
},
"keywords": "hugo",
"author": "Alan Orth",