From d1ea2daf5e419ea8658c6783e5d14af407332b5b Mon Sep 17 00:00:00 2001 From: ULIVZ <472590061@qq.com> Date: Sun, 10 Mar 2019 03:11:58 +0800 Subject: [PATCH] chore: add minimal dev & build script --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ca677c54c0..88ad1a05af 100644 --- a/package.json +++ b/package.json @@ -11,8 +11,10 @@ "bootstrap": "yarn && lerna bootstrap && yarn tsc", "boot": "node scripts/bootstrap.js", "remote-version": "node scripts/remote-version.js", - "dev": "yarn tsc && yarn workspace docs dev", - "build": "yarn tsc && yarn workspace docs build", + "dev": "yarn tsc && yarn dev:docs", + "dev:docs": "yarn workspace docs dev", + "build": "yarn tsc && yarn build:docs", + "build:docs": "yarn workspace docs build", "view-info": "yarn tsc && yarn workspace docs view-info", "show-help": "yarn workspace docs show-help", "dev:blog": "yarn tsc && yarn workspace blog dev",