forked from FoundKeyGang/FoundKey
Use parallel and incremental builds (#105)
Reviewed-on: FoundKeyGang/FoundKey#105 Changelog: Changed
This commit is contained in:
commit
f669c8a285
4 changed files with 6 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -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
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"incremental": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"noEmitOnError": false,
|
"noEmitOnError": false,
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"incremental": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"noEmitOnError": false,
|
"noEmitOnError": false,
|
||||||
"noImplicitAny": false,
|
"noImplicitAny": false,
|
||||||
|
|
Loading…
Reference in a new issue