We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8dd44a commit 17a5636Copy full SHA for 17a5636
scripts/copyFiles.mjs
@@ -51,7 +51,9 @@ async function run() {
51
}),
52
);
53
54
- const packageFile = await fs.readFile(path.resolve(packagePath, './package.json'), { encoding: 'utf-8' });
+ const packageFile = await fs.readFile(path.resolve(packagePath, './package.json'), {
55
+ encoding: 'utf-8',
56
+ });
57
const packageData = JSON.parse(packageFile);
58
await addLicense(packageData);
59
await removeBuildArtefacts();
0 commit comments