From 89f62683ce2b01fbb55c7de046d5e775ac547f59 Mon Sep 17 00:00:00 2001 From: Cameron Diver Date: Wed, 4 Apr 2018 15:14:54 +0100 Subject: [PATCH] Add a fast build script to package.json This doesn't run a linter or any documentation generation, aiding in quick development time. Change-type: patch Signed-off-by: Cameron Diver --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8a2b315d..8bfe5534 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,8 @@ "scripts": { "prebuild": "rimraf build/ build-bin/ build-zip/", "build": "npm run build:src && npm run build:bin", - "build:src": "npm run prettify && npm run lint && gulp build && tsc && npm run build:doc", + "build:src": "npm run prettify && npm run lint && npm run build:fast && npm run build:doc", + "build:fast": "gulp build && tsc", "build:doc": "mkdirp doc/ && ts-node automation/capitanodoc/index.ts > doc/cli.markdown", "build:bin": "ts-node --type-check -P automation automation/build-bin.ts", "release": "npm run build && ts-node --type-check -P automation automation/deploy-bin.ts",