fixed:打包时将引用的开源协议打包进去.

This commit is contained in:
chriswang521 2024-06-21 13:57:47 +08:00 committed by wangpenglong
parent 96fbc081d4
commit a65cfa491f
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
const productJsonStream = gulp.src(['product.json'], { base: '.' })
.pipe(json(productJsonUpdate));
const license = gulp.src([product.licenseFileName, 'ThirdPartyNotices.txt', 'licenses/**'], { base: '.', allowEmpty: true });
const license = gulp.src([product.licenseFileName, 'ori-LICENSE.txt', 'ThirdPartyNotices.txt', 'licenses/**'], { base: '.', allowEmpty: true });
// TODO the API should be copied to `out` during compile, not here
const api = gulp.src('src/vscode-dts/vscode.d.ts').pipe(rename('out/vscode-dts/vscode.d.ts'));