create-cedar-app 0.13.0 → 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.
Files changed (41) hide show
  1. package/dist/create-cedar-app.js +329 -829
  2. package/package.json +4 -5
  3. package/templates/esm-js/.yarn/install-state.gz +0 -0
  4. package/templates/esm-js/api/package.json +2 -2
  5. package/templates/esm-js/api/src/directives/requireAuth/requireAuth.js +1 -1
  6. package/templates/esm-js/api/src/functions/graphql.js +2 -2
  7. package/templates/esm-js/package.json +3 -3
  8. package/templates/esm-js/web/package.json +4 -4
  9. package/templates/esm-js/yarn.lock +500 -489
  10. package/templates/esm-ts/.yarn/install-state.gz +0 -0
  11. package/templates/esm-ts/api/package.json +2 -2
  12. package/templates/esm-ts/api/src/directives/requireAuth/requireAuth.ts +1 -1
  13. package/templates/esm-ts/api/src/functions/graphql.ts +2 -2
  14. package/templates/esm-ts/package.json +3 -3
  15. package/templates/esm-ts/web/package.json +4 -4
  16. package/templates/esm-ts/yarn.lock +500 -489
  17. package/templates/js/api/package.json +2 -2
  18. package/templates/js/api/src/directives/requireAuth/requireAuth.js +1 -1
  19. package/templates/js/api/src/functions/graphql.js +2 -2
  20. package/templates/js/package.json +3 -3
  21. package/templates/js/web/package.json +4 -4
  22. package/templates/js/yarn.lock +608 -597
  23. package/templates/ts/api/package.json +2 -2
  24. package/templates/ts/api/src/directives/requireAuth/requireAuth.ts +1 -1
  25. package/templates/ts/api/src/functions/graphql.ts +2 -2
  26. package/templates/ts/package.json +3 -3
  27. package/templates/ts/web/package.json +4 -4
  28. package/templates/ts/yarn.lock +608 -597
  29. package/dist/fonts/3d.json +0 -659
  30. package/dist/fonts/block.json +0 -482
  31. package/dist/fonts/chrome.json +0 -305
  32. package/dist/fonts/console.json +0 -73
  33. package/dist/fonts/grid.json +0 -482
  34. package/dist/fonts/huge.json +0 -777
  35. package/dist/fonts/pallet.json +0 -482
  36. package/dist/fonts/shade.json +0 -600
  37. package/dist/fonts/simple.json +0 -364
  38. package/dist/fonts/simple3d.json +0 -541
  39. package/dist/fonts/simpleBlock.json +0 -541
  40. package/dist/fonts/slick.json +0 -482
  41. 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.13.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.13.0",
30
- "@cedarjs/tui": "0.13.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": "4251fba49a4010610a95a428d5e046c37b7e7bc3"
58
+ "gitHead": "8076a8e3aebebc642553ff593a16cf834e92d59d"
60
59
  }
@@ -4,7 +4,7 @@
4
4
  "version": "0.0.0",
5
5
  "private": true,
6
6
  "dependencies": {
7
- "@cedarjs/api": "0.13.0",
8
- "@cedarjs/graphql-server": "0.13.0"
7
+ "@cedarjs/api": "0.14.0",
8
+ "@cedarjs/graphql-server": "0.14.0"
9
9
  }
10
10
  }
@@ -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.js'
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.js'
8
- import { logger } from 'src/lib/logger.js'
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.13.0",
12
- "@cedarjs/project-config": "0.13.0",
13
- "@cedarjs/testing": "0.13.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.13.0",
16
- "@cedarjs/router": "0.13.0",
17
- "@cedarjs/web": "0.13.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.13.0",
22
+ "@cedarjs/vite": "0.14.0",
23
23
  "@types/react": "^18.2.55",
24
24
  "@types/react-dom": "^18.2.19"
25
25
  }