create-start-app 0.46.2 → 0.48.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.
package/CHANGELOG.md ADDED
@@ -0,0 +1,29 @@
1
+ # create-start-app
2
+
3
+ ## 0.48.0
4
+
5
+ ### Minor Changes
6
+
7
+ - no will prompt about overriding a directory that has contents ([#289](https://github.com/TanStack/create-tsrouter-app/pull/289))
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`3087532`](https://github.com/TanStack/create-tsrouter-app/commit/308753249af11bf5c9e374789e973a934c753520)]:
12
+ - @tanstack/cta-cli@0.48.0
13
+ - @tanstack/cta-framework-react-cra@0.48.0
14
+ - @tanstack/cta-framework-solid@0.48.0
15
+
16
+ ## 0.47.0
17
+
18
+ ### Minor Changes
19
+
20
+ - Smakll content fixes ([`7647683`](https://github.com/TanStack/create-tsrouter-app/commit/76476838fc427d71535881b959530307ca4664a2))
21
+
22
+ - allowing for no tailwind ([#151](https://github.com/TanStack/create-tsrouter-app/pull/151))
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies [[`7647683`](https://github.com/TanStack/create-tsrouter-app/commit/76476838fc427d71535881b959530307ca4664a2), [`f1f58fe`](https://github.com/TanStack/create-tsrouter-app/commit/f1f58feed7d7df1e0c5e0fc4dd3af02e11df09e5)]:
27
+ - @tanstack/cta-framework-react-cra@0.47.0
28
+ - @tanstack/cta-framework-solid@0.47.0
29
+ - @tanstack/cta-cli@0.47.0
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { cli } from '@tanstack/cta-cli';
3
- import { register as registerReactCra } from '@tanstack/cta-framework-react-cra';
4
- import { register as registerSolid } from '@tanstack/cta-framework-solid';
3
+ import { createFrameworkDefinition as createReactCraFrameworkDefinitionInitalizer, register as registerReactCra, } from '@tanstack/cta-framework-react-cra';
4
+ import { createFrameworkDefinition as createSolidFrameworkDefinitionInitalizer, register as registerSolid, } from '@tanstack/cta-framework-solid';
5
5
  registerReactCra();
6
6
  registerSolid();
7
7
  cli({
@@ -12,4 +12,8 @@ cli({
12
12
  showDeploymentOptions: true,
13
13
  forcedDeployment: 'nitro',
14
14
  craCompatible: true,
15
+ frameworkDefinitionInitializers: [
16
+ createReactCraFrameworkDefinitionInitalizer,
17
+ createSolidFrameworkDefinitionInitalizer,
18
+ ],
15
19
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-start-app",
3
- "version": "0.46.2",
3
+ "version": "0.48.0",
4
4
  "description": "Tanstack Start Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -24,9 +24,9 @@
24
24
  "author": "Jack Herrington <jherr@pobox.com>",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tanstack/cta-cli": "0.46.2",
28
- "@tanstack/cta-framework-solid": "0.46.2",
29
- "@tanstack/cta-framework-react-cra": "0.46.2"
27
+ "@tanstack/cta-cli": "0.48.0",
28
+ "@tanstack/cta-framework-react-cra": "0.48.0",
29
+ "@tanstack/cta-framework-solid": "0.48.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/node": "^22.13.4",
package/src/index.ts CHANGED
@@ -1,8 +1,14 @@
1
1
  #!/usr/bin/env node
2
2
  import { cli } from '@tanstack/cta-cli'
3
3
 
4
- import { register as registerReactCra } from '@tanstack/cta-framework-react-cra'
5
- import { register as registerSolid } from '@tanstack/cta-framework-solid'
4
+ import {
5
+ createFrameworkDefinition as createReactCraFrameworkDefinitionInitalizer,
6
+ register as registerReactCra,
7
+ } from '@tanstack/cta-framework-react-cra'
8
+ import {
9
+ createFrameworkDefinition as createSolidFrameworkDefinitionInitalizer,
10
+ register as registerSolid,
11
+ } from '@tanstack/cta-framework-solid'
6
12
 
7
13
  registerReactCra()
8
14
  registerSolid()
@@ -15,4 +21,8 @@ cli({
15
21
  showDeploymentOptions: true,
16
22
  forcedDeployment: 'nitro',
17
23
  craCompatible: true,
24
+ frameworkDefinitionInitializers: [
25
+ createReactCraFrameworkDefinitionInitalizer,
26
+ createSolidFrameworkDefinitionInitalizer,
27
+ ],
18
28
  })