@teispace/next-maker 1.19.1 → 1.19.2
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 +8 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.19.2](https://github.com/teispace/npm-packages/compare/next-maker-v1.19.1...next-maker-v1.19.2) (2026-05-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* upgrade deps to latest and clean up workspace dep boundaries ([d5a2137](https://github.com/teispace/npm-packages/commit/d5a2137079de7db9becdeb3f27fbf00b1b7c1ba7))
|
|
9
|
+
* upgrade deps to latest and clean up workspace dep boundaries ([81e201c](https://github.com/teispace/npm-packages/commit/81e201c9f6c21b80fa37fd61ea0890d37181cd73))
|
|
10
|
+
|
|
3
11
|
## [1.19.1](https://github.com/teispace/npm-packages/compare/next-maker-v1.19.0...next-maker-v1.19.1) (2026-04-29)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teispace/next-maker",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"description": "Create a new Teispace Next.js application with interactive setup.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"directory": "packages/next-maker"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
|
-
"build": "tsx build.ts &&
|
|
36
|
+
"build": "tsx build.ts && tsc --emitDeclarationOnly --outDir dist",
|
|
37
37
|
"start": "node dist/index.js",
|
|
38
38
|
"dev": "tsx --watch src/index.ts",
|
|
39
39
|
"test": "vitest run",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"@types/node": "^25.6.0",
|
|
52
52
|
"esbuild": "^0.28.0",
|
|
53
53
|
"tsx": "^4.21.0",
|
|
54
|
+
"typescript": "^6.0.3",
|
|
54
55
|
"vitest": "^4.1.5"
|
|
55
56
|
},
|
|
56
57
|
"engines": {
|