Skip to content

Commit e4c03da

Browse files
committed
updated vue to 2.2.4
1 parent 9a9bce3 commit e4c03da

File tree

16 files changed

+40
-38
lines changed

16 files changed

+40
-38
lines changed
File renamed without changes.

vue-v2.1.10-keyed/index.html renamed to vue-v2.2.4-keyed/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Vue.js v2.1.10</title>
5+
<title>Vue.js v2.2.4</title>
66
<link href="/css/currentStyle.css" rel="stylesheet"/>
77
</head>
88
<body>

vue-v2.1.10-non-keyed/package.json renamed to vue-v2.2.4-keyed/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
"url": "https://github.com/krausest/js-framework-benchmark.git"
1818
},
1919
"devDependencies": {
20-
"babel-core": "6.21.0",
21-
"babel-loader": "6.2.10",
22-
"babel-preset-es2015": "6.18.0",
23-
"babel-preset-stage-0": "6.16.0",
24-
"webpack": "1.14.0",
25-
"vue-loader": "10.0.2",
26-
"vue-template-compiler": "2.1.10",
27-
"css-loader": "0.26.1"
20+
"babel-core": "6.24.0",
21+
"babel-loader": "6.4.1",
22+
"babel-preset-es2015": "6.24.0",
23+
"babel-preset-stage-0": "6.22.0",
24+
"webpack": "2.2.1",
25+
"vue-loader": "11.2.0",
26+
"vue-template-compiler": "2.2.4",
27+
"css-loader": "0.27.3"
2828
},
2929
"dependencies": {
30-
"vue": "2.1.10"
30+
"vue": "2.2.4"
3131
}
3232
}

vue-v2.1.10-keyed/src/App.vue renamed to vue-v2.2.4-keyed/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="jumbotron">
44
<div class="row">
55
<div class="col-md-6">
6-
<h1>Vue.js v2.1.10</h1>
6+
<h1>Vue.js v2.2.4</h1>
77
</div>
88
<div class="col-md-6">
99
<div class="row">
File renamed without changes.
File renamed without changes.

vue-v2.1.10-non-keyed/webpack.config.js renamed to vue-v2.2.4-keyed/webpack.config.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'use strict';
2-
2+
var path = require('path')
33
var webpack = require('webpack')
44
var cache = {};
55
var loaders = [
@@ -29,7 +29,7 @@ var loaders = [
2929
}
3030
];
3131
var extensions = [
32-
'', '.js', '.jsx', '.es6.js', '.msx'
32+
'.js', '.jsx', '.es6.js', '.msx'
3333
];
3434

3535
module.exports = [{
@@ -46,11 +46,12 @@ module.exports = [{
4646
sourceMapFilename: "[file].map",
4747
},
4848
resolve: {
49-
extensions: extensions,
50-
root: [
49+
modules: [
5150
__dirname,
52-
__dirname + '/src'
53-
]
51+
path.resolve(__dirname, "src"),
52+
"node_modules"
53+
],
54+
extensions: extensions
5455
},
5556
plugins: [
5657
new webpack.DefinePlugin({
File renamed without changes.

vue-v2.1.10-non-keyed/index.html renamed to vue-v2.2.4-non-keyed/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<title>Vue.js v2.1.10</title>
5+
<title>Vue.js v2.2.4</title>
66
<link href="/css/currentStyle.css" rel="stylesheet"/>
77
</head>
88
<body>

vue-v2.1.10-keyed/package.json renamed to vue-v2.2.4-non-keyed/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
"url": "https://github.com/krausest/js-framework-benchmark.git"
1818
},
1919
"devDependencies": {
20-
"babel-core": "6.21.0",
21-
"babel-loader": "6.2.10",
22-
"babel-preset-es2015": "6.18.0",
23-
"babel-preset-stage-0": "6.16.0",
24-
"webpack": "1.14.0",
25-
"vue-loader": "10.0.2",
26-
"vue-template-compiler": "2.1.10",
27-
"css-loader": "0.26.1"
20+
"babel-core": "6.24.0",
21+
"babel-loader": "6.4.1",
22+
"babel-preset-es2015": "6.24.0",
23+
"babel-preset-stage-0": "6.22.0",
24+
"webpack": "2.2.1",
25+
"vue-loader": "11.2.0",
26+
"vue-template-compiler": "2.2.4",
27+
"css-loader": "0.27.3"
2828
},
2929
"dependencies": {
30-
"vue": "2.1.10"
30+
"vue": "2.2.4"
3131
}
3232
}

0 commit comments

Comments
 (0)