@tanstack/create-start 0.48.3 → 0.48.5
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 +0 -8
- package/dist/index.js +4 -5
- package/package.json +4 -5
- package/src/index.ts +4 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
# @tanstack/create-start
|
|
2
2
|
|
|
3
|
-
## 0.48.3
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- Updated dependencies [[`8e0b52b`](https://github.com/TanStack/create-tsrouter-app/commit/8e0b52b4f9e8a3bcd20458b92eac249c756372da)]:
|
|
8
|
-
- @tanstack/cta-framework-react-cra@0.48.3
|
|
9
|
-
- @tanstack/cta-framework-solid@0.48.3
|
|
10
|
-
|
|
11
3
|
## 0.48.2
|
|
12
4
|
|
|
13
5
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
import {
|
|
5
|
-
registerReactCra();
|
|
6
|
-
registerSolid();
|
|
2
|
+
console.warn('\x1b[33m%s\x1b[0m', 'Warning: @tanstack/create-start is deprecated. Use "tanstack create" or "npx @tanstack/cli create" instead.');
|
|
3
|
+
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/start/latest/docs/framework/react/quick-start\n');
|
|
4
|
+
import { cli } from '@tanstack/cli';
|
|
7
5
|
cli({
|
|
8
6
|
name: '@tanstack/create-start',
|
|
9
7
|
forcedDeployment: 'nitro',
|
|
@@ -12,4 +10,5 @@ cli({
|
|
|
12
10
|
forcedAddOns: ['start'],
|
|
13
11
|
craCompatible: true,
|
|
14
12
|
showDeploymentOptions: true,
|
|
13
|
+
legacyAutoCreate: true,
|
|
15
14
|
});
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/create-start",
|
|
3
|
-
"version": "0.48.
|
|
3
|
+
"version": "0.48.5",
|
|
4
4
|
"description": "Tanstack Start Builder",
|
|
5
5
|
"bin": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/TanStack/create-tsrouter-app.git",
|
|
10
|
-
"directory": "cli/ts-create-start"
|
|
10
|
+
"directory": "cli-aliases/ts-create-start"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://tanstack.com/router",
|
|
13
13
|
"funding": {
|
|
@@ -24,9 +24,8 @@
|
|
|
24
24
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tanstack/
|
|
28
|
-
"@tanstack/
|
|
29
|
-
"@tanstack/cta-framework-solid": "0.48.3"
|
|
27
|
+
"@tanstack/cli": "0.48.2",
|
|
28
|
+
"@tanstack/create": "0.49.1"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
32
31
|
"@types/node": "^22.13.4",
|
package/src/index.ts
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
2
|
+
console.warn('\x1b[33m%s\x1b[0m', 'Warning: @tanstack/create-start is deprecated. Use "tanstack create" or "npx @tanstack/cli create" instead.')
|
|
3
|
+
console.warn('\x1b[33m%s\x1b[0m', ' See: https://tanstack.com/start/latest/docs/framework/react/quick-start\n')
|
|
3
4
|
|
|
4
|
-
import {
|
|
5
|
-
import { register as registerSolid } from '@tanstack/cta-framework-solid'
|
|
6
|
-
|
|
7
|
-
registerReactCra()
|
|
8
|
-
registerSolid()
|
|
5
|
+
import { cli } from '@tanstack/cli'
|
|
9
6
|
|
|
10
7
|
cli({
|
|
11
8
|
name: '@tanstack/create-start',
|
|
@@ -15,4 +12,5 @@ cli({
|
|
|
15
12
|
forcedAddOns: ['start'],
|
|
16
13
|
craCompatible: true,
|
|
17
14
|
showDeploymentOptions: true,
|
|
15
|
+
legacyAutoCreate: true,
|
|
18
16
|
})
|