Skip to content

Commit 6fdcb18

Browse files
Add fix for common js (#36)
1 parent 07f1ced commit 6fdcb18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const commonjsPkgJSONPlugin = () => {
1010
if (isCJSBuild === true) {
1111
fs.writeJsonSync(
1212
'dist/cjs/package.json',
13-
JSON.stringify({
14-
type: 'commonjs',
15-
}),
13+
{
14+
type: 'commonjs',
15+
}
1616
)
1717
} else {
1818
await fs.copyFile('package.json', 'dist/package.json')

0 commit comments

Comments
 (0)