Files
vue-cli/packages/vue-cli-version-marker/package.json
T
Haoqun Jiang 044f5b3b7e refactor: use a version map to determine the newest dependency versions
Now that lerna independent mode is used to release new versions, we can
no longer ensure the core service/plugin versions are in sync with
@vue/cli itself. So `vue-cli-version-marker` is now used to store the
latest version map of core packages.

In order to automate this process, all the core cli packages are listed
as `devDependencies` of `vue-cli-version-marker`. This will cause a
cyclic dependency warning in lerna bootstrap, and that warning can be
safely ignored because these are just `devDependencies` which won't
affect end users.

Another gotcha is that the version of `vue-cli-version-marker` will be
bumped each time we do a release. This may break the remote version
check logic before rc.12 (due to
https://github.com/vuejs/vue-cli/commit/1ae223dfc0a915513a3eff35c9d74fe6b5480224#diff-ac5fc3f8b11df9fc948b8e5aa52a074e
the background version check might never get executed since rc.12)
2018-11-12 14:24:41 +08:00

35 lines
1.1 KiB
JSON

{
"name": "vue-cli-version-marker",
"version": "3.1.0",
"description": "version marker for @vue/cli",
"author": "Evan You",
"license": "MIT",
"main": "package.json",
"devDependencies": {
"@vue/babel-preset-app": "3.1.1",
"@vue/cli-init": "3.1.1",
"@vue/cli-overlay": "3.1.0",
"@vue/cli-plugin-babel": "3.1.1",
"@vue/cli-plugin-e2e-cypress": "3.1.1",
"@vue/cli-plugin-e2e-nightwatch": "3.1.1",
"@vue/cli-plugin-eslint": "3.1.4",
"@vue/cli-plugin-pwa": "3.1.1",
"@vue/cli-plugin-typescript": "3.1.1",
"@vue/cli-plugin-unit-jest": "3.1.1",
"@vue/cli-plugin-unit-mocha": "3.1.1",
"@vue/cli-service-global": "3.1.2",
"@vue/cli-service": "3.1.3",
"@vue/cli-shared-utils": "3.1.1",
"@vue/cli-test-utils": "3.1.1",
"@vue/cli-ui-addon-webpack": "3.1.1",
"@vue/cli-ui-addon-widgets": "3.1.1",
"@vue/cli-ui": "3.1.1",
"@vue/cli-upgrade": "3.1.1",
"@vue/cli": "3.1.1",
"@vue/eslint-config-airbnb": "4.0.0",
"@vue/eslint-config-prettier": "4.0.0",
"@vue/eslint-config-standard": "4.0.0",
"@vue/eslint-config-typescript": "3.1.1"
}
}