This commit is contained in:
Adria Navarro 2023-05-23 11:43:57 +02:00
parent fe1d6e0dcc
commit 931458094b
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ jobs:
cache: "yarn"
- run: yarn
- run: yarn build --projects=@budibase/string-templates
- run: yarn nx run-many -t=check:types
- run: yarn nx run-many -t=build:checktypes
test-libraries:
runs-on: ubuntu-latest

View File

@ -12,7 +12,7 @@
"prebuild": "rimraf dist/",
"build": "node ./scripts/build.js",
"postbuild": "copyfiles -f ../client/dist/budibase-client.js ../client/manifest.json client",
"check:types": "tsc -p tsconfig.build.json --noEmit",
"build:checktypes": "tsc -p tsconfig.build.json --noEmit",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"debug": "yarn build && node --expose-gc --inspect=9222 dist/index.js",
"test": "bash scripts/test.sh",

View File

@ -14,7 +14,7 @@
"scripts": {
"prebuild": "rimraf dist/",
"build": "cd ../.. && nx build @budibase/worker",
"check:types": "yarn build --configuration=production",
"build:checktypes": "yarn build --configuration=production",
"build:dev": "yarn prebuild && tsc --build --watch --preserveWatchOutput",
"run:docker": "node dist/index.js",
"debug": "yarn build && node --expose-gc --inspect=9223 dist/index.js",