build.js 916 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict'
  2. require('./check-versions')()
  3. process.env.NODE_ENV = 'production'
  4. const ora = require('ora')
  5. const rm = require('rimraf')
  6. const path = require('path')
  7. const chalk = require('chalk')
  8. const webpack = require('webpack')
  9. const config = require('../config')
  10. const webpackConfig = require('./webpack.prod.conf')
  11. const spinner = ora('building for production...')
  12. spinner.start()
  13. rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
  14. if (err) throw err
  15. webpack(webpackConfig, (err, stats) => {
  16. spinner.stop()
  17. if (err) throw err
  18. process.stdout.write(stats.toString({
  19. colors: true,
  20. modules: false,
  21. children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
  22. chunks: false,
  23. chunkModules: false
  24. }) + '\n\n')
  25. if (stats.hasErrors()) {
  26. process.exit(1)
  27. }
  28. })
  29. })