@xfe-repo/web-app 1.3.4 → 1.3.6

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/deploy/.drone.yml CHANGED
@@ -11,6 +11,11 @@ trigger:
11
11
  - custom
12
12
  - tag
13
13
 
14
+ resources:
15
+ requests:
16
+ cpu: 2000
17
+ memory: 4096MiB
18
+
14
19
  steps:
15
20
  - name: install
16
21
  pull: if-not-exists
@@ -28,12 +33,13 @@ steps:
28
33
  resources:
29
34
  limits:
30
35
  cpu: 4000
31
- memory: 8000MiB
36
+ memory: 8192MiB
32
37
  volumes:
33
38
  - name: node-modules
34
39
  path: /drone/src/node_modules
35
40
  commands:
36
41
  - cp -r node_modules/@xfe-repo/web-app/deploy deploy
42
+ - export NODE_OPTIONS="--max-old-space-size=8192"
37
43
  - export REACT_APP_RELEASE=$DRONE_REPO_NAME@${DRONE_TAG:CI_COMMIT_SHA}
38
44
  - echo -n "$REACT_APP_RELEASE" > deploy/static/release
39
45
  - pnpm build
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfe-repo/web-app",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "bin": {
5
5
  "xfe-web": "./bin/index.js"
6
6
  },