We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 086df7c commit c7c4eb7Copy full SHA for c7c4eb7
packages/firestore/rollup.config.js
@@ -84,7 +84,6 @@ const browserPlugins = function () {
84
}
85
},
86
cacheDir: tmp.dirSync(),
87
- clean: true,
88
abortOnError: false,
89
transformers: [util.removeAssertAndPrefixInternalTransformer]
90
}),
packages/firestore/test/unit/specs/describe_spec.ts
@@ -252,7 +252,7 @@ export function describeSpec(
252
// Note: We use json-stable-stringify instead of JSON.stringify() to ensure
253
// that the generated JSON does not produce diffs merely due to the order
254
// of the keys in an object changing.
255
- const output = stringify(specsInThisTest, {
+ const output = stringify.default(specsInThisTest, {
256
space: 2,
257
cmp: stringifyComparator
258
});
0 commit comments