alouette-icons 4.0.2 → 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.
- package/CHANGELOG.md +16 -0
- package/README.md +6 -6
- package/package.json +9 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
|
|
17
|
+
## [4.0.3](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.2...alouette-icons@4.0.3) (2025-02-15)
|
|
18
|
+
|
|
19
|
+
Note: no notable changes
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [4.0.2](https://github.com/christophehurpeau/alouette/compare/alouette-icons@4.0.1...alouette-icons@4.0.2) (2025-02-09)
|
|
7
23
|
|
|
8
24
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<
|
|
1
|
+
<h1 align="center">
|
|
2
2
|
alouette-icons
|
|
3
|
-
</
|
|
3
|
+
</h1>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
icons for alouette
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
|
-
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/v/alouette-icons.svg?style=flat-square"></a>
|
|
11
|
-
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/dw/alouette-icons.svg?style=flat-square"></a>
|
|
12
|
-
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/node/v/alouette-icons.svg?style=flat-square"></a>
|
|
13
|
-
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/types/alouette-icons.svg?style=flat-square"></a>
|
|
10
|
+
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/v/alouette-icons.svg?style=flat-square" alt="npm version"></a>
|
|
11
|
+
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/dw/alouette-icons.svg?style=flat-square" alt="npm downloads"></a>
|
|
12
|
+
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/node/v/alouette-icons.svg?style=flat-square" alt="node version"></a>
|
|
13
|
+
<a href="https://npmjs.org/package/alouette-icons"><img src="https://img.shields.io/npm/types/alouette-icons.svg?style=flat-square" alt="types"></a>
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
## Install
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alouette-icons",
|
|
3
|
-
"version": "
|
|
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.
|
|
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": "^
|
|
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.
|
|
69
|
-
"@babel/preset-react": "7.
|
|
70
|
-
"react-native": "0.
|
|
71
|
-
"typescript": "5.
|
|
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
|
}
|