Skip to content

Commit

Permalink
Upgrade cjs bundles for storage and performance (#8557)
Browse files Browse the repository at this point in the history
These should have been part of the bigger PR, but I missed these.
  • Loading branch information
dlarocque authored Oct 2, 2024
1 parent 98bbf53 commit 26d6c3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/performance/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const cjsBuild = {
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
plugins: [
...buildPlugins,
replace(generateBuildTargetReplaceConfig('cjs', 5))
replace(generateBuildTargetReplaceConfig('cjs', 2017))
]
};

Expand Down
2 changes: 1 addition & 1 deletion packages/storage/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const browserBuilds = [
alias(generateAliasConfig('browser')),
...buildPlugins,
replace({
...generateBuildTargetReplaceConfig('cjs', 5),
...generateBuildTargetReplaceConfig('cjs', 2017),
'__RUNTIME_ENV__': ''
})
],
Expand Down

0 comments on commit 26d6c3b

Please sign in to comment.