Skip to content

Commit 5aea0e5

Browse files
authored
Nextjs 13.5.7 (#12833)
<!-- ☝️How to write a good PR title: - Prefix it with [ComponentName] (if applicable), for example: [Button] - Start with a verb, for example: Add, Delete, Improve, Fix… - Give as much context as necessary and as little as possible - Open it as a draft if it’s a work in progress --> ### WHY are these changes introduced? Fixes #0000 <!-- link to issue if one exists --> <!-- Context about the problem that’s being addressed. --> ### WHAT is this pull request doing? <!-- Summary of the changes committed. Before / after screenshots are appreciated for UI changes. Make sure to include alt text that describes the screenshot. Include a video if your changes include interactive content. If you include an animated gif showing your change, wrapping it in a details tag is recommended. Gifs usually autoplay, which can cause accessibility issues for people reviewing your PR: <details> <summary>Summary of your gif(s)</summary> <img src="..." alt="Description of what the gif shows"> </details> --> ### How to 🎩 🖥 [Local development instructions](https://github.com/Shopify/polaris/blob/main/README.md#install-dependencies-and-build-workspaces) 🗒 [General tophatting guidelines](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md) 📄 [Changelog guidelines](https://github.com/Shopify/polaris/blob/main/.github/CONTRIBUTING.md#changelog) ### 🎩 checklist - [ ] Tested a [snapshot](https://github.com/Shopify/polaris/blob/main/documentation/Releasing.md#-snapshot-releases) - [ ] Tested on [mobile](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting.md#cross-browser-testing) - [ ] Tested on [multiple browsers](https://help.shopify.com/en/manual/shopify-admin/supported-browsers) - [ ] Tested for [accessibility](https://github.com/Shopify/polaris/blob/main/documentation/Accessibility%20testing.md) - [ ] Updated the component's `README.md` with documentation changes - [ ] [Tophatted documentation](https://github.com/Shopify/polaris/blob/main/documentation/Tophatting%20documentation.md) changes in the style guide
1 parent 8c57ef5 commit 5aea0e5

File tree

2 files changed

+40
-45
lines changed

2 files changed

+40
-45
lines changed

pnpm-lock.yaml

+38-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

polaris.shopify.com/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"node": ">=20.10.0"
77
},
88
"scripts": {
9-
"build": "concurrently \"pnpm gen-colors\" \"pnpm gen-assets\" \"playroom build\" && next build && cp -r public ./.next/standalone/polaris.shopify.com/ && mkdir -p ./.next/standalone/polaris.shopify.com/.next && cp -r .next/static ./.next/standalone/polaris.shopify.com/.next/",
9+
"build": "concurrently \"pnpm gen-colors\" \"pnpm gen-assets\" \"playroom build\" && next build && mkdir -p ./.next/standalone/polaris.shopify.com/ && cp -r public ./.next/standalone/polaris.shopify.com/ && if [ -d \".next/static\" ]; then mkdir -p ./.next/standalone/polaris.shopify.com/.next && cp -r .next/static ./.next/standalone/polaris.shopify.com/.next/; fi",
1010
"start": "cd ./.next/standalone/polaris.shopify.com && node ./server.js",
1111
"dev": "pnpm gen-colors && pnpm get-props && run-p dev:*",
1212
"dev:server": "open http://localhost:${POLARIS_WEBSITE_PORT:=3000} && next dev -p 3000",
@@ -44,7 +44,7 @@
4444
"lodash.mapvalues": "^4.6.0",
4545
"lodash.throttle": "^4.1.1",
4646
"nanoid": "^4.0.2",
47-
"next": "^13.5.1",
47+
"next": "^13.5.7",
4848
"next-mdx-remote": "^4.4.1",
4949
"prismjs": "^1.27.0",
5050
"react": "^18.2.0",

0 commit comments

Comments
 (0)