Skip to content

Commit

Permalink
feat(svelte): support svelte 5 RC (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
xrutayisire authored May 28, 2024
1 parent bafcd24 commit 39b4e57
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.2.0-alpha.0](https://github.com/prismicio/prismic-svelte/compare/v1.1.1...v1.2.0-alpha.0) (2024-05-28)


### Features

* **svelte:** support svelte 5 RC ([dc4f45d](https://github.com/prismicio/prismic-svelte/commit/dc4f45dc247be475f46bf1e1bdc473b12aa8e6ee))


### Chore

* **releases:** release alpha as minor ([a384f9c](https://github.com/prismicio/prismic-svelte/commit/a384f9cebfda83ffd3d46708dece465fd8de83a6))

### [1.1.1](https://github.com/prismicio/prismic-svelte/compare/v1.1.0...v1.1.1) (2024-03-27)


Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@prismicio/svelte",
"version": "1.1.1",
"version": "1.2.0-alpha.0",
"description": "Svelte components to present Prismic content.",
"keywords": [
"typescript",
Expand Down Expand Up @@ -50,8 +50,8 @@
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:alpha": "npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run",
"release:alpha": "npm run test && standard-version --release-as minor --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as minor --prerelease alpha --dry-run",
"release:dry": "standard-version --dry-run",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size",
Expand Down Expand Up @@ -94,7 +94,7 @@
"peerDependencies": {
"@prismicio/client": ">=7",
"@sveltejs/kit": ">=1",
"svelte": ">=4"
"svelte": ">=4 || ^5.0.0-next.1"
},
"peerDependenciesMeta": {
"@sveltejs/kit": {
Expand Down

0 comments on commit 39b4e57

Please sign in to comment.