We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7377b3f commit 027b1e8Copy full SHA for 027b1e8
1 file changed
release-build.ts
@@ -37,8 +37,9 @@ const args = yargs(hideBin(process.argv))
37
await getPackageJson(join(root, 'package.json'))
38
);
39
40
- // Copy the readme.
+ // Copy the readme and license.
41
await cp(join(root, 'README.md'), join(targetDirectory, 'README.md'));
42
+ await cp(join(root, 'LICENSE'), join(targetDirectory, 'LICENSE'));
43
44
// Copy all the examples as is.
45
await Promise.all(
0 commit comments