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.
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 +501 -490
  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 +501 -490
  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 +609 -598
  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 +609 -598
  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
@@ -4,7 +4,7 @@
4
4
  "version": "0.0.0",
5
5
  "private": true,
6
6
  "dependencies": {
7
- "@cedarjs/api": "0.13.0-rc.48",
8
- "@cedarjs/graphql-server": "0.13.0-rc.48"
7
+ "@cedarjs/api": "0.14.0",
8
+ "@cedarjs/graphql-server": "0.14.0"
9
9
  }
10
10
  }
@@ -3,7 +3,7 @@ import { gql } from 'graphql-tag'
3
3
  import type { ValidatorDirectiveFunc } from '@cedarjs/graphql-server'
4
4
  import { createValidatorDirective } from '@cedarjs/graphql-server'
5
5
 
6
- import { requireAuth as applicationRequireAuth } from 'src/lib/auth.js'
6
+ import { requireAuth as applicationRequireAuth } from 'src/lib/auth'
7
7
 
8
8
  export const schema = gql`
9
9
  """
@@ -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-rc.48",
12
- "@cedarjs/project-config": "0.13.0-rc.48",
13
- "@cedarjs/testing": "0.13.0-rc.48",
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-rc.48",
16
- "@cedarjs/router": "0.13.0-rc.48",
17
- "@cedarjs/web": "0.13.0-rc.48",
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-rc.48",
22
+ "@cedarjs/vite": "0.14.0",
23
23
  "@types/react": "^18.2.55",
24
24
  "@types/react-dom": "^18.2.19"
25
25
  }