alouette-icons 4.0.3 → 5.1.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
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.1.0](https://github.com/christophehurpeau/alouette/compare/alouette-icons@5.0.0...alouette-icons@5.1.0) (2025-07-09)
7
+
8
+ ### Features
9
+
10
+ * better nextjs support ([d96fb37](https://github.com/christophehurpeau/alouette/commit/d96fb3706357656b95420a7e6c6e77f8c94989a4))
11
+ * update babel ([2d1f630](https://github.com/christophehurpeau/alouette/commit/2d1f6301b7c716d32df7969bb14a8a61facc6d9d))
12
+
13
+ ## [5.0.0](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.3...alouette-icons@5.0.0) (2025-06-29)
14
+
15
+ ### ⚠ BREAKING CHANGES
16
+
17
+ * update to react 19, typography changes and add native storybook
18
+
19
+ ### Features
20
+
21
+ * update dependencies ([27d1465](https://github.com/christophehurpeau/alouette/commit/27d146549419358385e1a5d6bab79c426269e542))
22
+ * update to react 19, typography changes and add native storybook ([87cc3a9](https://github.com/christophehurpeau/alouette/commit/87cc3a99e295d7a47e90c04d68dfb2aecc79430f))
23
+
6
24
  ## [4.0.3](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.2...alouette-icons@4.0.3) (2025-02-15)
7
25
 
8
26
  Note: no notable changes
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
  // This file is generated automatically by scripts/generate-phosphor-icons.mjs
3
- // prettier-ignore-start
4
3
  // @ts-nocheck
5
4
 
6
5
  module.exports = {
@@ -1,5 +1,4 @@
1
1
  // This file is generated automatically by scripts/generate-phosphor-icons.mjs
2
- // prettier-ignore-start
3
2
 
4
3
  import * as React from "react";
5
4
 
@@ -1,5 +1,4 @@
1
1
  // This file is generated automatically by scripts/generate-phosphor-icons.mjs
2
- // prettier-ignore-start
3
2
  // @ts-nocheck
4
3
 
5
4
  export { ReactComponent as AcornRegularIcon } from "@phosphor-icons/core/assets/regular/acorn.svg";
@@ -1,5 +1,4 @@
1
1
  // This file is generated automatically by scripts/generate-phosphor-icons.mjs
2
- // prettier-ignore-start
3
2
  // @ts-nocheck
4
3
 
5
4
  import Svg, { Path } from "react-native-svg";
@@ -1,6 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  // This file is generated automatically by scripts/generate-phosphor-icons.mjs
3
- // prettier-ignore-start
4
3
  // @ts-nocheck
5
4
 
6
5
  export const AcornRegularIcon = (props) =>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alouette-icons",
3
- "version": "4.0.3",
3
+ "version": "5.1.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": {
@@ -29,15 +29,16 @@
29
29
  "require": "./lib/phosphor-icons.cjs"
30
30
  },
31
31
  "node": {
32
- "react-native": {
33
- "import": "./lib/phosphor-icons.node.mjs"
34
- },
35
32
  "web": {
36
33
  "import": "./lib/phosphor-icons.node.web.mjs"
37
34
  },
38
- "import": "./lib/phosphor-icons.node.mjs"
35
+ "react-native": {
36
+ "import": "./lib/phosphor-icons.node.react-native.mjs"
37
+ },
38
+ "import": "./lib/phosphor-icons.node.web.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.28.0",
70
+ "@babel/preset-react": "7.27.1",
71
+ "react-native": "0.79.4",
72
+ "typescript": "5.8.3"
72
73
  }
73
74
  }