Add gulp to package.json scripts for ease of CI.

When using themes through git submodule some steps need to be ran in CI. One of these being the `gulp default` run. By adding this to the package.json CI setups for Hugo can use `npm i && npm run gulp default` instead of having to install gulp separately.
master
Craigory V Coppola 2020-10-12 13:49:09 -05:00 committed by GitHub
parent f8d2670528
commit c7128d19eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@
"description": "Hugo theme made for documentation",
"main": "gulpfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"gulp": "gulp"
},
"repository": {
"type": "git",