@teispace/next-maker 2.1.1 → 3.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 +18 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.0](https://github.com/teispace/npm-packages/compare/next-maker-v2.1.2...next-maker-v3.0.0) (2026-05-31)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * drops support for Node 20 and 21; requires Node >=22.12.0.
9
+
10
+ ### Miscellaneous Chores
11
+
12
+ * upgrade all dependencies to latest ([#89](https://github.com/teispace/npm-packages/issues/89)) ([3e6e199](https://github.com/teispace/npm-packages/commit/3e6e1994cd82979c7acb07f6253ca1db9396e5ec))
13
+
14
+ ## [2.1.2](https://github.com/teispace/npm-packages/compare/next-maker-v2.1.1...next-maker-v2.1.2) (2026-05-18)
15
+
16
+
17
+ ### Miscellaneous Chores
18
+
19
+ * upgrade deps to latest + publish with npm provenance ([#84](https://github.com/teispace/npm-packages/issues/84)) ([431fb27](https://github.com/teispace/npm-packages/commit/431fb27ed8e5e03024293da636fbd1277b34eaae))
20
+
3
21
  ## [2.1.1](https://github.com/teispace/npm-packages/compare/next-maker-v2.1.0...next-maker-v2.1.1) (2026-05-15)
4
22
 
5
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teispace/next-maker",
3
- "version": "2.1.1",
3
+ "version": "3.0.0",
4
4
  "description": "Create a new Teispace Next.js application with interactive setup.",
5
5
  "keywords": [
6
6
  "nextjs",
@@ -40,8 +40,8 @@
40
40
  "test:watch": "vitest"
41
41
  },
42
42
  "dependencies": {
43
- "commander": "^14.0.3",
44
- "degit": "^2.8.4",
43
+ "commander": "^15.0.0",
44
+ "degit": "^3.3.2",
45
45
  "enquirer": "^2.4.1",
46
46
  "ora": "^9.4.0",
47
47
  "picocolors": "^1.1.1",
@@ -50,14 +50,14 @@
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/degit": "^2.8.6",
53
- "@types/node": "^25.6.0",
53
+ "@types/node": "^25.9.1",
54
54
  "esbuild": "^0.28.0",
55
- "tsx": "^4.21.0",
55
+ "tsx": "^4.22.3",
56
56
  "typescript": "^6.0.3",
57
- "vitest": "^4.1.5"
57
+ "vitest": "^4.1.7"
58
58
  },
59
59
  "engines": {
60
- "node": ">=20.0.0"
60
+ "node": ">=22.12.0"
61
61
  },
62
62
  "publishConfig": {
63
63
  "access": "public",