You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#2209396d81e - Fix bundler v3 unintended breaking change: CSS imports not including layer info.
In bundler v3 rollup-plugin-postcss is replaced with rollup-plugin-styler, in bundler v4 postcss-import is used instead of rollup-postcss-styler default import logic.
#214828f5a96 - Replace rollup-plugin-postcss with rollup-plugin-styler
This is mostly a drop in replacement for rollup-plugin-postcss with a few minor changes
We now explicitly default the name of the file to be [name][extname] this was the behaviour that the last plugin enforced but the new one needs to set it in the output config.
You can override this by passing in the assetFileNames property in your rollupConfig e.g.
This will apply the same asset file naming pattern to both CJS and ESM builds. 2. Your postcss.config.js will need to move from strings for the plugins to require statements
Instead of:
module.exports = {
plugins: {
"@​tailwindcss/postcss": {},
},
};
It should be:
module.exports = {
plugins: [require("@​tailwindcss/postcss")],
};
For plugins that require configuration, pass the config object to the require statement:
module.exports = {
plugins: [
require("autoprefixer")({ browsers: ["last 2 versions"] }),
require("cssnano")({ preset: "default" })
],
};
All @tailwind statement must convert to @import statements as per tailwind v3 official guide on using postcss-import. @tailwind is also deprecated in tailwind v4.
#21715dda9c9 - Fixed a rollup error when allowJS is set to true.
RollupError: [plugin typescript] @​rollup/plugin-typescript: Path of Typescript compiler option 'outDir' must be located inside Rollup 'dir' option.
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
This PR includes no changesets
When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Working with Renovate for Culture Amp
This PR contains the following updates:
^2.4.4->^4.0.1Release Notes
cultureamp/frontend-foundations (@cultureamp/package-bundler)
v4.0.1Compare Source
Patch Changes
d2b4b83- Move ts-patch from peer to dependencies as it is required for typescript-transform-paths which is a dependencyv4.0.0Compare Source
Major Changes
#2209
396d81e- Fix bundler v3 unintended breaking change: CSS imports not including layer info.In bundler v3
rollup-plugin-postcssis replaced withrollup-plugin-styler, in bundler v4postcss-importis used instead ofrollup-postcss-stylerdefault import logic.v3.0.1Compare Source
Patch Changes
0a56fec- Specify correct assetFileNames convention for tailwind config too [name][extname]v3.0.0Compare Source
Major Changes
#2148
28f5a96- Replacerollup-plugin-postcsswithrollup-plugin-stylerThis is mostly a drop in replacement for
rollup-plugin-postcsswith a few minor changes[name][extname]this was the behaviour that the last plugin enforced but the new one needs to set it in the output config.You can override this by passing in the
assetFileNamesproperty in yourrollupConfige.g.This will apply the same asset file naming pattern to both CJS and ESM builds. 2. Your
postcss.config.jswill need to move from strings for the plugins to require statementspostcss-import. @tailwind is also deprecated in tailwind v4.Minor Changes
#2171
5dda9c9- Fixed a rollup error whenallowJSis set to true.Patch Changes
0cdad73- Bump rollup and plugin versions.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.