diff options
author | amzrk2 | 2020-06-14 00:06:35 +0800 |
---|---|---|
committer | amzrk2 | 2020-06-14 00:06:35 +0800 |
commit | 231964080b26b3b3cab91b2c6144a784d3bef99d (patch) | |
tree | cb528f92f65f1bdc8c3a679cf1d8cbb7f1375e87 /package.json | |
parent | d6a2a5d08804ce712185a41229d531a96d03fe95 (diff) | |
download | hugo-theme-fuji-231964080b26b3b3cab91b2c6144a784d3bef99d.tar.gz hugo-theme-fuji-231964080b26b3b3cab91b2c6144a784d3bef99d.tar.bz2 hugo-theme-fuji-231964080b26b3b3cab91b2c6144a784d3bef99d.zip |
In-post APlayer now support multiple files
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package.json b/package.json index 252616c..24d26d6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hugo-theme-fuji", - "version": "2.0.0", + "version": "2.1.0", "description": "A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。", "repository": { "type": "git", @@ -23,6 +23,7 @@ "@primer/css": "14.4.0", "autoprefixer": "^9.8.0", "cssnano": "^4.1.10", + "del": "^5.1.0", "gulp": "^4.0.2", "gulp-babel": "^8.0.0", "gulp-postcss": "^8.0.0", @@ -36,9 +37,11 @@ "uglify-js": "^3.9.4" }, "scripts": { - "build": "gulp build", + "prodBuild": "gulp build", + "prodClean": "gulp clean", "devCss": "gulp devCss", "devJs": "gulp devJs", + "build": "npm-run-all -p prodBuild prodClean", "dev": "npm-run-all -p devCss devJs" } } |