@ecopages/image-processor 0.2.0-alpha.10 → 0.2.0-alpha.12

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 +2 -5
  2. package/package.json +5 -5
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 `image-plugins.ts` with shared image plugin creation so the processor can target multiple build adapters.
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
- - Switched public internal imports to explicit relative ESM specifiers so Node thin-host builds can externalize the package without `ERR_MODULE_NOT_FOUND`.
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.10",
3
+ "version": "0.2.0-alpha.12",
4
4
  "description": "Image processor, transform and optimize images for web",
5
5
  "keywords": [
6
6
  "image",
@@ -15,14 +15,14 @@
15
15
  "directory": "packages/processors/image-processor"
16
16
  },
17
17
  "peerDependencies": {
18
- "@ecopages/core": "0.2.0-alpha.10"
18
+ "@ecopages/core": "0.2.0-alpha.12"
19
19
  },
20
20
  "dependencies": {
21
- "@ecopages/file-system": "0.2.0-alpha.10",
22
- "@ecopages/logger": "latest",
21
+ "@ecopages/file-system": "0.2.0-alpha.12",
22
+ "@ecopages/logger": "^0.2.3",
23
23
  "react": "^19",
24
24
  "react-dom": "^19",
25
- "sharp": "^0.33.5"
25
+ "sharp": "^0.34.5"
26
26
  },
27
27
  "exports": {
28
28
  ".": {