Javascript SDK of WoopChain protocol
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.
sdk/gulpfile.js

44 lines
934 B

const { task, src } = require('gulp');
const del = require('del');
const fs = require('fs');
const path = require('path');
const packages = [
'harmony-core',
'harmony-crypto',
'harmony-account',
'harmony-network',
'harmony-contract',
'harmony-utils',
'harmony-transaction',
'harmony-staking',
];
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('cleanUnexpected', async () => {
await packages.map((p) => {
const pathToLib = `packages/${p}/tsconfig.tsbuildinfo`;
return del.sync([pathToLib]);
});
});
task('cleanDocs', async () => {
await packages.map((p) => {
const pathToLib = `docs/${p}`;
return del.sync([pathToLib]);
});
});