Skip to content

Commit ad2de3b

Browse files
authored
1.2.1 - Bugfix release (#1052)
* re-merge (#1045) * Reference dev script in start script instead of copy pasting (#894) Less duplication FTW. * add version tag to config/index.js * stick to ES5 this file is not transpiled * Bumping Vue+VueRouter versions, some minor fixes. (#986) * switch hello-world tag to PascalCase (#951) * fix Es6 code issue. This file is not transpiled, so we should stick to ES5 * Fix bug in dev-server when a proxyTable entry is a string (#965) `options` can not be a `const` because it is modified if value is a string. * Fix casing * Revert 9befbfc * update to vue and vue-router latest version (#984) - vue 2.5 - vue-router 3.0 * Fix missing dependency bumps (#987) * switch hello-world tag to PascalCase (#951) * fix Es6 code issue. This file is not transpiled, so we should stick to ES5 * Fix bug in dev-server when a proxyTable entry is a string (#965) `options` can not be a `const` because it is modified if value is a string. * Fix casing * Revert 9befbfc * update to vue and vue-router latest version (#984) - vue 2.5 - vue-router 3.0 * fix missing dependency updates for * vue-template compiler * vue-loader * bump version string * Fix Unknown plugin istanbul error when no unit test (#785) * Fix Unknown plugin istanbul error when no unit test * simplify handlebars conditionals. * Revert "Fix Unknown plugin istanbul error when no unit test (#785)" (#1035) This reverts commit 14f2a92. * Remove unnecessary whitespaces (#1047) * fix(jest): fix Jest coverage directory (#1046) Explicitly set the coverage directory to match Karma and .gitignore * Fix typos and formatting (#1048) * re-add postcss-loader was mistakenly removed during merge of #824 * bumb version string in config * bumb version string in config in package.json
1 parent d1b903a commit ad2de3b

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-cli-template-webpack",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"license": "MIT",
55
"description": "A full-featured Webpack setup with hot-reload, lint-on-save, unit testing & css extraction.",
66
"scripts": {

template/config/index.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
21
'use strict'
3-
// Template version: 1.2.0
2+
// Template version: 1.2.1
43
// see http://vuejs-templates.github.io/webpack for documentation.
54

65
const path = require('path')
@@ -23,15 +22,15 @@ module.exports = {
2322

2423
// Use Eslint Loader?
2524
// If true, your code will be linted during bundling and
26-
// linting errors and warings will be shown in the console.
25+
// linting errors and warnings will be shown in the console.
2726
useEslint: true,
28-
// If true, eslint errors and warings will also be shown in the error overlay
27+
// If true, eslint errors and warnings will also be shown in the error overlay
2928
// in the browser.
3029
showEslintErrorsInOverlay: false,
3130

3231
/**
3332
* Source Maps
34-
*/
33+
*/
3534

3635
// https://webpack.js.org/configuration/devtool/#development
3736
devtool: 'eval-source-map',
@@ -46,7 +45,7 @@ module.exports = {
4645
// (https://github.com/webpack/css-loader#sourcemaps)
4746
// In our experience, they generally work as expected,
4847
// just be aware of this issue when enabling this option.
49-
cssSourceMap: false,
48+
cssSourceMap: false,
5049
},
5150

5251
build: {
@@ -59,8 +58,9 @@ module.exports = {
5958
assetsPublicPath: '/',
6059

6160
/**
62-
* SourceMap
63-
*/
61+
* Source Maps
62+
*/
63+
6464
productionSourceMap: true,
6565
// https://webpack.js.org/configuration/devtool/#production
6666
devtool: '#source-map',

template/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
"nightwatch": "^0.9.12",
9898
"selenium-server": "^3.0.1",
9999
{{/e2e}}
100+
"postcss-loader": "^2.0.8",
100101
"semver": "^5.3.0",
101102
"shelljs": "^0.7.6",
102103
"optimize-css-assets-webpack-plugin": "^3.2.0",
@@ -127,6 +128,7 @@
127128
},
128129
"setupFiles": ["<rootDir>/test/unit/setup"],
129130
"mapCoverage": true,
131+
"coverageDirectory": "<rootDir>/test/unit/coverage",
130132
"collectCoverageFrom" : [
131133
"src/**/*.{js,vue}",
132134
"!src/main.js",

0 commit comments

Comments
 (0)