@nomideusz/svelte-media 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -2
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -2,11 +2,14 @@
2
2
 
3
3
  Backfilled 2026-08-02 from git history. Entries before that date are
4
4
  reconstructed from commits, so they record what changed rather than a release
5
- that was tagged at the time. The package has not been published to npm yet.
5
+ that was tagged at the time. 0.1.0 was published manually trusted publishing
6
+ cannot bootstrap a package that does not exist yet — and releases from 0.1.1 on
7
+ go through the repo's Release & Publish workflow.
6
8
 
7
- ## Unreleased
9
+ ## 0.1.1 — 2026-08-03
8
10
 
9
11
  ### Added
12
+ - Demo site at https://svelte-media-gamma.vercel.app/; `homepage` points at it.
10
13
  - README — the package's first, documenting the adapter seam, the four sizes,
11
14
  the `(prefix, entityId, filename)` key shape the helpers take, and the fact
12
15
  that all output is WebP regardless of what was uploaded.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomideusz/svelte-media",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Image upload, processing, and S3-compatible storage for Svelte 5 apps.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -64,5 +64,6 @@
64
64
  "repository": {
65
65
  "type": "git",
66
66
  "url": "https://github.com/nomideusz/svelte-media"
67
- }
67
+ },
68
+ "homepage": "https://svelte-media-gamma.vercel.app/"
68
69
  }