Use new TS build system for ds and utils

This commit is contained in:
Hammad Jutt
2020-07-28 14:38:52 -06:00
parent 7a3b83d9d8
commit a11d4fea21
3 changed files with 4 additions and 3 deletions

View File

@@ -28,6 +28,7 @@
"typecheck": "lerna run typecheck",
"precommit": "lerna run --concurrency 1 --stream precommit",
"prepush": "yarn typecheck",
"utils": "yarn --cwd packages/utils/",
"web": "yarn --cwd packages/web/",
"ds": "yarn --cwd packages/design-system/"
},

View File

@@ -12,7 +12,7 @@
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"typecheck": "tsc -p tsconfig.build.json",
"typecheck": "tsc -b tsconfig.build.json",
"dev": "yarn start",
"start": "tsdx watch --tsconfig tsconfig.build.json --verbose --noClean",
"build": "tsdx build --tsconfig tsconfig.build.json",

View File

@@ -7,8 +7,8 @@
"private": true,
"scripts": {
"start": "yarn dev",
"build": "tsc",
"dev": "tsc -w",
"build": "tsc -b",
"dev": "yarn build --watch",
"typecheck": "yarn build",
"prepare": "yarn build",
"precommit": "yarn lint-staged"