create-cedar-app 2.4.2-next.0 → 2.5.0-rc.146
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/dist/create-cedar-app.js +460 -461
- package/package.json +11 -11
- package/templates/esm-js/api/jsconfig.json +3 -3
- package/templates/esm-js/api/package.json +2 -2
- package/templates/esm-js/{redwood.toml → cedar.toml} +5 -2
- package/templates/esm-js/package.json +4 -3
- package/templates/esm-js/scripts/jsconfig.json +3 -3
- package/templates/esm-js/web/package.json +4 -4
- package/templates/esm-js/yarn.lock +1231 -1185
- package/templates/esm-ts/api/package.json +2 -2
- package/templates/esm-ts/api/tsconfig.json +3 -3
- package/templates/esm-ts/{redwood.toml → cedar.toml} +5 -2
- package/templates/esm-ts/package.json +4 -3
- package/templates/esm-ts/scripts/tsconfig.json +3 -3
- package/templates/esm-ts/web/package.json +4 -4
- package/templates/esm-ts/yarn.lock +1231 -1185
- package/templates/js/api/jsconfig.json +3 -3
- package/templates/js/api/package.json +2 -2
- package/templates/js/{redwood.toml → cedar.toml} +5 -2
- package/templates/js/package.json +4 -3
- package/templates/js/scripts/jsconfig.json +3 -3
- package/templates/js/web/package.json +4 -4
- package/templates/js/yarn.lock +1231 -1185
- package/templates/ts/api/package.json +2 -2
- package/templates/ts/api/tsconfig.json +3 -3
- package/templates/ts/{redwood.toml → cedar.toml} +5 -2
- package/templates/ts/package.json +4 -3
- package/templates/ts/scripts/tsconfig.json +3 -3
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/yarn.lock +1231 -1185
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"noEmit": true,
|
|
4
4
|
"allowJs": true,
|
|
5
5
|
"esModuleInterop": true,
|
|
6
|
-
"target": "
|
|
7
|
-
"module": "
|
|
8
|
-
"moduleResolution": "
|
|
6
|
+
"target": "es2023",
|
|
7
|
+
"module": "node20",
|
|
8
|
+
"moduleResolution": "node16",
|
|
9
9
|
"skipLibCheck": false,
|
|
10
10
|
"rootDirs": ["./src", "../.redwood/types/mirror/api/src"],
|
|
11
11
|
"paths": {
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
#:schema https://raw.githubusercontent.com/cedarjs/cedar/main/packages/project-config/cedar-toml-schema-2.0.json
|
|
2
|
+
#:tombi format.disabled = true
|
|
3
|
+
|
|
1
4
|
# This file contains the configuration settings for your Cedar app.
|
|
2
5
|
# This file is also what makes your Cedar app a Cedar app.
|
|
3
6
|
# If you remove it and try to run `yarn cedar dev`, you'll get an error.
|
|
4
7
|
#
|
|
5
|
-
# For the full list of options, see the "App Configuration:
|
|
6
|
-
# https://cedarjs.com/docs/app-configuration-
|
|
8
|
+
# For the full list of options, see the "App Configuration: cedar.toml" doc:
|
|
9
|
+
# https://cedarjs.com/docs/app-configuration-cedar-toml
|
|
7
10
|
|
|
8
11
|
[web]
|
|
9
12
|
title = "Cedar App"
|
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "2.
|
|
10
|
-
"@cedarjs/
|
|
11
|
-
"@cedarjs/
|
|
9
|
+
"@cedarjs/core": "2.5.0-rc.146",
|
|
10
|
+
"@cedarjs/eslint-config": "2.5.0-rc.146",
|
|
11
|
+
"@cedarjs/project-config": "2.5.0-rc.146",
|
|
12
|
+
"@cedarjs/testing": "2.5.0-rc.146",
|
|
12
13
|
"vitest": "3.2.4"
|
|
13
14
|
},
|
|
14
15
|
"engines": {
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"noEmit": true,
|
|
4
4
|
"allowJs": true,
|
|
5
5
|
"esModuleInterop": true,
|
|
6
|
-
"target": "
|
|
7
|
-
"module": "
|
|
8
|
-
"moduleResolution": "
|
|
6
|
+
"target": "es2023",
|
|
7
|
+
"module": "node20",
|
|
8
|
+
"moduleResolution": "node16",
|
|
9
9
|
"paths": {
|
|
10
10
|
"$api/*": ["../api/*"],
|
|
11
11
|
"api/*": ["../api/*"],
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "2.
|
|
16
|
-
"@cedarjs/router": "2.
|
|
17
|
-
"@cedarjs/web": "2.
|
|
15
|
+
"@cedarjs/forms": "2.5.0-rc.146",
|
|
16
|
+
"@cedarjs/router": "2.5.0-rc.146",
|
|
17
|
+
"@cedarjs/web": "2.5.0-rc.146",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "2.
|
|
22
|
+
"@cedarjs/vite": "2.5.0-rc.146",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
24
|
"@types/react-dom": "^18.2.19"
|
|
25
25
|
}
|