@rollup/browser
Advanced tools
Changelog
3.2.4
2022-10-31
import.meta.url
(#4693)Changelog
3.2.3
2022-10-18
new.target
with import.meta
(#4679)Changelog
3.2.0
2022-10-15
Changelog
3.0.1
2022-10-12
Changelog
3.0.0
2022-10-11
@rollup/browser
(#4593)node:
prefix for imports of builtin modules (#4596)this.emitAsset()
: use this.emitFile()
this.emitChunk()
: use this.emitFile()
this.getAssetFileName()
: use this.getFileName()
this.getChunkFileName()
: use this.getFileName()
this.isExternal()
: use this.resolve()
this.resolveId()
: use this.resolve()
resolveAssetUrl
plugin hook has been removed: use resolveFileUrl
assetReferenceId
or chunkReferenceId
parameters to resolveFileUrl
treeshake.pureExternalModules
option has been removed: use treeshake.moduleSideEffects: 'no-external'
true
or false
for output.interop
. As a replacement for true
, you can use "compat"isAsset
flag in the bundletype: "asset"
fieldinlineDynamicImports
as part of the input options: use output. inlineDynamicImports
manualChunks
as part of the input options: use output. manualChunks
maxParallelFileReads
: use `maxParallelFileOpsoutput.preferConst
: use output.generatedCode.constBindings
output.dynamicImportFunction
: use the renderDynamicImport
plugin hookoutput.namespaceToStringTag
: use output.generatedCode.symbols
preserveModules
as part of the input options: use output. preserveModules
this.moduleIds
in plugins: use this.getModuleIds()
this.getModuleInfo(...).hasModuleSideEffects
in plugins: use this.getModuleInfo(...).moduleSideEffects
--configPlugin
or the --bundleConfigAsCjs
options are used. The configuration is bundled to an ES module unless the --bundleConfigAsCjs
option is used. In all other cases, configuration is now loaded using Node's native mechanisms (#4574 and #4621)rollup/dist/*
can only be required using their file extension (#4581)loadConfigFile
helper now has a named export of the same name instead of a default export (#4581)string
(#4644)import(…)
in commonjs output unless output.dynamicImportInCjs
is set to false (#4647)output.banner/footer/intro/outro
are now called per-chunk, they should be careful to avoid performance-heavy operations (#4543)entryFileNames/chunkFileNames
functions now longer have access to the rendered module information via modules
, only to a list of included moduleIds
(#4543)[name]
placeholder (as well as the chunkInfo.name
property when using a function) now includes the relative path of the chunk as well as optionally the file extension if the extension is not one of .js
, .jsx
, .mjs
, .cjs
, .ts
, .tsx
, .mts
, or .cts
(#4565)[ext]
, [extName]
and [assetExtName]
placeholders are no longer supported when preserving modules (#4565)perf
option no longer collects timings for the asynchronous part of plugin hooks as the readings were wildly inaccurate and very misleading, and timings are adapted to the new hashing algorithm (#4566)makeAbsoluteExternalsRelative
to "ifRelativeSource" so that absolute external imports will no longer become relative imports in the output, while relative external imports will still be renormalized ( #4567)output.generatedCode.reservedNamesAsProps
to no longer quote properties like default
by default (#4568)preserveEntrySignatures
to "exports-only" so that by default, empty facades for entry chunks are no longer created (#4576)output.interop
to "default" to better align with NodeJS interop (#4611)output.esModule
to "if-default-prop", which only adds __esModule when the default export would be a property (#4611)output.systemNullSetters
to true
, which requires at least SystemJS 6.3.3 (#4649)renderChunk
should make sure to update ChunkInfo.imports/importedBindings/exports
accordingly (#4543)renderChunk
now contains names with hash placeholders instead of final names, which will be replaced when used in the returned code or ChunkInfo.imports/importedBindings/exports
(#4543 and #4631)output.banner/footer/intro/outro
are now called per-chunk with some chunk information (#4543)renderChunk
(#4543)entryFileNames
logic is used and the path is included in the [name]
property. This finally gives full control over file names when preserving modules (#4565)output.entryFileNames
now also supports the [hash]
placeholder when preserving modules (#4565)perf
option will now collect (synchronous) timings for all plugin hooks, not just a small selection (#4566)name: RollupError
now to make clearer that those are custom error types (#4579)generateBundle
and sourcemap files are available as regular assets (#4605)__esModule
marker to the bundle if there is a default export that is rendered as a property (#4611)foo[Symbol.toStringTag]
to "Module" if foo is a namespace (#4611)--bundleConfigAsCjs
which will force the configuration to be bundled to CommonJS (#4621)output.externalImportAssertions
option allows to turn off emission of import assertions (#4646)output.dynamicImportInCjs
to control if dynamic imports are emitted as import(…)
or wrapped require(…)
when generating commonjs output (#4647)renderChunk
, e.g. minification, into account (#4543)