-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ improve(patch): upgradeable community extensions (#2448)
Allow for community extensions to be versioned independently of bud.js packages. Extension authors can add a `bud.version` field to their `package.json`: ```json { "bud": {"version": ">=6.1.0"} } ``` If no versioning information is present or a match cannot be found, bud.js will try to install `[extension-name]@latest` when upgrading. This upgrade logic is applied to any `dependency` or `devDependency` which starts with `bud-` or includes `/bud-` (so packages can be namespaced). ## Type of change **PATCH: backwards compatible change**
- Loading branch information
1 parent
ee11bed
commit 2558245
Showing
7 changed files
with
164 additions
and
71 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export {default} from 'semver' |
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
Oops, something went wrong.