We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9e3ff commit 347dad2Copy full SHA for 347dad2
1 file changed
packages/core/release.config.js
@@ -1,7 +1,10 @@
1
/* eslint-disable no-template-curly-in-string */
2
3
-import { name } from './package.json' with { type: 'json' };
4
-import { name as libraryFolderName } from './project.json' with { type: 'json' };
+import packageJson from './package.json' with { type: 'json' };
+import projectJson from './project.json' with { type: 'json' };
5
+
6
+const name = packageJson.name;
7
+const libraryFolderName = projectJson.name;
8
9
const srcRoot = `packages/${libraryFolderName}`;
10
0 commit comments