@anansi/cli 2.2.7 → 3.0.1

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 (3) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +5 -5
  3. package/run.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,26 @@
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
+ ### [3.0.1](https://github.com/ntucker/anansi/compare/@anansi/cli@3.0.0...@anansi/cli@3.0.1) (2023-05-07)
7
+
8
+ ### 📦 Package
9
+
10
+ * Update `@types/node` to v20 ([#1994](https://github.com/ntucker/anansi/issues/1994)) ([379a614](https://github.com/ntucker/anansi/commit/379a61487a585c9618c80a6d436e581931040c7f))
11
+
12
+ ## [3.0.0](https://github.com/ntucker/anansi/compare/@anansi/cli@2.2.7...@anansi/cli@3.0.0) (2023-04-25)
13
+
14
+ ### ⚠ 💥 BREAKING CHANGES
15
+
16
+ * Requires node 18 or higher
17
+
18
+ ### 💅 Enhancement
19
+
20
+ * meta-resolve is no longer async ([6bd09e0](https://github.com/ntucker/anansi/commit/6bd09e06411c01ed157fea3b5194e1fbe4749d60))
21
+
22
+ ### 📦 Package
23
+
24
+ * Update `import-meta-resolve` to v3 ([53574d2](https://github.com/ntucker/anansi/commit/53574d264de68dbb8e2c96ad7ca509cce030ee31))
25
+
6
26
  ### [2.2.7](https://github.com/ntucker/anansi/compare/@anansi/cli@2.2.6...@anansi/cli@2.2.7) (2023-04-19)
7
27
 
8
28
  **Note:** Version bump only for package @anansi/cli
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anansi/cli",
3
- "version": "2.2.7",
3
+ "version": "3.0.1",
4
4
  "description": "Fast React Web Apps",
5
5
  "homepage": "https://github.com/ntucker/anansi/tree/master/packages/cli#readme",
6
6
  "repository": {
@@ -47,19 +47,19 @@
47
47
  "jest"
48
48
  ],
49
49
  "engines": {
50
- "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
50
+ "node": ">=18.0.0",
51
51
  "npm": ">= 6.0.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@types/node": "^18.15.9"
54
+ "@types/node": "^20.0.0"
55
55
  },
56
56
  "dependencies": {
57
- "@anansi/generator-js": "^11.2.5",
57
+ "@anansi/generator-js": "^12.0.1",
58
58
  "bin-version-check": "^5.0.0",
59
59
  "chalk": "^4.1.2",
60
60
  "commander": "^10.0.1",
61
61
  "execa": "^7.1.1",
62
- "import-meta-resolve": "^2.2.2",
62
+ "import-meta-resolve": "^3.0.0",
63
63
  "latest-version": "^7.0.0",
64
64
  "yo": "^4.3.1"
65
65
  },
package/run.mjs CHANGED
@@ -43,7 +43,7 @@ program
43
43
  'npx yo',
44
44
  [
45
45
  // get rid of 'file://' prefix
46
- (await resolve('@anansi/generator-js', import.meta.url)).substring(7),
46
+ resolve('@anansi/generator-js', import.meta.url).substring(7),
47
47
  projectName,
48
48
  ],
49
49
  {