[Scripts > Strip] Support bare .js files so don't error on non-dirs
This commit is contained in:
parent
915d9aab8a
commit
675afd9e55
1 changed files with 7 additions and 1 deletions
|
@ -8,7 +8,13 @@ execSync(`rm -rf src/package-lock.json src/node_modules/.package-lock.json src/n
|
||||||
// Minify node deps code
|
// Minify node deps code
|
||||||
|
|
||||||
for (const package of readdirSync('src/node_modules')) {
|
for (const package of readdirSync('src/node_modules')) {
|
||||||
const indexPath = join('src/node_modules', package, 'index.js');
|
let indexPath;
|
||||||
|
if (package.endsWith('.js')) {
|
||||||
|
indexPath = join('src/node_modules', package);
|
||||||
|
} else {
|
||||||
|
indexPath = join('src/node_modules', package, 'index.js');
|
||||||
|
}
|
||||||
|
console.log(package, indexPath);
|
||||||
|
|
||||||
execSync(`npx uglifyjs --compress --mangle -o ${indexPath} -- ${indexPath}`);
|
execSync(`npx uglifyjs --compress --mangle -o ${indexPath} -- ${indexPath}`);
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue