@budibase/worker 2.8.29-alpha.11 → 2.8.29-alpha.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/nodemon.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
- "watch": ["src", "../backend-core", "../pro"],
3
- "ext": "js,ts,json",
4
- "ignore": [
5
- "src/**/*.spec.ts",
6
- "src/**/*.spec.js",
7
- "../backend-core/dist/**/*"
2
+ "watch": [
3
+ "src",
4
+ "../backend-core",
5
+ "../pro",
6
+ "../types",
7
+ "../shared-core",
8
+ "../string-templates"
8
9
  ],
10
+ "ext": "js,ts,json",
11
+ "ignore": ["src/**/*.spec.ts", "src/**/*.spec.js", "../*/dist/**/*"],
9
12
  "exec": "yarn build && node dist/index.js"
10
13
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.8.29-alpha.11",
4
+ "version": "2.8.29-alpha.13",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -38,10 +38,10 @@
38
38
  "author": "Budibase",
39
39
  "license": "GPL-3.0",
40
40
  "dependencies": {
41
- "@budibase/backend-core": "2.8.29-alpha.11",
42
- "@budibase/pro": "2.8.29-alpha.11",
43
- "@budibase/string-templates": "2.8.29-alpha.11",
44
- "@budibase/types": "2.8.29-alpha.11",
41
+ "@budibase/backend-core": "2.8.29-alpha.13",
42
+ "@budibase/pro": "2.8.29-alpha.13",
43
+ "@budibase/string-templates": "2.8.29-alpha.13",
44
+ "@budibase/types": "2.8.29-alpha.13",
45
45
  "@koa/router": "8.0.8",
46
46
  "@sentry/node": "6.17.7",
47
47
  "@techpass/passport-openidconnect": "0.3.2",
@@ -103,19 +103,5 @@
103
103
  "typescript": "4.7.3",
104
104
  "update-dotenv": "1.1.1"
105
105
  },
106
- "nx": {
107
- "targets": {
108
- "dev:builder": {
109
- "dependsOn": [
110
- {
111
- "projects": [
112
- "@budibase/backend-core"
113
- ],
114
- "target": "build"
115
- }
116
- ]
117
- }
118
- }
119
- },
120
- "gitHead": "30ebf0d274c93fd68ee316ce7a7b514609d69205"
106
+ "gitHead": "eaf1a917c56051748b7487cf0607c8eb08c1b8cd"
121
107
  }
package/scripts/test.sh CHANGED
@@ -4,8 +4,8 @@ set -e
4
4
  if [[ -n $CI ]]
5
5
  then
6
6
  # --runInBand performs better in ci where resources are limited
7
- echo "jest --coverage --runInBand --forceExit"
8
- jest --coverage --runInBand --forceExit
7
+ echo "jest --coverage --runInBand --forceExit --bail"
8
+ jest --coverage --runInBand --forceExit --bail
9
9
  else
10
10
  # --maxWorkers performs better in development
11
11
  echo "jest --coverage --maxWorkers=2 --forceExit"