create-cedar-app 0.13.0-rc.48 → 0.14.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/dist/create-cedar-app.js +329 -829
- package/package.json +4 -5
- package/templates/esm-js/.yarn/install-state.gz +0 -0
- package/templates/esm-js/api/package.json +2 -2
- package/templates/esm-js/api/src/directives/requireAuth/requireAuth.js +1 -1
- package/templates/esm-js/api/src/functions/graphql.js +2 -2
- package/templates/esm-js/package.json +3 -3
- package/templates/esm-js/web/package.json +4 -4
- package/templates/esm-js/yarn.lock +501 -490
- package/templates/esm-ts/.yarn/install-state.gz +0 -0
- package/templates/esm-ts/api/package.json +2 -2
- package/templates/esm-ts/api/src/directives/requireAuth/requireAuth.ts +1 -1
- package/templates/esm-ts/api/src/functions/graphql.ts +2 -2
- package/templates/esm-ts/package.json +3 -3
- package/templates/esm-ts/web/package.json +4 -4
- package/templates/esm-ts/yarn.lock +501 -490
- package/templates/js/api/package.json +2 -2
- package/templates/js/api/src/directives/requireAuth/requireAuth.js +1 -1
- package/templates/js/api/src/functions/graphql.js +2 -2
- package/templates/js/package.json +3 -3
- package/templates/js/web/package.json +4 -4
- package/templates/js/yarn.lock +609 -598
- package/templates/ts/api/package.json +2 -2
- package/templates/ts/api/src/directives/requireAuth/requireAuth.ts +1 -1
- package/templates/ts/api/src/functions/graphql.ts +2 -2
- package/templates/ts/package.json +3 -3
- package/templates/ts/web/package.json +4 -4
- package/templates/ts/yarn.lock +609 -598
- package/dist/fonts/3d.json +0 -659
- package/dist/fonts/block.json +0 -482
- package/dist/fonts/chrome.json +0 -305
- package/dist/fonts/console.json +0 -73
- package/dist/fonts/grid.json +0 -482
- package/dist/fonts/huge.json +0 -777
- package/dist/fonts/pallet.json +0 -482
- package/dist/fonts/shade.json +0 -600
- package/dist/fonts/simple.json +0 -364
- package/dist/fonts/simple3d.json +0 -541
- package/dist/fonts/simpleBlock.json +0 -541
- package/dist/fonts/slick.json +0 -482
- package/dist/fonts/tiny.json +0 -246
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cedar-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.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.
|
|
30
|
-
"@cedarjs/tui": "0.
|
|
29
|
+
"@cedarjs/framework-tools": "0.14.0",
|
|
30
|
+
"@cedarjs/tui": "0.14.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",
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
"@types/babel__core": "7.20.5",
|
|
37
37
|
"@types/klaw-sync": "6.0.5",
|
|
38
38
|
"ansis": "4.1.0",
|
|
39
|
-
"cfonts": "3.3.1",
|
|
40
39
|
"check-node-version": "4.2.1",
|
|
41
40
|
"ci-info": "4.0.0",
|
|
42
41
|
"envinfo": "7.14.0",
|
|
@@ -56,5 +55,5 @@
|
|
|
56
55
|
"publishConfig": {
|
|
57
56
|
"access": "public"
|
|
58
57
|
},
|
|
59
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "8076a8e3aebebc642553ff593a16cf834e92d59d"
|
|
60
59
|
}
|
|
Binary file
|
|
@@ -2,7 +2,7 @@ import { gql } from 'graphql-tag'
|
|
|
2
2
|
|
|
3
3
|
import { createValidatorDirective } from '@cedarjs/graphql-server'
|
|
4
4
|
|
|
5
|
-
import { requireAuth as applicationRequireAuth } from 'src/lib/auth
|
|
5
|
+
import { requireAuth as applicationRequireAuth } from 'src/lib/auth'
|
|
6
6
|
|
|
7
7
|
export const schema = gql`
|
|
8
8
|
"""
|
|
@@ -4,8 +4,8 @@ import directives from 'src/directives/**/*.{js,ts}'
|
|
|
4
4
|
import sdls from 'src/graphql/**/*.sdl.{js,ts}'
|
|
5
5
|
import services from 'src/services/**/*.{js,ts}'
|
|
6
6
|
|
|
7
|
-
import { db } from 'src/lib/db
|
|
8
|
-
import { logger } from 'src/lib/logger
|
|
7
|
+
import { db } from 'src/lib/db'
|
|
8
|
+
import { logger } from 'src/lib/logger'
|
|
9
9
|
|
|
10
10
|
export const handler = createGraphQLHandler({
|
|
11
11
|
loggerConfig: { logger, options: {} },
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
]
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@cedarjs/core": "0.
|
|
12
|
-
"@cedarjs/project-config": "0.
|
|
13
|
-
"@cedarjs/testing": "0.
|
|
11
|
+
"@cedarjs/core": "0.14.0",
|
|
12
|
+
"@cedarjs/project-config": "0.14.0",
|
|
13
|
+
"@cedarjs/testing": "0.14.0",
|
|
14
14
|
"vitest": "3.2.4"
|
|
15
15
|
},
|
|
16
16
|
"eslintConfig": {
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@cedarjs/forms": "0.
|
|
16
|
-
"@cedarjs/router": "0.
|
|
17
|
-
"@cedarjs/web": "0.
|
|
15
|
+
"@cedarjs/forms": "0.14.0",
|
|
16
|
+
"@cedarjs/router": "0.14.0",
|
|
17
|
+
"@cedarjs/web": "0.14.0",
|
|
18
18
|
"react": "18.3.1",
|
|
19
19
|
"react-dom": "18.3.1"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@cedarjs/vite": "0.
|
|
22
|
+
"@cedarjs/vite": "0.14.0",
|
|
23
23
|
"@types/react": "^18.2.55",
|
|
24
24
|
"@types/react-dom": "^18.2.19"
|
|
25
25
|
}
|