create-sprint 0.0.98 → 0.0.100

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.
@@ -10,7 +10,7 @@ export function generateJWTKeys() {
10
10
  ;
11
11
  export function getTypeScriptPackageJson(name, telemetry, swagger, graphql) {
12
12
  const deps = {
13
- "sprint-es": "^0.0.89"
13
+ "sprint-es": "^0.0.90"
14
14
  };
15
15
  const devDeps = {
16
16
  "@types/node": "^22.0.0",
@@ -51,7 +51,7 @@ export function getTypeScriptPackageJson(name, telemetry, swagger, graphql) {
51
51
  ;
52
52
  export function getJavaScriptPackageJson(name, telemetry, swagger, graphql) {
53
53
  const deps = {
54
- "sprint-es": "^0.0.89"
54
+ "sprint-es": "^0.0.90"
55
55
  };
56
56
  if (telemetry === "sentry" || telemetry === "glitchtip")
57
57
  deps["@sentry/node"] = "^8.0.0";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sprint",
3
- "version": "0.0.98",
3
+ "version": "0.0.100",
4
4
  "description": "Create a new Sprint API project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@ export function generateJWTKeys(): JWTKeys {
16
16
 
17
17
  export function getTypeScriptPackageJson(name: string, telemetry: string, swagger: boolean, graphql: boolean) {
18
18
  const deps: Record<string, string> = {
19
- "sprint-es": "^0.0.89"
19
+ "sprint-es": "^0.0.90"
20
20
  };
21
21
 
22
22
  const devDeps: Record<string, string> = {
@@ -58,7 +58,7 @@ export function getTypeScriptPackageJson(name: string, telemetry: string, swagge
58
58
 
59
59
  export function getJavaScriptPackageJson(name: string, telemetry: string, swagger: boolean, graphql: boolean) {
60
60
  const deps: Record<string, string> = {
61
- "sprint-es": "^0.0.89"
61
+ "sprint-es": "^0.0.90"
62
62
  };
63
63
 
64
64
  if (telemetry === "sentry" || telemetry === "glitchtip") deps["@sentry/node"] = "^8.0.0";