@tanstack/cta-framework-react-cra 0.15.6 → 0.15.8
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/add-ons/sentry/info.json +1 -1
- package/dist/index.js +3 -3
- package/package.json +2 -2
- package/src/index.ts +3 -3
package/add-ons/sentry/info.json
CHANGED
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ export function createFrameworkDefinition() {
|
|
|
11
11
|
const { files, basePackageJSON, optionalPackages } = scanProjectDirectory(join(baseDirectory, 'project'), join(baseDirectory, 'project/base'));
|
|
12
12
|
return {
|
|
13
13
|
id: 'react-cra',
|
|
14
|
-
name: '
|
|
14
|
+
name: 'React',
|
|
15
15
|
description: 'Templates for React CRA',
|
|
16
16
|
version: '0.1.0',
|
|
17
17
|
base: files,
|
|
@@ -21,12 +21,12 @@ export function createFrameworkDefinition() {
|
|
|
21
21
|
supportedModes: {
|
|
22
22
|
'code-router': {
|
|
23
23
|
displayName: 'Code Router',
|
|
24
|
-
description: 'TanStack Router using code to define
|
|
24
|
+
description: 'TanStack Router using code to define routes',
|
|
25
25
|
forceTypescript: false,
|
|
26
26
|
},
|
|
27
27
|
'file-router': {
|
|
28
28
|
displayName: 'File Router',
|
|
29
|
-
description: 'TanStack Router using files to define
|
|
29
|
+
description: 'TanStack Router using files to define routes',
|
|
30
30
|
forceTypescript: true,
|
|
31
31
|
},
|
|
32
32
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/cta-framework-react-cra",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.8",
|
|
4
4
|
"description": "CTA Framework for React (Create React App)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Jack Herrington <jherr@pobox.com>",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tanstack/cta-engine": "0.15.
|
|
26
|
+
"@tanstack/cta-engine": "0.15.7"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/node": "^22.13.4",
|
package/src/index.ts
CHANGED
|
@@ -24,7 +24,7 @@ export function createFrameworkDefinition(): FrameworkDefinition {
|
|
|
24
24
|
|
|
25
25
|
return {
|
|
26
26
|
id: 'react-cra',
|
|
27
|
-
name: '
|
|
27
|
+
name: 'React',
|
|
28
28
|
description: 'Templates for React CRA',
|
|
29
29
|
version: '0.1.0',
|
|
30
30
|
base: files,
|
|
@@ -34,12 +34,12 @@ export function createFrameworkDefinition(): FrameworkDefinition {
|
|
|
34
34
|
supportedModes: {
|
|
35
35
|
'code-router': {
|
|
36
36
|
displayName: 'Code Router',
|
|
37
|
-
description: 'TanStack Router using code to define
|
|
37
|
+
description: 'TanStack Router using code to define routes',
|
|
38
38
|
forceTypescript: false,
|
|
39
39
|
},
|
|
40
40
|
'file-router': {
|
|
41
41
|
displayName: 'File Router',
|
|
42
|
-
description: 'TanStack Router using files to define
|
|
42
|
+
description: 'TanStack Router using files to define routes',
|
|
43
43
|
forceTypescript: true,
|
|
44
44
|
},
|
|
45
45
|
},
|