alouette-icons 4.0.3 → 5.0.0

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 +11 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.0.0](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.3...alouette-icons@5.0.0) (2025-06-29)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * update to react 19, typography changes and add native storybook
11
+
12
+ ### Features
13
+
14
+ * update dependencies ([27d1465](https://github.com/christophehurpeau/alouette/commit/27d146549419358385e1a5d6bab79c426269e542))
15
+ * update to react 19, typography changes and add native storybook ([87cc3a9](https://github.com/christophehurpeau/alouette/commit/87cc3a99e295d7a47e90c04d68dfb2aecc79430f))
16
+
6
17
  ## [4.0.3](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.2...alouette-icons@4.0.3) (2025-02-15)
7
18
 
8
19
  Note: no notable changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alouette-icons",
3
- "version": "4.0.3",
3
+ "version": "5.0.0",
4
4
  "description": "icons for alouette",
5
5
  "keywords": [],
6
6
  "author": "Christophe Hurpeau <302891+christophehurpeau@users.noreply.github.com> (https://christophe.hurpeau.com)",
@@ -13,7 +13,7 @@
13
13
  "homepage": "https://github.com/christophehurpeau/alouette",
14
14
  "type": "module",
15
15
  "engines": {
16
- "node": ">=20.9.0"
16
+ "node": ">=20.11.0"
17
17
  },
18
18
  "sideEffects": false,
19
19
  "react-native": {
@@ -37,7 +37,8 @@
37
37
  },
38
38
  "import": "./lib/phosphor-icons.node.mjs"
39
39
  }
40
- }
40
+ },
41
+ "./lib/phosphor-icons.cjs": "./lib/phosphor-icons.cjs"
41
42
  },
42
43
  "files": [
43
44
  "lib"
@@ -57,7 +58,7 @@
57
58
  },
58
59
  "prettier": "@pob/root/prettier-config",
59
60
  "peerDependencies": {
60
- "react": "^18.2.0",
61
+ "react": "^19.0.0",
61
62
  "react-native": "*",
62
63
  "react-native-svg": "*"
63
64
  },
@@ -65,9 +66,9 @@
65
66
  "@phosphor-icons/core": "2.1.1"
66
67
  },
67
68
  "devDependencies": {
68
- "@babel/core": "7.26.9",
69
- "@babel/preset-react": "7.26.3",
70
- "react-native": "0.77.1",
71
- "typescript": "5.7.3"
69
+ "@babel/core": "7.27.7",
70
+ "@babel/preset-react": "7.27.1",
71
+ "react-native": "0.79.3",
72
+ "typescript": "5.8.3"
72
73
  }
73
74
  }