()
| 222 | } |
| 223 | |
| 224 | function buildPackageScripts(): Record<string, string> { |
| 225 | return { |
| 226 | dev: hyperframesScript("preview"), |
| 227 | check: |
| 228 | `${hyperframesScript("lint")} && ${hyperframesScript("validate")} && ` + |
| 229 | `${hyperframesScript("inspect")}`, |
| 230 | render: hyperframesScript("render"), |
| 231 | publish: hyperframesScript("publish"), |
| 232 | }; |
| 233 | } |
| 234 | |
| 235 | function writeDefaultPackageJson(destDir: string, projectName: string): void { |
| 236 | const packageJsonPath = resolve(destDir, "package.json"); |
no test coverage detected