create-tsrouter-app 0.54.21 → 0.54.23
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 +20 -0
- package/package.json +4 -4
- package/tsconfig.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# create-tsrouter-app
|
|
2
2
|
|
|
3
|
+
## 0.54.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Auto-generated changeset from semantic commits on main.
|
|
8
|
+
|
|
9
|
+
- chore: update to TS6.0, fix deprecated tsconfig options (#421) (847b396)
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @tanstack/cli@0.64.2
|
|
13
|
+
- @tanstack/create@0.63.6
|
|
14
|
+
|
|
15
|
+
## 0.54.22
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [[`e3de582`](https://github.com/TanStack/cli/commit/e3de582f050bff32009d3ebefffbb9ec94a15c92), [`05456f2`](https://github.com/TanStack/cli/commit/05456f208572ac785b95f1fbb12631af23f6e881)]:
|
|
20
|
+
- @tanstack/create@0.63.5
|
|
21
|
+
- @tanstack/cli@0.64.1
|
|
22
|
+
|
|
3
23
|
## 0.54.21
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tsrouter-app",
|
|
3
|
-
"version": "0.54.
|
|
3
|
+
"version": "0.54.23",
|
|
4
4
|
"description": "Tanstack Application Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tanstack/cli": "0.64.
|
|
28
|
-
"@tanstack/create": "0.63.
|
|
27
|
+
"@tanstack/cli": "0.64.2",
|
|
28
|
+
"@tanstack/create": "0.63.6"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.13.4",
|
|
32
|
-
"typescript": "^
|
|
32
|
+
"typescript": "^6.0.2"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsc",
|
package/tsconfig.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "ES2020",
|
|
4
|
-
"module": "
|
|
4
|
+
"module": "NodeNext",
|
|
5
5
|
"outDir": "./dist",
|
|
6
6
|
"rootDir": "./src",
|
|
7
7
|
"strict": true,
|
|
8
8
|
"esModuleInterop": true,
|
|
9
9
|
"skipLibCheck": true,
|
|
10
10
|
"forceConsistentCasingInFileNames": true,
|
|
11
|
-
"moduleResolution": "
|
|
11
|
+
"moduleResolution": "NodeNext"
|
|
12
12
|
},
|
|
13
13
|
"include": ["./src/**/*.ts"],
|
|
14
14
|
"exclude": ["node_modules", "dist"]
|