@keystrokehq/cli 0.1.46 → 0.1.47
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/README.md +1 -1
- package/dist/index.mjs +6 -1
- package/dist/index.mjs.map +1 -1
- package/dist/templates/hello-world/README.md +1 -2
- package/dist/templates/hello-world/package.json +4 -1
- package/dist/templates/hello-world/tsconfig.json +14 -1
- package/package.json +3 -6
- package/dist/configs/tsconfig.base.json +0 -23
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ keystroke init --name my-app --dir ./my-app --yes --skip-install
|
|
|
96
96
|
| `--skip-install` | Don't run package manager install |
|
|
97
97
|
| `--pm` | Force npm, pnpm, yarn, or bun |
|
|
98
98
|
|
|
99
|
-
Scaffolded projects include a committed `tsconfig.json`
|
|
99
|
+
Scaffolded projects include a committed `tsconfig.json` and `package.json` scripts for `lint`, `typecheck`, and `test`. Lint config (oxlint) ships in the CLI bundle; projects declare `@types/node`, TypeScript, and vitest in devDependencies.
|
|
100
100
|
|
|
101
101
|
### `lint`
|
|
102
102
|
|
package/dist/index.mjs
CHANGED
|
@@ -7254,7 +7254,12 @@ function buildPlaygroundPackageJson(projectName, targetDir, monorepoRoot) {
|
|
|
7254
7254
|
"@keystrokehq/workflow": linkSpec(targetDir, join(monorepoRoot, "packages/workflow")),
|
|
7255
7255
|
zod: "latest"
|
|
7256
7256
|
},
|
|
7257
|
-
devDependencies: {
|
|
7257
|
+
devDependencies: {
|
|
7258
|
+
"@keystrokehq/cli": linkSpec(targetDir, join(monorepoRoot, "apps/cli")),
|
|
7259
|
+
"@types/node": "latest",
|
|
7260
|
+
typescript: "latest",
|
|
7261
|
+
vitest: "latest"
|
|
7262
|
+
}
|
|
7258
7263
|
}, null, 2)}\n`;
|
|
7259
7264
|
}
|
|
7260
7265
|
/** Patch hello-world scaffold for monorepo playground/ (link deps, no GitHub Packages). */
|