Merge pull request #23415 from ovalice/fix/node-test-utils-to-cjs

Use index.cjs.js as entry point to scaffolder-node-test-utils
This commit is contained in:
Ben Lambert
2024-03-06 13:39:27 +01:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-node-test-utils': patch
---
Fix issue with package bundling, should be `dist/index.cjs.js` instead of `dist/index.esm.js`.
@@ -6,7 +6,7 @@
},
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"repository": {