@ecopages/image-processor 0.2.0-alpha.10 → 0.2.0-alpha.11
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.
- package/CHANGELOG.md +2 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -8,14 +8,11 @@ All notable changes to `@ecopages/image-processor` are documented here.
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
- Added
|
|
12
|
-
- Added `bun-plugins.ts` with Bun-specific build adapter helpers aligned with the shared image plugin layer.
|
|
11
|
+
- Added shared image plugin helpers for multiple build adapters and Bun-specific adapter wiring.
|
|
13
12
|
|
|
14
13
|
### Bug Fixes
|
|
15
14
|
|
|
16
|
-
-
|
|
17
|
-
- Inlined the generated `ecopages:images` declaration source so bundled runtime bootstrap no longer depends on a sibling `types` module at runtime.
|
|
18
|
-
- Re-emitted generated image outputs after static export cleanup so routes that reference `/images/...` keep their optimized files inside `dist`.
|
|
15
|
+
- Fixed ESM internal imports, generated declaration bundling, and exported image outputs in static builds.
|
|
19
16
|
|
|
20
17
|
### Tests
|
|
21
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecopages/image-processor",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.11",
|
|
4
4
|
"description": "Image processor, transform and optimize images for web",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"image",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"directory": "packages/processors/image-processor"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@ecopages/core": "0.2.0-alpha.
|
|
18
|
+
"@ecopages/core": "0.2.0-alpha.11"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@ecopages/file-system": "0.2.0-alpha.
|
|
21
|
+
"@ecopages/file-system": "0.2.0-alpha.11",
|
|
22
22
|
"@ecopages/logger": "latest",
|
|
23
23
|
"react": "^19",
|
|
24
24
|
"react-dom": "^19",
|