Skip to content

Commit 027b1e8

Browse files
committed
fix: copy license into release output
1 parent 7377b3f commit 027b1e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

release-build.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ const args = yargs(hideBin(process.argv))
3737
await getPackageJson(join(root, 'package.json'))
3838
);
3939

40-
// Copy the readme.
40+
// Copy the readme and license.
4141
await cp(join(root, 'README.md'), join(targetDirectory, 'README.md'));
42+
await cp(join(root, 'LICENSE'), join(targetDirectory, 'LICENSE'));
4243

4344
// Copy all the examples as is.
4445
await Promise.all(

0 commit comments

Comments
 (0)