@granite-js/image 0.1.25 → 0.1.27

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 +16 -0
  2. package/package.json +9 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @granite-js/image
2
2
 
3
+ ## 0.1.27
4
+
5
+ ### Patch Changes
6
+
7
+ - e32b020: ci: oidc
8
+ - Updated dependencies [e32b020]
9
+ - Updated dependencies [1dd9179]
10
+ - @granite-js/native@0.1.27
11
+
12
+ ## 0.1.26
13
+
14
+ ### Patch Changes
15
+
16
+ - 41f9ab3: ensure polyfill setup during initialization and update package.json config for improve tree shaking
17
+ - @granite-js/native@0.1.26
18
+
3
19
  ## 0.1.25
4
20
 
5
21
  ### 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.27",
4
4
  "scripts": {
5
5
  "prepack": "yarn build",
6
6
  "typecheck": "tsc --noEmit",
@@ -10,6 +10,11 @@
10
10
  "main": "./dist/index.js",
11
11
  "module": "./dist/index.mjs",
12
12
  "types": "./dist/index.d.ts",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/toss/granite.git",
16
+ "directory": "packages/image"
17
+ },
13
18
  "exports": {
14
19
  ".": {
15
20
  "import": {
@@ -27,7 +32,7 @@
27
32
  "dist"
28
33
  ],
29
34
  "devDependencies": {
30
- "@granite-js/native": "0.1.25",
35
+ "@granite-js/native": "0.1.27",
31
36
  "@types/react": "18.3.3",
32
37
  "eslint": "^9.7.0",
33
38
  "react": "18.2.0",
@@ -43,5 +48,6 @@
43
48
  },
44
49
  "dependencies": {
45
50
  "react-simplikit": "^0.0.40"
46
- }
51
+ },
52
+ "sideEffects": false
47
53
  }