| 12345678910111213141516171819202122232425 |
- /**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-2016 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 bundle from './bundle';
- /**
- * Compiles the project from source files into a distributable
- * format and copies it to the output (build) folder.
- */
- async function build() {
- await run(clean);
- await run(copy);
- await run(bundle);
- }
- export default build;
|