You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
687 B
33 lines
687 B
const { task } = require('gulp');
|
|
const del = require('del');
|
|
|
|
const packages = [
|
|
'harmony-core',
|
|
'harmony-crypto',
|
|
'harmony-account',
|
|
'harmony-network',
|
|
'harmony-contract',
|
|
'harmony-utils',
|
|
'harmony-transaction',
|
|
];
|
|
|
|
task('cleanBrowser', async () => {
|
|
await packages.map((p) => {
|
|
const pathToLib = `packages/${p}/lib`;
|
|
return del.sync([pathToLib]);
|
|
});
|
|
});
|
|
|
|
task('cleanServer', async () => {
|
|
await packages.map((p) => {
|
|
const pathToLib = `packages/${p}/dist`;
|
|
return del.sync([pathToLib]);
|
|
});
|
|
});
|
|
|
|
task('cleanDocs', async () => {
|
|
await packages.map((p) => {
|
|
const pathToLib = `packages/${p}/doc`;
|
|
return del.sync([pathToLib]);
|
|
});
|
|
});
|
|
|