@budibase/worker 2.16.2 → 2.17.0
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/Dockerfile +2 -0
- package/nodemon.json +2 -2
- package/package.json +6 -6
package/Dockerfile
CHANGED
|
@@ -44,6 +44,8 @@ EXPOSE 4001
|
|
|
44
44
|
# due to this causing yarn to stop installing dev dependencies
|
|
45
45
|
# which are actually needed to get this environment up and running
|
|
46
46
|
ENV NODE_ENV=production
|
|
47
|
+
# this is required for isolated-vm to work on Node 20+
|
|
48
|
+
ENV NODE_OPTIONS="--no-node-snapshot"
|
|
47
49
|
ENV CLUSTER_MODE=${CLUSTER_MODE}
|
|
48
50
|
ENV SERVICE=worker-service
|
|
49
51
|
ENV POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU
|
package/nodemon.json
CHANGED
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"../string-templates"
|
|
9
9
|
],
|
|
10
10
|
"ext": "js,ts,json",
|
|
11
|
-
"ignore": ["
|
|
12
|
-
"exec": "yarn build && node dist/index.js"
|
|
11
|
+
"ignore": ["**/*.spec.ts", "**/*.spec.js", "../*/dist/**/*"],
|
|
12
|
+
"exec": "yarn build && node --no-node-snapshot dist/index.js"
|
|
13
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.
|
|
4
|
+
"version": "2.17.0",
|
|
5
5
|
"description": "Budibase background service",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"repository": {
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"author": "Budibase",
|
|
38
38
|
"license": "GPL-3.0",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@budibase/backend-core": "2.
|
|
41
|
-
"@budibase/pro": "2.
|
|
42
|
-
"@budibase/string-templates": "2.
|
|
43
|
-
"@budibase/types": "2.
|
|
40
|
+
"@budibase/backend-core": "2.17.0",
|
|
41
|
+
"@budibase/pro": "2.17.0",
|
|
42
|
+
"@budibase/string-templates": "2.17.0",
|
|
43
|
+
"@budibase/types": "2.17.0",
|
|
44
44
|
"@koa/router": "8.0.8",
|
|
45
45
|
"@techpass/passport-openidconnect": "0.3.2",
|
|
46
46
|
"@types/global-agent": "2.1.1",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "2e6abd6111c2e9175336d6a620b15c02d716d0dd"
|
|
110
110
|
}
|