29 lines
		
	
	
		
			603 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			603 B
		
	
	
	
		
			JavaScript
		
	
	
	
| 'use strict'
 | |
| require('../check-versions')()
 | |
| 
 | |
| process.env.NODE_ENV = 'production'
 | |
| 
 | |
| const chalk = require('chalk')
 | |
| const webpack = require('webpack')
 | |
| const webpackConfig = require('./webpack.build.conf')
 | |
| 
 | |
| webpack(webpackConfig, function (err, stats) {
 | |
|   if (err) {
 | |
|     throw err
 | |
|   }
 | |
|   process.stdout.write(stats.toString({
 | |
|     colors: true,
 | |
|     modules: false,
 | |
|     children: false,
 | |
|     chunks: false,
 | |
|     chunkModules: false
 | |
|   }) + '\n\n')
 | |
| 
 | |
|   if (stats.hasErrors()) {
 | |
|     console.log(chalk.red('  Build failed with errors.\n'))
 | |
|     process.exit(1)
 | |
|   }
 | |
| 
 | |
|   console.log(chalk.cyan('  Build complete.\n'))
 | |
| })
 |