2022-02-08 21:35:00 +03:00
|
|
|
const { workspace } = require('../workspace');
|
2022-04-18 21:31:58 +03:00
|
|
|
const fs = require('fs');
|
2021-10-11 17:52:17 +03:00
|
|
|
const path = require('path');
|
|
|
|
const rimraf = require('rimraf');
|
2022-04-18 21:31:58 +03:00
|
|
|
|
2022-02-08 21:35:00 +03:00
|
|
|
for (const pkg of workspace.packages()) {
|
2022-06-03 03:37:43 +03:00
|
|
|
rimraf.sync(path.join(pkg.path, 'node_modules'));
|
2022-02-08 21:35:00 +03:00
|
|
|
rimraf.sync(path.join(pkg.path, 'lib'));
|
2022-04-18 21:31:58 +03:00
|
|
|
rimraf.sync(path.join(pkg.path, 'src', 'generated'));
|
|
|
|
const bundles = path.join(pkg.path, 'bundles');
|
|
|
|
if (fs.existsSync(bundles) && fs.statSync(bundles).isDirectory()) {
|
|
|
|
for (const bundle of fs.readdirSync(bundles))
|
|
|
|
rimraf.sync(path.join(bundles, bundle, 'node_modules'));
|
|
|
|
}
|
2022-02-08 21:35:00 +03:00
|
|
|
}
|