fix: build-all

Massimo Melina committed May 8, 2022 at 11:03 UTC e8f18011de6b32ab1f2d5e973071858bc11dd3d0
2 files changed +7 -7
admin/package.json
+5 -5
@@ -12,11 +12,11 @@
12 "dependencies": {
13 "@emotion/react": "^11.7.1",
14 "@emotion/styled": "^11.6.0",
15 - "@mui/icons-material": "^5.3.0",
16 - "@mui/lab": "^5.0.0-alpha.66",
17 - "@mui/material": "^5.3.0",
18 - "@mui/styles": "^5.3.0",
19 - "@mui/x-data-grid": "^5.3.0",
15 + "@mui/icons-material": "^5.6.0",
16 + "@mui/lab": "^5.0.0-alpha.80",
17 + "@mui/material": "^5.6.0",
18 + "@mui/styles": "^5.6.0",
19 + "@mui/x-data-grid": "^5.6.0",
20 "@testing-library/jest-dom": "^5.16.1",
21 "@testing-library/react": "^12.1.2",
22 "@testing-library/user-event": "^13.5.0",
package.json
+2 -2
@@ -16,8 +16,8 @@
16 "start-frontend": "cd frontend && npm run start",
17 "start-admin": "cd admin && npm run start",
18 "start": "node dist",
19 - "build-all": "npm audit --production && rm -rf dist && npm run build-shared && npm run build-server && npm run build-frontend && npm run build-admin && echo COMPLETED",
20 - "build-server": "npm install && rm -rf dist/src dist/plugins && tsc --target es2018 && cp -v -r package-lock.json server/package.json READ* LICENSE* plugins dist && cd dist && npm ci --production && cd .. && node afterbuild",
19 + "build-all": "npm audit --omit=dev && rm -rf dist && npm install && npm run build-shared && npm run build-server && npm run build-frontend && npm run build-admin && echo COMPLETED",
20 + "build-server": "rm -rf dist/src dist/plugins && tsc --target es2018 && cp -v -r package-lock.json server/package.json READ* LICENSE* plugins dist && cd dist && npm ci --production && cd .. && node afterbuild",
21 "build-frontend": "cd frontend && npm run build",
22 "build-admin": "cd admin && npm run build",
23 "build-shared": "cd shared && npx tsc",