create-cedar-app 0.1.1 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cedar-app",
3
- "version": "0.1.1",
3
+ "version": "0.2.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
@@ -26,8 +26,8 @@
26
26
  "devDependencies": {
27
27
  "@babel/core": "^7.26.10",
28
28
  "@babel/plugin-transform-typescript": "^7.26.8",
29
- "@cedarjs/framework-tools": "0.1.1",
30
- "@cedarjs/tui": "0.1.1",
29
+ "@cedarjs/framework-tools": "0.2.0",
30
+ "@cedarjs/tui": "0.2.0",
31
31
  "@opentelemetry/api": "1.8.0",
32
32
  "@opentelemetry/exporter-trace-otlp-http": "0.49.1",
33
33
  "@opentelemetry/resources": "1.22.0",
@@ -43,15 +43,15 @@
43
43
  "klaw-sync": "6.0.0",
44
44
  "semver": "7.6.3",
45
45
  "systeminformation": "5.23.8",
46
- "terminal-link": "2.1.1",
47
- "tsx": "4.19.3",
46
+ "termi-link": "1.1.0",
47
+ "tsx": "4.19.4",
48
48
  "untildify": "4.0.0",
49
49
  "uuid": "10.0.0",
50
- "vitest": "2.1.9",
50
+ "vitest": "3.2.4",
51
51
  "yargs": "17.7.2"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public"
55
55
  },
56
- "gitHead": "58bbece91fdda8a82c8987a6ce4c02488a27e88b"
56
+ "gitHead": "d8555b965ee6ae0fc077427a7293bc3eed83163f"
57
57
  }
@@ -3,7 +3,7 @@
3
3
  "version": "0.0.0",
4
4
  "private": true,
5
5
  "dependencies": {
6
- "@cedarjs/api": "0.1.1",
7
- "@cedarjs/graphql-server": "0.1.1"
6
+ "@cedarjs/api": "0.2.0",
7
+ "@cedarjs/graphql-server": "0.2.0"
8
8
  }
9
9
  }
@@ -7,8 +7,9 @@
7
7
  ]
8
8
  },
9
9
  "devDependencies": {
10
- "@cedarjs/core": "0.1.1",
11
- "@cedarjs/project-config": "0.1.1"
10
+ "@cedarjs/core": "0.2.0",
11
+ "@cedarjs/project-config": "0.2.0",
12
+ "@cedarjs/testing": "0.2.0"
12
13
  },
13
14
  "eslintConfig": {
14
15
  "extends": "@cedarjs/eslint-config",
@@ -6,7 +6,7 @@
6
6
  # https://redwoodjs.com/docs/app-configuration-redwood-toml
7
7
 
8
8
  [web]
9
- title = "Redwood App"
9
+ title = "Cedar App"
10
10
  port = 8910
11
11
  apiUrl = "/.redwood/functions"
12
12
  includeEnvironmentVariables = [
@@ -11,14 +11,14 @@
11
11
  ]
12
12
  },
13
13
  "dependencies": {
14
- "@cedarjs/forms": "0.1.1",
15
- "@cedarjs/router": "0.1.1",
16
- "@cedarjs/web": "0.1.1",
14
+ "@cedarjs/forms": "0.2.0",
15
+ "@cedarjs/router": "0.2.0",
16
+ "@cedarjs/web": "0.2.0",
17
17
  "react": "18.3.1",
18
18
  "react-dom": "18.3.1"
19
19
  },
20
20
  "devDependencies": {
21
- "@cedarjs/vite": "0.1.1",
21
+ "@cedarjs/vite": "0.2.0",
22
22
  "@types/react": "^18.2.55",
23
23
  "@types/react-dom": "^18.2.19"
24
24
  }
Binary file
@@ -8,8 +8,6 @@ import redwood from '@cedarjs/vite'
8
8
  // See: https://vitejs.dev/config/server-options.html#server-host.
9
9
  dns.setDefaultResultOrder('verbatim')
10
10
 
11
- const viteConfig = {
11
+ export default defineConfig({
12
12
  plugins: [redwood()],
13
- }
14
-
15
- export default defineConfig(viteConfig)
13
+ })