Skip to content

Commit

Permalink
release 1.1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygd committed Nov 22, 2024
1 parent 7e85033 commit 309dfbb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bigger-picture",
"version": "1.1.18-rc2",
"version": "1.1.18",
"type": "module",
"exports": {
".": {
Expand Down
17 changes: 17 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,23 @@ Use the source `.svelte` files directly by importing `bigger-picture/svelte`. Th
import BiggerPicture from 'bigger-picture/svelte'
```

### Svelte 5 compatibility

This library was made with Svelte 4, so use the `compatibility.componentApi` compiler option to allow backwards compatibility.

If I have time, I'll release a new major version with Svelte 5.

```js
/// svelte.config.js
export default {
compilerOptions: {
compatibility: {
componentApi: 4,
},
},
}
```

## License

MIT

0 comments on commit 309dfbb

Please sign in to comment.