create-sprint 0.0.114 → 0.0.118

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/index.js CHANGED
@@ -78,7 +78,7 @@ export async function runCLI(args) {
78
78
  s2.start("Installing dependencies");
79
79
  try {
80
80
  await new Promise((resolve, reject) => {
81
- const child = spawn("npm", ["install"], {
81
+ const child = spawn("npm", ["install", "--include=dev"], {
82
82
  cwd: targetDir,
83
83
  stdio: "inherit",
84
84
  shell: true
@@ -43,8 +43,7 @@ temp/
43
43
  export function getDockerIgnore() {
44
44
  return `node_modules
45
45
  npm-debug.log
46
- .env
47
- .env.*
46
+ .env.development
48
47
  .git
49
48
  .gitignore
50
49
  README.md
@@ -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.136"
13
+ "sprint-es": "^0.0.138"
14
14
  };
15
15
  const devDeps = {
16
16
  "@types/node": "^22.0.0",
@@ -66,7 +66,7 @@ export function getTypeScriptPackageJson(name, telemetry, swagger, graphql) {
66
66
  ;
67
67
  export function getJavaScriptPackageJson(name, telemetry, swagger, graphql) {
68
68
  const deps = {
69
- "sprint-es": "^0.0.136"
69
+ "sprint-es": "^0.0.138"
70
70
  };
71
71
  if (telemetry === "sentry" || telemetry === "glitchtip")
72
72
  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.114",
3
+ "version": "0.0.118",
4
4
  "description": "Create a new Sprint API project",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -121,7 +121,7 @@ export async function runCLI(args: string[]) {
121
121
  s2.start("Installing dependencies");
122
122
  try {
123
123
  await new Promise<void>((resolve, reject) => {
124
- const child = spawn("npm", ["install"], {
124
+ const child = spawn("npm", ["install", "--include=dev"], {
125
125
  cwd: targetDir,
126
126
  stdio: "inherit",
127
127
  shell: true
@@ -43,8 +43,7 @@ temp/
43
43
  export function getDockerIgnore() {
44
44
  return `node_modules
45
45
  npm-debug.log
46
- .env
47
- .env.*
46
+ .env.development
48
47
  .git
49
48
  .gitignore
50
49
  README.md
@@ -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.136"
19
+ "sprint-es": "^0.0.138"
20
20
  };
21
21
 
22
22
  const devDeps: Record<string, string> = {
@@ -73,7 +73,7 @@ export function getTypeScriptPackageJson(name: string, telemetry: string, swagge
73
73
 
74
74
  export function getJavaScriptPackageJson(name: string, telemetry: string, swagger: boolean, graphql: boolean) {
75
75
  const deps: Record<string, string> = {
76
- "sprint-es": "^0.0.136"
76
+ "sprint-es": "^0.0.138"
77
77
  };
78
78
 
79
79
  if (telemetry === "sentry" || telemetry === "glitchtip") deps["@sentry/node"] = "^8.0.0";