We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94cf2b2 commit 5b59780Copy full SHA for 5b59780
bundle.ts
@@ -50,6 +50,7 @@ const packageJson = JSON.parse(
50
async function main() {
51
await $`rm -rf ${outputDir}/dist`;
52
await $`mkdir -p ${outputDir}/dist`;
53
+ await $`cp LICENSE ${outputDir}/dist`;
54
await $`touch ${outputDir}/yarn.lock`;
55
56
const dependencies = getDependenciesFromPackages(packages, 'dependencies');
@@ -74,8 +75,8 @@ async function main() {
74
75
define: {
76
'process.env.NODE_ENV': '"production"',
77
},
- minify: true,
78
- sourcemap: true,
+ // minify: true,
79
+ // sourcemap: true,
80
});
81
82
packageJson.dependencies = filterWorkspace({
0 commit comments