| 1234567891011121314151617181920212223242526272829 |
- /**
- * 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 webpack from 'webpack';
- import webpackConfig from './webpack.config';
- /**
- * Creates application bundles from the source files.
- */
- function bundle() {
- return new Promise((resolve, reject) => {
- webpack(webpackConfig).run((err, stats) => {
- if (err) {
- return reject(err);
- }
- console.log(stats.toString(webpackConfig[0].stats));
- return resolve();
- });
- });
- }
- export default bundle;
|