alouette-icons 1.0.0 → 2.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 +14 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
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
+ ## [2.0.0](https://github.com/christophehurpeau/alouette/compare/alouette-icons@1.0.0...alouette-icons@2.0.0) (2024-12-03)
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * drop node 18
11
+
12
+ ### Features
13
+
14
+ * update dependencies and build cjs ([121ed87](https://github.com/christophehurpeau/alouette/commit/121ed8748bed730826d206160399af2f1eae63fa))
15
+
16
+ ### Miscellaneous Chores
17
+
18
+ * update dev dependencies and update to node 20 ([28885df](https://github.com/christophehurpeau/alouette/commit/28885dfe4fae18e4159ec3c9fab23a7fc738b6c0))
19
+
6
20
  ## 1.0.0 (2024-09-14)
7
21
 
8
22
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alouette-icons",
3
- "version": "1.0.0",
3
+ "version": "2.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": ">=18.12.0"
16
+ "node": ">=20.9.0"
17
17
  },
18
18
  "sideEffects": false,
19
19
  "react-native": {
@@ -25,7 +25,8 @@
25
25
  "types": "./lib/phosphor-icons.d.ts",
26
26
  "react-native": "./lib/phosphor-icons.cjs",
27
27
  "node": {
28
- "import": "./lib/phosphor-icons.mjs"
28
+ "import": "./lib/phosphor-icons.mjs",
29
+ "require": "./lib/phosphor-icons.cjs"
29
30
  },
30
31
  "browser": "./lib/phosphor-icons.mjs"
31
32
  }
@@ -55,6 +56,6 @@
55
56
  "@phosphor-icons/core": "2.1.1"
56
57
  },
57
58
  "devDependencies": {
58
- "react-native": "0.75.2"
59
+ "react-native": "0.75.4"
59
60
  }
60
61
  }