taylor
8 years ago
11 changed files with 229 additions and 162 deletions
-
49build/build.js
-
17build/check-versions.js
-
51build/dev-server.js
-
56build/utils.js
-
12build/vue-loader.conf.js
-
63build/webpack.base.conf.js
-
17build/webpack.dev.conf.js
-
48build/webpack.prod.conf.js
-
10config/index.js
-
62package.json
-
6src/views/Home.vue
@ -1,36 +1,35 @@ |
|||
// https://github.com/shelljs/shelljs
|
|||
require('./check-versions')() |
|||
require('shelljs/global') |
|||
env.NODE_ENV = 'production' |
|||
|
|||
var path = require('path') |
|||
var config = require('../config') |
|||
process.env.NODE_ENV = 'production' |
|||
|
|||
var ora = require('ora') |
|||
var rm = require('rimraf') |
|||
var path = require('path') |
|||
var chalk = require('chalk') |
|||
var webpack = require('webpack') |
|||
var config = require('../config') |
|||
var webpackConfig = require('./webpack.prod.conf') |
|||
|
|||
console.log( |
|||
' Tip:\n' + |
|||
' Built files are meant to be served over an HTTP server.\n' + |
|||
' Opening index.html over file:// won\'t work.\n' |
|||
) |
|||
|
|||
var spinner = ora('building for production...') |
|||
spinner.start() |
|||
|
|||
var assetsPath = path.join(config.build.assetsRoot, config.build.assetsSubDirectory) |
|||
rm('-rf', assetsPath) |
|||
mkdir('-p', assetsPath) |
|||
cp('-R', 'static/*', assetsPath) |
|||
|
|||
webpack(webpackConfig, function (err, stats) { |
|||
spinner.stop() |
|||
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => { |
|||
if (err) throw err |
|||
process.stdout.write(stats.toString({ |
|||
colors: true, |
|||
modules: false, |
|||
children: false, |
|||
chunks: false, |
|||
chunkModules: false |
|||
}) + '\n') |
|||
webpack(webpackConfig, function (err, stats) { |
|||
spinner.stop() |
|||
if (err) throw err |
|||
process.stdout.write(stats.toString({ |
|||
colors: true, |
|||
modules: false, |
|||
children: false, |
|||
chunks: false, |
|||
chunkModules: false |
|||
}) + '\n\n') |
|||
|
|||
console.log(chalk.cyan(' Build complete.\n')) |
|||
console.log(chalk.yellow( |
|||
' Tip: built files are meant to be served over an HTTP server.\n' + |
|||
' Opening index.html over file:// won\'t work.\n' |
|||
)) |
|||
}) |
|||
}) |
@ -0,0 +1,12 @@ |
|||
var utils = require('./utils') |
|||
var config = require('../config') |
|||
var isProduction = process.env.NODE_ENV === 'production' |
|||
|
|||
module.exports = { |
|||
loaders: utils.cssLoaders({ |
|||
sourceMap: isProduction |
|||
? config.build.productionSourceMap |
|||
: config.dev.cssSourceMap, |
|||
extract: isProduction |
|||
}) |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue