Skip to content

Commit c7c4eb7

Browse files
Fix caching errors during Firestore build
1 parent 086df7c commit c7c4eb7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/firestore/rollup.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ const browserPlugins = function () {
8484
}
8585
},
8686
cacheDir: tmp.dirSync(),
87-
clean: true,
8887
abortOnError: false,
8988
transformers: [util.removeAssertAndPrefixInternalTransformer]
9089
}),

packages/firestore/test/unit/specs/describe_spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export function describeSpec(
252252
// Note: We use json-stable-stringify instead of JSON.stringify() to ensure
253253
// that the generated JSON does not produce diffs merely due to the order
254254
// of the keys in an object changing.
255-
const output = stringify(specsInThisTest, {
255+
const output = stringify.default(specsInThisTest, {
256256
space: 2,
257257
cmp: stringifyComparator
258258
});

0 commit comments

Comments
 (0)