Skip to content

Commit 3a34d11

Browse files
codemonkey800czi-github-helper[bot]
andauthored
chore: update deps (#1955)
* update deps * chore: Updated [rdev] values.yaml image tags to sha-209dfde --------- Co-authored-by: czi-github-helper[bot] <+czi-github-helper[bot]@users.noreply.github.com>
1 parent a032652 commit 3a34d11

File tree

4 files changed

+369
-261
lines changed

4 files changed

+369
-261
lines changed

.infra/rdev/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ stack:
22
services:
33
frontend:
44
image:
5-
tag: sha-4ef97cb
5+
tag: sha-209dfde
66
replicaCount: 1
77
env:
88
- name: API_URL_V2

frontend/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"preinstall": "npx only-allow pnpm",
66
"build": "pnpm -r build",
77
"clean": "pnpm -r clean",
8-
"clean:modules": "run-p -l 'clean:modules:*'",
8+
"clean:modules": "concurrently -n root,packages 'pnpm clean:modules:root' 'pnpm clean:modules:packages'",
99
"clean:modules:root": "rm -rf node_modules",
1010
"clean:modules:packages": "pnpm -r clean:modules",
1111
"data-portal": "pnpm --filter data-portal",
@@ -16,12 +16,13 @@
1616
},
1717
"devDependencies": {
1818
"prettier": "^3.0.3",
19-
"npm-run-all": "^4.1.5"
19+
"concurrently": "^9.1.2"
2020
},
2121
"pnpm": {
2222
"overrides": {
2323
"@babel/traverse": "^7.23.2",
24-
"cross-spawn": "^7.0.3",
24+
"braces": "^3.0.3",
25+
"cross-spawn": "^7.0.5",
2526
"dset": "^3.1.4",
2627
"rollup": "^3.29.5",
2728
"vite": "^4.5.3",

frontend/packages/data-portal/package.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
"type": "module",
44
"scripts": {
55
"preinstall": "npx only-allow pnpm",
6-
"build": "run-s -l 'build:*'",
6+
"build": "pnpm build:codegen && pnpm build:tcm && pnpm build:remix",
77
"build:codegen": "graphql-codegen",
88
"build:tcm": "tcm -p 'app/**/*.module.css'",
99
"build:remix": "remix build",
1010
"clean": "rm -rf build public/build .cache/ node_modules/.cache/ app/__generated__/",
1111
"clean:modules": "rm -rf node_modules",
12-
"dev": "pnpm build:codegen && run-p -l 'dev:*'",
12+
"dev": "pnpm build:codegen && concurrently -n codegen,remix,tcm 'pnpm dev:codegen' 'pnpm dev:remix' 'pnpm dev:tcm'",
1313
"dev:codegen": "pnpm build:codegen -w",
1414
"dev:remix": "remix dev --manual -c 'node --loader ts-node/esm --watch-path server.ts --watch server.ts'",
1515
"dev:tcm": "pnpm build:tcm -w",
1616
"e2e": "playwright test",
1717
"e2e:debug": "playwright test --ui",
1818
"e2e:install-browsers": "playwright install --with-deps",
19-
"lint": "pnpm build:codegen && run-p -l 'lint:!(fix)'",
20-
"lint:fix": "run-p -l 'lint:*:fix'",
19+
"lint": "pnpm build:codegen && concurrently -n eslint,prettier,stylelint 'pnpm lint:eslint' 'pnpm lint:prettier' 'pnpm lint:stylelint'",
20+
"lint:fix": "concurrently -n eslint,prettier,stylelint 'pnpm lint:eslint:fix' 'pnpm lint:prettier:fix' 'pnpm lint:stylelint:fix'",
2121
"lint:eslint": "eslint --report-unused-disable-directives --max-warnings 0 .",
2222
"lint:eslint:fix": "pnpm lint:eslint --fix",
2323
"lint:prettier": "prettier -c .",
@@ -46,14 +46,14 @@
4646
"@mui/lab": "^5.0.0-alpha.148",
4747
"@mui/material": "^5.14.13",
4848
"@react-hookz/web": "^23.1.0",
49-
"@remix-run/css-bundle": "^2.15.0",
50-
"@remix-run/express": "^2.15.0",
51-
"@remix-run/node": "^2.15.0",
52-
"@remix-run/react": "^2.15.0",
53-
"@remix-run/server-runtime": "^2.15.0",
54-
"@remix-run/testing": "^2.15.0",
49+
"@remix-run/css-bundle": "^2.17.0",
50+
"@remix-run/express": "^2.17.0",
51+
"@remix-run/node": "^2.17.0",
52+
"@remix-run/react": "^2.17.0",
53+
"@remix-run/server-runtime": "^2.17.0",
54+
"@remix-run/testing": "^2.17.0",
5555
"@tanstack/react-table": "^8.10.6",
56-
"axios": "^1.7.8",
56+
"axios": "^1.11.0",
5757
"axios-cache-interceptor": "^1.3.2",
5858
"chokidar": "^3.5.3",
5959
"clsx": "^2.0.0",
@@ -100,7 +100,7 @@
100100
"@jest/globals": "^29.7.0",
101101
"@parcel/watcher": "^2.3.0",
102102
"@playwright/test": "^1.41.2",
103-
"@remix-run/dev": "^2.15.0",
103+
"@remix-run/dev": "^2.17.0",
104104
"@tailwindcss/typography": "^0.5.10",
105105
"@testing-library/jest-dom": "^6.4.5",
106106
"@testing-library/react": "^15.0.7",
@@ -120,6 +120,7 @@
120120
"@types/source-map-support": "^0.5.8",
121121
"autoprefixer": "^10.4.16",
122122
"chromatic": "^11.25.2",
123+
"concurrently": "^9.1.2",
123124
"dotenv": "^16.3.1",
124125
"eslint": "^8.51.0",
125126
"eslint-config-cryoet-data-portal": "workspace:*",

0 commit comments

Comments
 (0)