pixelplanet/scripts/prebuild.js

27 lines
630 B
JavaScript
Raw Normal View History

2020-01-02 16:58:06 +00:00
/**
* 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 run from './run';
import clean from './clean';
import copy from './copy';
import minifyCss from './minifyCss';
2020-01-02 16:58:06 +00:00
/**
* Compiles the project from source files into a distributable
* format and copies it to the output (build) folder.
*/
2021-01-29 21:46:58 +00:00
async function prebuild() {
2020-01-02 16:58:06 +00:00
await run(clean);
await run(copy);
await run(minifyCss);
2020-01-02 16:58:06 +00:00
}
2021-01-29 21:46:58 +00:00
export default prebuild;