@budibase/worker 2.8.29-alpha.12 → 2.8.29-alpha.14
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 +9 -6
- package/package.json +6 -20
- package/scripts/test.sh +2 -2
package/nodemon.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"watch": [
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"../
|
|
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.
|
|
4
|
+
"version": "2.8.29-alpha.14",
|
|
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.
|
|
42
|
-
"@budibase/pro": "2.8.29-alpha.
|
|
43
|
-
"@budibase/string-templates": "2.8.29-alpha.
|
|
44
|
-
"@budibase/types": "2.8.29-alpha.
|
|
41
|
+
"@budibase/backend-core": "2.8.29-alpha.14",
|
|
42
|
+
"@budibase/pro": "2.8.29-alpha.14",
|
|
43
|
+
"@budibase/string-templates": "2.8.29-alpha.14",
|
|
44
|
+
"@budibase/types": "2.8.29-alpha.14",
|
|
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
|
-
"
|
|
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": "27f96b97996f1cf6199c180e4bc90175b68ba3e6"
|
|
106
|
+
"gitHead": "aed6acdb78cbfc24a97da5972956a24786ab5237"
|
|
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"
|