forked from vikejs/vike-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
34 additions
and
19 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[<img src="https://vike.dev/vike-readme.svg" align="right" height="90">](https://vike.dev) | ||
|
||
# `vike-{vue,pinia}` | ||
|
||
Vue-related integrations for [Vike](https://vike.dev): | ||
|
||
- [`vike-vue`](packages/vike-vue/) | ||
- [`vike-pinia`](packages/vike-pinia/) | ||
|
||
> See also other [Vike extensions](https://vike.dev/vike-packages). |
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -6,9 +6,9 @@ Build `vike-vue`: | |
|
||
```bash | ||
git clone [email protected]:vikejs/vike-vue | ||
cd vike-vue/ && pnpm install | ||
cd vike-vue/ | ||
pnpm install | ||
pnpm build | ||
cd ../ | ||
``` | ||
|
||
> Note that you'll need [pnpm](https://pnpm.io/) for development, which you can install with `$ npm install -g pnpm`. | ||
|
@@ -29,25 +29,25 @@ cd ../../ | |
|
||
## Releasing | ||
|
||
Choose the next version number according to the rules of | ||
[Semantic Versioning](https://semver.org/). Let's assume you are releasing | ||
version `1.2.3`, run: | ||
In order to release the next patch version (`MAJOR.MINOR.PATCH`, see [Semantic Versioning](https://semver.org/)), run: | ||
|
||
```bash | ||
cd vike-vue/ | ||
pnpm exec release-me v1.2.3 | ||
cd ../ | ||
cd packages/vike-vue/ | ||
pnpm release | ||
cd ../../ | ||
``` | ||
|
||
This will: | ||
|
||
- update the version number and dependencies in `package.json`, | ||
- extend [`CHANGELOG.md`](CHANGELOG.md), | ||
- update the `pnpm-lock.yaml` file, | ||
- create a `release: v1.2.3` git commit and push it, | ||
- create a `v1.2.3` git tag and push it, | ||
- create a `release: vike-vue@1.2.3` git commit and push it, | ||
- create a `vike-vue@1.2.3` git tag and push it, | ||
- build the package and publish it to npm. | ||
|
||
Extend [`CHANGELOG.md`](CHANGELOG.md) if anything is missing, as the release | ||
script only picks up commits | ||
[that match the pattern of "Feature", "Fix", "Performance Improvement" or "Breaking Changes"](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli). | ||
Extend [`CHANGELOG.md`](CHANGELOG.md) if anything is missing, as the release script: | ||
|
||
- only picks up commits | ||
[that match the pattern of "Feature", "Fix", "Performance Improvement" or "Breaking Changes"](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli), | ||
- mistakenly picks up commits touching all packages in this monorepo, not only `vike-vue`. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.