create-sprint 0.0.130 → 0.0.134
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 +1 -1
- package/dist/templates/packageJson.js +2 -2
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/templates/packageJson.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -103,7 +103,7 @@ export async function runCLI(args) {
|
|
|
103
103
|
}
|
|
104
104
|
const cdCmd = config.projectName === "." ? "" : `cd ${config.projectName} && `;
|
|
105
105
|
p.note([
|
|
106
|
-
!installDeps ? `${cdCmd}npm install` : "",
|
|
106
|
+
!installDeps ? `${cdCmd}npm install --include=dev` : "",
|
|
107
107
|
`${cdCmd}npm run dev`
|
|
108
108
|
].filter(Boolean).join("\n"), "Next steps");
|
|
109
109
|
p.outro("Ready. Happy shipping.");
|
|
@@ -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.
|
|
13
|
+
"sprint-es": "^0.0.156"
|
|
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.
|
|
69
|
+
"sprint-es": "^0.0.156"
|
|
70
70
|
};
|
|
71
71
|
if (telemetry === "sentry" || telemetry === "glitchtip")
|
|
72
72
|
deps["@sentry/node"] = "^8.0.0";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -145,7 +145,7 @@ export async function runCLI(args: string[]) {
|
|
|
145
145
|
const cdCmd = config.projectName === "." ? "" : `cd ${config.projectName} && `;
|
|
146
146
|
p.note(
|
|
147
147
|
[
|
|
148
|
-
!installDeps ? `${cdCmd}npm install` : "",
|
|
148
|
+
!installDeps ? `${cdCmd}npm install --include=dev` : "",
|
|
149
149
|
`${cdCmd}npm run dev`
|
|
150
150
|
].filter(Boolean).join("\n"),
|
|
151
151
|
"Next steps"
|
|
@@ -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.
|
|
19
|
+
"sprint-es": "^0.0.156"
|
|
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.
|
|
76
|
+
"sprint-es": "^0.0.156"
|
|
77
77
|
};
|
|
78
78
|
|
|
79
79
|
if (telemetry === "sentry" || telemetry === "glitchtip") deps["@sentry/node"] = "^8.0.0";
|