mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
6 lines
198 B
JavaScript
6 lines
198 B
JavaScript
|
const { packages } = require("../list_packages");
|
||
|
const path = require('path');
|
||
|
const rimraf = require('rimraf');
|
||
|
for (const packageDir of packages) {
|
||
|
rimraf.sync(path.join(packageDir, 'lib'));
|
||
|
}
|