forked from vuejs/vue-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 vuejs@1ae223d#diff-ac5fc3f8b11df9fc948b8e5aa52a074e the background version check might never get executed since rc.12)
- Loading branch information
1 parent
5d49d57
commit 044f5b3
Showing
6 changed files
with
59 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ dist | |
temp | ||
.vuerc | ||
.version | ||
.versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters