Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 3 additions & 63 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,48 +60,13 @@ jobs:
- run:
name: yarn test
command: yarn test
test_version_2.0.8:
test_compat:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.0.8"
test_version_2.1.10:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.1.10"
test_version_2.2.6:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.2.6"
test_version_2.3.4:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.3.4"
test_version_2.4.2:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.4.2"
test_version_2.5.13:
<<: *defaults
steps:
- attach_workspace:
at: ~/repo
- *restore_node_modules
- run: yarn test:compat "2.5.16"
- run: yarn test:compat
workflows:
version: 2
install-tests:
Expand All @@ -116,32 +81,7 @@ workflows:
- test:
requires:
- install
- test_version_2.0.8:
requires:
- install
- build_test
- test
- test_version_2.1.10:
requires:
- install
- build_test
- test
- test_version_2.2.6:
requires:
- install
- build_test
- test
- test_version_2.3.4:
requires:
- install
- build_test
- test
- test_version_2.4.2:
requires:
- install
- build_test
- test
- test_version_2.5.13:
- test_compat:
requires:
- install
- build_test
Expand Down
19 changes: 14 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@
"format:check": "prettier --check \"**/*.{js,json,vue,md}\"",
"release": "npm run build && npm run test:unit:only && lerna publish --conventional-commits -m \"chore(release): publish %s\" --cd-version prerelease",
"test": "npm run format:check && npm run lint && npm run lint:docs && npm run flow && npm run test:types && npm run test:unit && npm run test:unit:karma && npm run test:unit:node",
"test:compat": "scripts/test-compat-all.sh",
"test:compat": "scripts/test-compat.sh",
"test:unit": "npm run build:test && npm run test:unit:only",
"test:unit:only": "mocha-webpack --webpack-config test/setup/webpack.test.config.js test/specs --recursive --require test/setup/mocha.setup.js",
"test:unit:debug": "npm run build:test && node --inspect-brk node_modules/.bin/mocha-webpack --webpack-config test/setup/webpack.test.config.js test/specs --recursive --require test/setup/mocha.setup.js",
"test:unit:karma": "npm run build:test && TARGET=browser karma start test/setup/karma.conf.js --single-run",
"test:unit:karma": "npm run build:test && npm run test:unit:karma:only",
"test:unit:karma:only": "cross-env TARGET=browser karma start test/setup/karma.conf.js --single-run",
"test:unit:node": "npm run build:test && npm run test:unit:node:only",
"test:unit:node:only": "cross-env TEST_ENV=node mocha-webpack --webpack-config test/setup/webpack.test.config.js test/specs/render.spec.js test/specs/renderToString.spec.js --require test/setup/mocha.setup.js",
"test:types": "tsc -p packages/test-utils/types && tsc -p packages/server-test-utils/types"
},
"devDependencies": {
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
Expand All @@ -41,7 +42,9 @@
"babel-preset-flow-vue": "^1.0.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.0",
"chalk": "^2.4.2",
"conditional-specs": "^1.0.1",
"conventional-changelog": "^3.1.12",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"eslint": "^4.18.1",
Expand All @@ -63,10 +66,16 @@
"mocha": "^5.2.0",
"mocha-webpack": "^1.0.1",
"prettier": "^1.16.0",
"rollup": "^0.58.2",
"rollup": "1",
"rollup-plugin-buble": "^0.19",
"rollup-plugin-commonjs": "10",
"rollup-plugin-flow-no-whitespace": "1",
"rollup-plugin-json": "4",
"rollup-plugin-node-resolve": "5",
"semver": "^6.3.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"typescript": "^3.0.1",
"typescript": "3",
"vee-validate": "^2.1.3",
"vue": "^2.5.22",
"vue-class-component": "^6.1.2",
Expand Down
11 changes: 0 additions & 11 deletions packages/server-test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,6 @@
"cheerio": "^1.0.0-rc.2",
"@types/cheerio": "^0.22.10"
},
"devDependencies": {
"chalk": "^2.1.0",
"conventional-changelog": "^1.1.3",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"typescript": "^2.6.2"
},
"peerDependencies": {
"@vue/test-utils": "*",
"vue": "2.x",
Expand Down
3 changes: 0 additions & 3 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "shared",
"version": "1.0.0-beta.29",
"private": true,
"dependencies": {
"semver": "^5.6.0"
},
"peerDependencies": {
"vue": "2.x",
"vue-template-compiler": "^2.x"
Expand Down
10 changes: 0 additions & 10 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@
"url": "https://github.com/vuejs/vue-test-utils/issues"
},
"homepage": "https://github.com/vuejs/vue-test-utils#readme",
"devDependencies": {
"chalk": "^2.1.0",
"conventional-changelog": "^1.1.3",
"rollup": "^0.56.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.0.3",
"typescript": "^2.6.2"
},
"peerDependencies": {
"vue": "2.x",
"vue-template-compiler": "^2.x"
Expand Down
Loading