@budibase/server 2.10.12-alpha.22 → 2.10.12-alpha.23

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.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/scripts/test.sh +1 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.10.12-alpha.22",
4
+ "version": "2.10.12-alpha.23",
5
5
  "description": "Budibase Web Server",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -46,12 +46,12 @@
46
46
  "license": "GPL-3.0",
47
47
  "dependencies": {
48
48
  "@apidevtools/swagger-parser": "10.0.3",
49
- "@budibase/backend-core": "2.10.12-alpha.22",
50
- "@budibase/client": "2.10.12-alpha.22",
51
- "@budibase/pro": "2.10.12-alpha.22",
52
- "@budibase/shared-core": "2.10.12-alpha.22",
53
- "@budibase/string-templates": "2.10.12-alpha.22",
54
- "@budibase/types": "2.10.12-alpha.22",
49
+ "@budibase/backend-core": "2.10.12-alpha.23",
50
+ "@budibase/client": "2.10.12-alpha.23",
51
+ "@budibase/pro": "2.10.12-alpha.23",
52
+ "@budibase/shared-core": "2.10.12-alpha.23",
53
+ "@budibase/string-templates": "2.10.12-alpha.23",
54
+ "@budibase/types": "2.10.12-alpha.23",
55
55
  "@bull-board/api": "3.7.0",
56
56
  "@bull-board/koa": "3.9.4",
57
57
  "@elastic/elasticsearch": "7.10.0",
@@ -194,5 +194,5 @@
194
194
  }
195
195
  }
196
196
  },
197
- "gitHead": "913e7cb4ad8911d07aa1ecd186f336a4703e70c1"
197
+ "gitHead": "9bd4215d59684f90c99cf351dbf3796f366e1d4f"
198
198
  }
package/scripts/test.sh CHANGED
@@ -3,9 +3,8 @@ set -e
3
3
 
4
4
  if [[ -n $CI ]]
5
5
  then
6
- # --runInBand performs better in ci where resources are limited
6
+ # Running in ci, where resources are limited
7
7
  export NODE_OPTIONS="--max-old-space-size=4096"
8
- node ../../node_modules/jest/bin/jest.js --version
9
8
  echo "jest --coverage --maxWorkers=2 --forceExit --workerIdleMemoryLimit=2000MB --bail"
10
9
  jest --coverage --maxWorkers=2 --forceExit --workerIdleMemoryLimit=2000MB --bail
11
10
  else