-
-
Notifications
You must be signed in to change notification settings - Fork 264
refactor(BREAKING): rm config.eject & automatic import of built-in pr… #2694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🦋 Changeset detectedLatest commit: b771a65 The changes in this PR will be included in the next version bump. This PR includes changesets to release 19 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
chore: mv @pandacss/preset-panda as devDep to inline it with tsup
This reverts commit 947b433.
Closing for now since we never had to reference this. Let's keep the branch for future reference if we really need it. |
…esets
Closes #
📝 Description
@pandacss/preset-base
and@pandacss/preset-panda
are no longer automaticallyincluded, if you are not using
presets
oreject
in your config you can add them manually as shown below:// panda.config.ts import { defineConfig } from '@pandacss/dev' export default defineConfig({ + presets: ['@pandacss/preset-base', '@pandacss/preset-panda'], })
This allows you to control more explicitely which presets are included in your project.
config.eject
option has been removed. Simply remove it from your config and the result will be thesame.
// panda.config.ts import { defineConfig } from '@pandacss/dev' export default defineConfig({ - eject: true, })
💣 Is this a breaking change (Yes/No):
yes