Skip to content

Commit 3d3cac3

Browse files
Remove mangling from Node build
#2608 re-introduced mangling to the Node build, which wasn't mangled before. Since it uses CJS, the output is not minified very well. This reverts this change and makes sure the next release uses the same settings as the current release.
1 parent 216eb63 commit 3d3cac3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/firestore/rollup.config.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,11 @@ const browserBuilds = [
194194
// MARK: Node builds
195195

196196
const nodeBuildPlugins = [
197-
...es5BuildPlugins,
197+
typescriptPlugin({
198+
typescript,
199+
cacheRoot: `./.cache/node/`
200+
}),
201+
json(),
198202
// Needed as we also use the *.proto files
199203
copy({
200204
assets: ['./src/protos']

0 commit comments

Comments
 (0)