remove some old cleanup code
This commit is contained in:
parent
bd3873a359
commit
2112b4527d
12
dist/mod00/mod00.clean.js
vendored
12
dist/mod00/mod00.clean.js
vendored
@ -10,17 +10,6 @@ let removeDist = function () {
|
|||||||
plugins.beautylog.ora.text('cleaning dist folder');
|
plugins.beautylog.ora.text('cleaning dist folder');
|
||||||
return plugins.smartfile.fs.remove(paths.distDir);
|
return plugins.smartfile.fs.remove(paths.distDir);
|
||||||
};
|
};
|
||||||
/**
|
|
||||||
* remove .d.ts files from testDirctory
|
|
||||||
*/
|
|
||||||
let removeTestDeclarations = function () {
|
|
||||||
let done = q.defer();
|
|
||||||
plugins.smartfile.fs.listFileTree('./test/', '**/*.d.ts').then(fileArray => {
|
|
||||||
let fileArrayToRemove = plugins.smartpath.transform.toAbsolute(fileArray, process.cwd() + '//test/');
|
|
||||||
plugins.smartfile.fs.removeManySync(fileArrayToRemove);
|
|
||||||
done.resolve();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
/**
|
/**
|
||||||
* remove old pages
|
* remove old pages
|
||||||
*/
|
*/
|
||||||
@ -32,7 +21,6 @@ exports.run = function (configArg) {
|
|||||||
plugins.beautylog.ora.text('cleaning up from previous builds...');
|
plugins.beautylog.ora.text('cleaning up from previous builds...');
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
removeDist()
|
removeDist()
|
||||||
.then(removeTestDeclarations)
|
|
||||||
.then(removePages)
|
.then(removePages)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
plugins.beautylog.ok('Cleaned up from previous builds!');
|
plugins.beautylog.ok('Cleaned up from previous builds!');
|
||||||
|
@ -7,39 +7,26 @@ import plugins = require('./mod00.plugins')
|
|||||||
* removes the dist directory which will be entirely rebuild
|
* removes the dist directory which will be entirely rebuild
|
||||||
*/
|
*/
|
||||||
let removeDist = function () {
|
let removeDist = function () {
|
||||||
plugins.beautylog.ora.text('cleaning dist folder')
|
plugins.beautylog.ora.text('cleaning dist folder')
|
||||||
return plugins.smartfile.fs.remove(paths.distDir)
|
return plugins.smartfile.fs.remove(paths.distDir)
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* remove .d.ts files from testDirctory
|
|
||||||
*/
|
|
||||||
let removeTestDeclarations = function () {
|
|
||||||
let done = q.defer()
|
|
||||||
plugins.smartfile.fs.listFileTree('./test/', '**/*.d.ts').then(fileArray => {
|
|
||||||
let fileArrayToRemove = plugins.smartpath.transform.toAbsolute(fileArray, process.cwd() + '//test/')
|
|
||||||
plugins.smartfile.fs.removeManySync(fileArrayToRemove)
|
|
||||||
done.resolve()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* remove old pages
|
* remove old pages
|
||||||
*/
|
*/
|
||||||
let removePages = function () {
|
let removePages = function () {
|
||||||
plugins.beautylog.ora.text('cleaning pages folder')
|
plugins.beautylog.ora.text('cleaning pages folder')
|
||||||
return plugins.smartfile.fs.remove(paths.pagesDir)
|
return plugins.smartfile.fs.remove(paths.pagesDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
export let run = function (configArg) {
|
export let run = function (configArg) {
|
||||||
plugins.beautylog.ora.text('cleaning up from previous builds...')
|
plugins.beautylog.ora.text('cleaning up from previous builds...')
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
removeDist()
|
removeDist()
|
||||||
.then(removeTestDeclarations)
|
.then(removePages)
|
||||||
.then(removePages)
|
.then(function () {
|
||||||
.then(function () {
|
plugins.beautylog.ok('Cleaned up from previous builds!')
|
||||||
plugins.beautylog.ok('Cleaned up from previous builds!')
|
done.resolve(configArg)
|
||||||
done.resolve(configArg)
|
})
|
||||||
})
|
return done.promise
|
||||||
return done.promise
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user