mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +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'));
|
|
}
|