Skip to content

Commit 3b34b02

Browse files
committed
bump deps
1 parent 419779b commit 3b34b02

File tree

4 files changed

+998
-971
lines changed

4 files changed

+998
-971
lines changed

build/nightwatch.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77

88
'selenium': {
99
'start_process': true,
10-
'server_path': 'node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.1.jar',
10+
'server_path': require('selenium-server').path,
1111
'host': '127.0.0.1',
1212
'port': 4444,
1313
'cli_args': {

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"babel-plugin-transform-vue-jsx": "^3.2.0",
6969
"babel-preset-es2015": "^6.9.0",
7070
"babel-preset-flow-vue": "^1.0.0",
71-
"buble": "^0.14.0",
71+
"buble": "^0.15.2",
7272
"chromedriver": "^2.21.2",
7373
"codecov.io": "^0.1.6",
7474
"cross-spawn": "^5.0.1",
@@ -95,24 +95,24 @@
9595
"karma-safari-launcher": "^1.0.0",
9696
"karma-sauce-launcher": "^1.0.0",
9797
"karma-sourcemap-loader": "^0.3.0",
98-
"karma-webpack": "^1.7.0",
98+
"karma-webpack": "^2.0.1",
9999
"lodash": "^4.17.1",
100100
"nightwatch": "^0.9.9",
101101
"nightwatch-helpers": "^1.2.0",
102102
"phantomjs-prebuilt": "^2.1.1",
103-
"rollup": "^0.36.1",
103+
"rollup": "^0.41.4",
104104
"rollup-plugin-alias": "^1.2.0",
105105
"rollup-plugin-babel": "^2.4.0",
106-
"rollup-plugin-buble": "^0.14.0",
106+
"rollup-plugin-buble": "^0.15.0",
107107
"rollup-plugin-flow-no-whitespace": "^1.0.0",
108108
"rollup-plugin-replace": "^1.1.0",
109-
"rollup-watch": "^2.5.0",
110-
"selenium-server": "2.53.1",
109+
"rollup-watch": "^3.2.2",
110+
"selenium-server": "3.0.1",
111111
"typescript": "^2.0.9",
112112
"uglify-js": "^2.6.2",
113113
"webpack": "^1.13.2",
114114
"weex-js-runtime": "^0.17.0-alpha4",
115-
"weex-vdom-tester": "^0.1.3"
115+
"weex-vdom-tester": "^0.1.4"
116116
},
117117
"dependencies": {},
118118
"unpkg": "dist/vue.js"
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
// reuse same transition component logic from web
2-
export * from 'web/runtime/components/transition'
2+
export {
3+
transitionProps,
4+
extractTransitionData
5+
} from 'web/runtime/components/transition'
6+
7+
import Transition from 'web/runtime/components/transition'
8+
9+
export default Transition

0 commit comments

Comments
 (0)