From c7128d19ebcb58a6866d021963f80e265dd7942e Mon Sep 17 00:00:00 2001 From: Craigory V Coppola Date: Mon, 12 Oct 2020 13:49:09 -0500 Subject: [PATCH] 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. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f5f3f6..1b7bddb 100644 --- a/package.json +++ b/package.json @@ -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",