Skip to content

Commit 7b69134

Browse files
committed
bump deps and fix config
1 parent 2170ae3 commit 7b69134

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

package.json

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,28 +27,29 @@
2727
"homepage": "https://github.com/vuejs/vue-devtools#readme",
2828
"devDependencies": {
2929
"buble": "^0.14.0",
30-
"buble-loader": "github:yyx990803/buble-loader",
31-
"chromedriver": "^2.21.2",
32-
"cross-env": "^1.0.5",
33-
"css-loader": "^0.23.0",
34-
"eslint": "^2.0.0",
35-
"eslint-config-vue": "^1.0.0",
36-
"eslint-plugin-html": "^1.5.1",
30+
"buble-loader": "^0.3.2",
31+
"chromedriver": "^2.25.1",
32+
"cross-env": "^3.1.3",
33+
"css-loader": "^0.25.0",
34+
"eslint": "^3.9.1",
35+
"eslint-config-vue": "^2.0.0",
36+
"eslint-plugin-vue": "^1.0.0",
3737
"file-loader": "^0.9.0",
3838
"nightwatch": "^0.9.4",
3939
"nightwatch-helpers": "^1.2.0",
4040
"selenium-server": "2.52.0",
4141
"stylus": "^0.54.5",
4242
"stylus-loader": "^2.1.1",
4343
"url-loader": "^0.5.6",
44-
"vue-loader": "^9.7.0",
44+
"vue-loader": "^9.8.1",
4545
"webpack": "^2.1.0-beta.25",
4646
"webpack-dev-server": "^2.1.0-beta.0"
4747
},
4848
"dependencies": {
4949
"circular-json-es6": "^2.0.0",
5050
"lodash.debounce": "^4.0.6",
51-
"vue": "^2.0.0-rc.3",
52-
"vuex": "^2.0.0-rc.4"
51+
"nightwatch-helpers": "^1.2.0",
52+
"vue": "^2.0.0",
53+
"vuex": "^2.0.0"
5354
}
5455
}

shells/chrome/webpack.config.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
var path = require('path')
22
var webpack = require('webpack')
33

4+
var bubleOptions = {
5+
objectAssign: 'Object.assign'
6+
}
7+
48
module.exports = {
59
entry: {
610
hook: './src/hook.js',
@@ -25,10 +29,14 @@ module.exports = {
2529
test: /\.js$/,
2630
loader: 'buble',
2731
exclude: /node_modules|vue\/dist|vuex\/dist/,
32+
options: bubleOptions
2833
},
2934
{
3035
test: /\.vue$/,
31-
loader: 'vue'
36+
loader: 'vue',
37+
options: {
38+
buble: bubleOptions
39+
}
3240
},
3341
{
3442
test: /\.(png|woff2)$/,

shells/dev/webpack.config.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
var path = require('path')
22

3+
var bubleOptions = {
4+
objectAssign: 'Object.assign'
5+
}
6+
37
module.exports = {
48
entry: {
59
devtools: './src/devtools.js',
@@ -14,6 +18,7 @@ module.exports = {
1418
},
1519
resolve: {
1620
alias: {
21+
vue$: 'vue/dist/vue.js',
1722
src: path.resolve(__dirname, '../../src')
1823
}
1924
},
@@ -23,10 +28,14 @@ module.exports = {
2328
test: /\.js$/,
2429
loader: 'buble',
2530
exclude: /node_modules|vue\/dist|vuex\/dist/,
31+
options: bubleOptions
2632
},
2733
{
2834
test: /\.vue$/,
29-
loader: 'vue'
35+
loader: 'vue',
36+
options: {
37+
buble: bubleOptions
38+
}
3039
},
3140
{
3241
test: /\.(png|woff2)$/,

test/assertions/elementCount.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)