create-cedar-app 5.0.3 → 5.0.4-next.167
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/database-overlays/neon-postgres/api/package.json +2 -2
- package/database-overlays/pglite/api/package.json +2 -2
- package/dist/create-cedar-app.js +344 -344
- package/package.json +5 -5
- package/templates/esm-js/api/package.json +9 -3
- package/templates/esm-js/package.json +6 -6
- package/templates/esm-js/web/package.json +9 -5
- package/templates/esm-js/web/src/App.jsx +2 -2
- package/templates/esm-js/yarn.lock +291 -301
- package/templates/esm-ts/api/package.json +9 -3
- package/templates/esm-ts/package.json +6 -6
- package/templates/esm-ts/web/package.json +9 -5
- package/templates/esm-ts/web/src/App.tsx +2 -2
- package/templates/esm-ts/yarn.lock +291 -301
- package/templates/js/api/package.json +3 -3
- package/templates/js/package.json +4 -4
- package/templates/js/web/package.json +4 -4
- package/templates/js/web/src/App.jsx +2 -2
- package/templates/js/yarn.lock +291 -301
- package/templates/overlays/cjs/npm/package.json +4 -4
- package/templates/overlays/cjs/pnpm/package.json +4 -4
- package/templates/overlays/cjs/pnpm/pnpm-workspace.yaml +2 -0
- package/templates/overlays/cjs/yarn/package.json +4 -4
- package/templates/overlays/esm/npm/package.json +8 -6
- package/templates/overlays/esm/pnpm/package.json +6 -5
- package/templates/overlays/esm/pnpm/pnpm-workspace.yaml +3 -0
- package/templates/overlays/esm/yarn/package.json +6 -6
- package/templates/ts/api/package.json +3 -3
- package/templates/ts/package.json +4 -4
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/web/src/App.tsx +2 -2
- package/templates/ts/yarn.lock +291 -301
- package/templates/esm-js/.yarn/install-state.gz +0 -0
- package/templates/esm-ts/.yarn/install-state.gz +0 -0
|
@@ -4,10 +4,16 @@
|
|
|
4
4
|
"version": "0.0.0",
|
|
5
5
|
"private": true,
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@cedarjs/api": "5.0.
|
|
8
|
-
"@cedarjs/graphql-server": "5.0.
|
|
7
|
+
"@cedarjs/api": "5.0.4-next.167",
|
|
8
|
+
"@cedarjs/graphql-server": "5.0.4-next.167",
|
|
9
9
|
"@prisma/adapter-better-sqlite3": "7.8.0",
|
|
10
10
|
"@prisma/client": "7.8.0",
|
|
11
|
-
"better-sqlite3": "12.
|
|
11
|
+
"better-sqlite3": "12.11.1",
|
|
12
|
+
"@cedarjs/context": "5.0.4-next.167",
|
|
13
|
+
"graphql-tag": "2.12.6"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@cedarjs/vite": "5.0.4-next.167",
|
|
17
|
+
"vitest": "4.1.10"
|
|
12
18
|
}
|
|
13
19
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"web"
|
|
7
7
|
],
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@cedarjs/core": "5.0.
|
|
10
|
-
"@cedarjs/eslint-config": "5.0.
|
|
11
|
-
"@cedarjs/project-config": "5.0.
|
|
12
|
-
"@cedarjs/testing": "5.0.
|
|
13
|
-
"vitest": "
|
|
9
|
+
"@cedarjs/core": "5.0.4-next.167",
|
|
10
|
+
"@cedarjs/eslint-config": "5.0.4-next.167",
|
|
11
|
+
"@cedarjs/project-config": "5.0.4-next.167",
|
|
12
|
+
"@cedarjs/testing": "5.0.4-next.167",
|
|
13
|
+
"vitest": "4.1.10"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
16
|
"node": "=24.x"
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"packageManager": "yarn@4.14.1",
|
|
19
19
|
"resolutions": {
|
|
20
20
|
"react-is": "19.2.3",
|
|
21
|
-
"vite": "7.3.
|
|
21
|
+
"vite": "7.3.6"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -12,15 +12,19 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "5.0.
|
|
16
|
-
"@cedarjs/router": "5.0.
|
|
17
|
-
"@cedarjs/web": "5.0.
|
|
15
|
+
"@cedarjs/forms": "5.0.4-next.167",
|
|
16
|
+
"@cedarjs/router": "5.0.4-next.167",
|
|
17
|
+
"@cedarjs/web": "5.0.4-next.167",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "5.0.
|
|
22
|
+
"@cedarjs/vite": "5.0.4-next.167",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
|
-
"@types/react-dom": "^18.2.19"
|
|
24
|
+
"@types/react-dom": "^18.2.19",
|
|
25
|
+
"@cedarjs/testing": "5.0.4-next.167",
|
|
26
|
+
"@testing-library/jest-dom": "6.9.1",
|
|
27
|
+
"@testing-library/react": "16.3.2",
|
|
28
|
+
"vite": "7.3.6"
|
|
25
29
|
}
|
|
26
30
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ReactNode } from 'react'
|
|
2
2
|
|
|
3
3
|
import { FatalErrorBoundary, RedwoodProvider } from '@cedarjs/web'
|
|
4
|
-
import {
|
|
4
|
+
import { CedarApolloProvider } from '@cedarjs/web/apollo/CedarApolloProvider'
|
|
5
5
|
|
|
6
6
|
import FatalErrorPage from 'src/pages/FatalErrorPage'
|
|
7
7
|
|
|
@@ -14,7 +14,7 @@ interface AppProps {
|
|
|
14
14
|
const App = ({ children }: AppProps) => (
|
|
15
15
|
<FatalErrorBoundary page={FatalErrorPage}>
|
|
16
16
|
<RedwoodProvider titleTemplate="%PageTitle | %AppTitle">
|
|
17
|
-
<
|
|
17
|
+
<CedarApolloProvider>{children}</CedarApolloProvider>
|
|
18
18
|
</RedwoodProvider>
|
|
19
19
|
</FatalErrorBoundary>
|
|
20
20
|
)
|