pixelplanet/tools/clean.js
2020-01-02 17:58:06 +01:00

26 lines
529 B
JavaScript

/**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-present Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
import { cleanDir } from './lib/fs';
/**
* Cleans up the output (build) directory.
*/
function clean() {
return Promise.all([
cleanDir('build/*', {
nosort: true,
dot: true,
ignore: ['build/.git'],
}),
]);
}
export default clean;