@granite-js/image 0.1.25 → 0.1.26

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 +7 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @granite-js/image
2
2
 
3
+ ## 0.1.26
4
+
5
+ ### Patch Changes
6
+
7
+ - 41f9ab3: ensure polyfill setup during initialization and update package.json config for improve tree shaking
8
+ - @granite-js/native@0.1.26
9
+
3
10
  ## 0.1.25
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@granite-js/image",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "scripts": {
5
5
  "prepack": "yarn build",
6
6
  "typecheck": "tsc --noEmit",
@@ -27,7 +27,7 @@
27
27
  "dist"
28
28
  ],
29
29
  "devDependencies": {
30
- "@granite-js/native": "0.1.25",
30
+ "@granite-js/native": "0.1.26",
31
31
  "@types/react": "18.3.3",
32
32
  "eslint": "^9.7.0",
33
33
  "react": "18.2.0",
@@ -43,5 +43,6 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "react-simplikit": "^0.0.40"
46
- }
46
+ },
47
+ "sideEffects": false
47
48
  }