-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore(deps): update dependency rollup to v4 #164
Conversation
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: package-lock.json
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
67eea9d
to
c3c61b5
Compare
c3c61b5
to
399bcfd
Compare
399bcfd
to
1bc3055
Compare
1bc3055
to
a0fb074
Compare
a0fb074
to
6f17d87
Compare
6f17d87
to
5e75e0d
Compare
5e75e0d
to
ff110c5
Compare
ff110c5
to
74efce6
Compare
74efce6
to
b682fee
Compare
b682fee
to
6804d36
Compare
6804d36
to
524cfd1
Compare
524cfd1
to
ee3b234
Compare
ee3b234
to
4dfcfa3
Compare
4dfcfa3
to
937c922
Compare
937c922
to
ee1c351
Compare
ee1c351
to
39555c9
Compare
39555c9
to
571f336
Compare
571f336
to
755c8cb
Compare
755c8cb
to
b36eb41
Compare
b36eb41
to
ddbb1b0
Compare
ddbb1b0
to
27d52b4
Compare
27d52b4
to
839c7cf
Compare
839c7cf
to
3fb0dad
Compare
3fb0dad
to
a831de2
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
dd2dea7
to
174ab1b
Compare
This PR contains the following updates:
3.29.4
->4.9.1
Release Notes
rollup/rollup (rollup)
v4.9.1
Compare Source
2023-12-17
Bug Fixes
Pull Requests
v4.9.0
Compare Source
2023-12-13
Features
Pull Requests
v4.8.0
Compare Source
2023-12-11
Features
experimentalMinChunkSize
to take already loaded modules from dynamic imports into account (#5294)Pull Requests
v4.7.0
Compare Source
2023-12-08
Features
Bug Fixes
Pull Requests
v4.6.1
Compare Source
2023-11-30
Bug Fixes
var
several times was considered a conflict (#5276)Pull Requests
v4.6.0
Compare Source
2023-11-26
Features
this.addWatchFile
in all plugin hooks (#5270)Bug Fixes
npm
issue (#5267)this
context inthis.addWatchFile
so it does not need to be bound when passed around (#5270)Pull Requests
v4.5.2
Compare Source
2023-11-24
Bug Fixes
Pull Requests
v4.5.1
Compare Source
2023-11-21
Bug Fixes
Pull Requests
v4.5.0
Compare Source
2023-11-18
Bug Fixes
Pull Requests
v4.4.1
Compare Source
2023-11-14
Bug Fixes
Pull Requests
v4.4.0
Compare Source
2023-11-12
Features
Bug Fixes
Pull Requests
v4.3.1
Compare Source
2023-11-11
Bug Fixes
--forceExit
(#5245)Pull Requests
v4.3.0
Compare Source
2023-11-03
Features
forceExit
CLI flag for situations where the CLI does not exit gracefully (#5195)Bug Fixes
Pull Requests
forceExit
CLI flag (@raphael-theriault-swi)ENOENT
error on temp config removal (@jzempel)v4.2.0
Compare Source
2023-10-31
Features
parseAstAsync
helper function (#5202)Pull Requests
parseAstAsync
and parallelize parsing AST (@sapphi-red)v4.1.6
Compare Source
2023-10-31
Bug Fixes
Pull Requests
v4.1.5
Compare Source
2023-10-28
Bug Fixes
Pull Requests
v4.1.4
Compare Source
2023-10-16
Bug Fixes
Pull Requests
v4.1.3
Compare Source
2023-10-15
Bug Fixes
Pull Requests
v4.1.1
Compare Source
2023-10-15
Bug Fixes
Pull Requests
v4.1.0
Compare Source
2023-10-14
Features
Pull Requests
onLog
(@tjenkinson)v4.0.2
Compare Source
2023-10-06
Bug Fixes
Pull Requests
v4.0.1
Compare Source
2023-10-06
Bug Fixes
Pull Requests
v4.0.0
Compare Source
2023-10-05
BREAKING CHANGES
General Changes
@rollup/wasm-node
package that has the same interface as Rollup but relies on WASM artifacts (#5073)INVALID_IMPORT_ASSERTION
error code has been replaced withINVALID_IMPORT_ATTRIBUTE
(#5073)@__PURE__
and@__NO_SIDE_EFFECTS__
annotations in invalid locations (#5165)#!...
, this comment will be prepended to the output fores
andcjs
formats (#5163)RollupWarning
type has been removed in favor of theRollupLog
type (#5147)Changes to Rollup Options
acornInjectPlugins
option has been removed (#5073)acorn
option has been removed (#5073)output.externalImportAssertions
has been deprecated in favor ofoutput.externalImportAttributes
(#5073)inlineDynamicImports
,manualChunks
andpreserveModules
have been removed on input option level: Please use the corresponding output options of the same names (#5143)output.experimentalDeepDynamicChunkOptimization
: This option is no longer needed as Rollup now always runs the full chunking algorithmoutput.dynamicImportFunction
: Use therenderDynamicImport
plugin hook insteadoutput.namespaceToStringTag
: Useoutput.generatedCode.symbols
insteadoutput.preferConst
: Useoutput.generatedCode.constBindings
insteadPlugin API Changes
this.resolve
, the default of theskipSelf
option is nowtrue
(#5142)this.parse
now only supports theallowReturnOutsideFunction
option for now (#5073)load
hook of a plugin,rollup.watch
no longer watches the actual file if the module id corresponds to a real path; if this is intended, then the plugin is responsible for callingthis.addWatchFile
for any dependency files (#5150)buildStart
and other hooks no longer contain anonwarn
handler; plugins should useonLog
instead (#5147)this.moduleIds
has been removed from the plugin context: Usethis.getModuleIds()
instead (#5143)hasModuleSideEffects
flag has been removed from theModuleInfo
returned bythis.getModuleInfo()
: UsemoduleSideEffects
on theModuleInfo
instead (#5143)Features
@__PURE__
and@__NO_SIDE_EFFECTS__
annotations in invalid locations (#5165)parseAst
(#5169)Bug Fixes
this.addWatchFile()
(#5150)Pull Requests
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.