mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
chore(packages): move the packages to root
This commit is contained in:
12
angular/scripts/clean.js
vendored
Normal file
12
angular/scripts/clean.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
const fs = require('fs-extra');
|
||||
const path = require('path');
|
||||
|
||||
|
||||
const cleanDirs = [
|
||||
'dist'
|
||||
];
|
||||
|
||||
cleanDirs.forEach(dir => {
|
||||
const cleanDir = path.join(__dirname, '../', dir);
|
||||
fs.removeSync(cleanDir);
|
||||
});
|
Reference in New Issue
Block a user