Skip to content

Commit 5764f38

Browse files
renovate[bot]dherges
authored andcommitted
fix: update rollup to version ^0.63.0 (#1005)
- fix: update rollup to version ^0.63.0 - fix: set `inlineDynamicImports: false` by default for rollup
1 parent e2a3905 commit 5764f38

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"postcss-url": "^7.3.0",
4646
"read-pkg-up": "^4.0.0",
4747
"rimraf": "^2.6.1",
48-
"rollup": "^0.62.0",
48+
"rollup": "^0.63.0",
4949
"rollup-plugin-commonjs": "^9.1.3",
5050
"rollup-plugin-node-resolve": "^3.0.0",
5151
"rollup-plugin-sourcemaps": "^0.4.2",

src/lib/flatten/rollup.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export async function rollupBundleFile(opts: RollupOptions): Promise<void[]> {
3636
const bundle = await rollup.rollup({
3737
context: 'this',
3838
external: moduleId => externalModuleIdStrategy.isExternalDependency(moduleId),
39+
inlineDynamicImports: false,
3940
input: opts.entry,
4041
plugins: [nodeResolve(), commonJs(), sourcemaps(), { transform: opts.transform }],
4142
onwarn: warning => {

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3974,9 +3974,9 @@ rollup-pluginutils@^2.0.1:
39743974
estree-walker "^0.3.0"
39753975
micromatch "^2.3.11"
39763976

3977-
rollup@^0.62.0:
3978-
version "0.62.0"
3979-
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.62.0.tgz#4ca8b3c9582195dc9341ff8a1375f58319b95bfc"
3977+
rollup@^0.63.0:
3978+
version "0.63.0"
3979+
resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.63.0.tgz#dfa8dc55df9a6660aff75a21547c63e5c7b9b9d5"
39803980
dependencies:
39813981
"@types/estree" "0.0.39"
39823982
"@types/node" "*"

0 commit comments

Comments
 (0)