Use parallel and incremental builds (#105)

Reviewed-on: FoundKeyGang/FoundKey#105
Changelog: Changed
This commit is contained in:
Norm 2022-09-03 21:57:16 +00:00
commit f669c8a285
4 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View file

@ -59,3 +59,6 @@ ormconfig.json
packages/client/.yarn/* packages/client/.yarn/*
packages/backend/.yarn/* packages/backend/.yarn/*
packages/sw/.yarn/* packages/sw/.yarn/*
# TypeScript
tsconfig.tsbuildinfo

View file

@ -10,7 +10,7 @@
"packages/*" "packages/*"
], ],
"scripts": { "scripts": {
"build": "yarn workspaces foreach --topological run build && yarn run gulp", "build": "yarn workspaces foreach --parallel --topological run build && yarn run gulp",
"start": "yarn workspace backend run start", "start": "yarn workspace backend run start",
"start:test": "yarn workspace backend run start:test", "start:test": "yarn workspace backend run start:test",
"init": "yarn migrate", "init": "yarn migrate",

View file

@ -1,5 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"incremental": true,
"allowJs": true, "allowJs": true,
"noEmitOnError": false, "noEmitOnError": false,
"noImplicitAny": true, "noImplicitAny": true,

View file

@ -1,5 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"incremental": true,
"allowJs": true, "allowJs": true,
"noEmitOnError": false, "noEmitOnError": false,
"noImplicitAny": false, "noImplicitAny": false,