Skip to content

Commit

Permalink
Upgrade to remix 1.7.6 (#725)
Browse files Browse the repository at this point in the history
https://github.com/remix-run/remix/releases/tag/remix%401.7.0
https://github.com/remix-run/remix/releases/tag/remix%401.7.4

du -ckd1 node_modules
-795648
+798524

Not much changes though I found since
[1.7.5](https://github.com/remix-run/remix/releases/tag/remix%401.7.5)
build started to hang when run with turbo or recursive pnpm run.

Looks like in this commit some stream or connection not closed when
build is finished.

remix-run/remix#4410

Let's see if not fixed in newer versions and then file an issue.
  • Loading branch information
TrySound authored Jan 3, 2023
1 parent 97c1564 commit 9c71929
Show file tree
Hide file tree
Showing 6 changed files with 279 additions and 97 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- uses: ./.github/actions/ci-setup

# only packages have to be built as they might be imported by Storybooks
- run: pnpm build --filter='!./apps/*'
- run: pnpm build-packages

- name: Chromatic
id: chromatic
Expand Down
10 changes: 5 additions & 5 deletions apps/designer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
"@lexical/utils": "^0.6.0",
"@radix-ui/react-select": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@remix-run/node": "1.6.8",
"@remix-run/react": "1.6.8",
"@remix-run/serve": "1.6.8",
"@remix-run/vercel": "1.6.8",
"@remix-run/node": "1.7.6",
"@remix-run/react": "1.7.6",
"@remix-run/serve": "1.7.6",
"@remix-run/vercel": "1.7.6",
"@sentry/remix": "^7.5.0",
"@sentry/types": "7.5.0",
"@vercel/node": "^2.4.1",
Expand Down Expand Up @@ -91,7 +91,7 @@
"devDependencies": {
"@babel/core": "^7.20.2",
"@jest/globals": "^29.3.1",
"@remix-run/dev": "1.6.8",
"@remix-run/dev": "1.7.6",
"@storybook/addon-actions": "6.5.14",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"": "For some reason remix build does not finish when run with turbo or pnpm recursively",
"build-packages": "turbo run build --filter='!./apps/*'",
"build": "pnpm build-packages && pnpm --filter=@webstudio-is/designer build",
"checks": "turbo run checks",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/asset-uploader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"dependencies": {
"@aws-sdk/client-s3": "^3.131.0",
"@aws-sdk/lib-storage": "^3.131.0",
"@remix-run/node": "1.6.8",
"@remix-run/node": "1.7.6",
"@webstudio-is/fonts": "workspace:^",
"@webstudio-is/prisma-client": "workspace:^",
"app-root-path": "^3.0.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/react-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@babel/core": "^7.20.2",
"@esbuild-kit/esm-loader": "^2.4.2",
"@jest/globals": "^29.3.1",
"@remix-run/node": "1.6.8",
"@remix-run/react": "1.6.8",
"@remix-run/server-runtime": "1.6.8",
"@remix-run/node": "1.7.6",
"@remix-run/react": "1.7.6",
"@remix-run/server-runtime": "1.7.6",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.11",
"@types/node": "^17.0.21",
Expand All @@ -45,8 +45,8 @@
"zod": "^3.19.1"
},
"peerDependencies": {
"@remix-run/react": "1.6.8",
"@remix-run/server-runtime": "1.6.8",
"@remix-run/react": "1.7.6",
"@remix-run/server-runtime": "1.7.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix-utils": "^4.1.0",
Expand Down
Loading

0 comments on commit 9c71929

Please sign in to comment.