turborepo/examples/with-changesets
vercel[bot] d29bb06cd4
fix: React Server Components CVE vulnerabilities (#11245)
> [!IMPORTANT]
> This is an automatic PR generated by Vercel to help you patch known
vulnerabilities related to CVE-2025-55182 (React2Shell), CVE-2025-55183,
CVE-2025-55184, and CVE-2025-67779. We can't guarantee the PR is
comprehensive, and it may contain mistakes.

Not all projects are affected by all issues, but **patched versions are
required to ensure full remediation**.

Vercel has deployed WAF mitigations globally to help protect your
application, but upgrading remains required for complete protection.

This automated pull request updates your React, Next.js, and related
Server Components packages to versions that fix **all currently known
React Server Components vulnerabilities**, including the two newly
discovered issues.

See our [Security Bulletins](https://vercel.com/kb/bulletin/) for more
information and reach out to security@vercel.com with any questions.

Fixes VULN-3312

---------

Co-authored-by: Vercel <vercel[bot]@users.noreply.github.com>
Co-authored-by: Anthony Shew <anthonyshew@gmail.com>
2025-12-12 07:19:57 -07:00
..
.changeset Update config.json (#9603) 2024-12-11 08:58:33 -05:00
.github/workflows Consistent Node.js version in Changesets action. (#8441) 2024-06-11 15:13:28 -06:00
apps/docs fix: React Server Components CVE vulnerabilities (#11245) 2025-12-12 07:19:57 -07:00
packages update to TypeScript 5.5.4 (#9337) 2024-10-25 17:05:13 -04:00
.gitignore
.npmrc
meta.json docs: enhance examples tables (#10173) 2025-03-17 12:39:17 -06:00
package.json examples: Bump turbo to latest (#11100) 2025-11-10 23:48:45 -07:00
pnpm-lock.yaml fix: React Server Components CVE vulnerabilities (#11245) 2025-12-12 07:19:57 -07:00
pnpm-workspace.yaml
README.md fix: package name in with-changesets release job (#9971) 2025-02-14 17:08:06 +00:00
turbo.json docs: migrate to turborepo.com (#10368) 2025-04-23 10:39:37 -06:00

Turborepo Design System starter with Changesets

This is a community-maintained example. If you experience a problem, please submit a pull request with a fix. GitHub Issues will be closed.

Using this example

Run the following command:

npx create-turbo@latest -e with-changesets

What's inside?

This Turborepo includes the following:

Apps and Packages

  • @acme/docs: A placeholder documentation site powered by Next.js
  • @acme/core: core React components
  • @acme/utils: shared React utilities
  • @acme/tsconfig: shared tsconfig.jsons used throughout the monorepo
  • @acme/eslint-config: ESLint preset

Each package and app is 100% TypeScript.

Utilities

This Turborepo has some additional tools already setup for you:

Useful commands

  • yarn build - Build all packages and the docs site
  • yarn dev - Develop all packages and the docs site
  • yarn lint - Lint all packages
  • yarn changeset - Generate a changeset
  • yarn clean - Clean up all node_modules and dist folders (runs each package's clean script)

Changing the npm organization scope

The npm organization scope for this design system starter is @acme. To change this, it's a bit manual at the moment, but you'll need to do the following:

  • Rename folders in packages/* to replace acme with your desired scope
  • Search and replace acme with your desired scope
  • Re-run yarn install

Versioning and Publishing packages

Package publishing has been configured using Changesets. Please review their documentation to familiarize yourself with the workflow.

This example comes with automated npm releases setup in a GitHub Action. To get this working, you will need to create an NPM_TOKEN and GITHUB_TOKEN in your repository settings. You should also install the Changesets bot on your GitHub repository as well.

For more information about this automation, refer to the official changesets documentation

npm

If you want to publish package to the public npm registry and make them publicly available, this is already setup.

To publish packages to a private npm organization scope, remove the following from each of the package.json's

- "publishConfig": {
-  "access": "public"
- },

GitHub Package Registry

See Working with the npm registry