create-sprint 0.0.5 → 0.0.6

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/cli.js CHANGED
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/env node
2
- #!/usr/bin/env node
3
- import { runCLI } from "./index";
2
+ import { runCLI } from "./index.js";
4
3
  const args = process.argv.slice(2);
5
4
  if (args.includes("--help") || args.includes("-h")) {
6
5
  console.log("\nšŸš€ Sprint - Quickly API Framework\n");
package/dist/index.js CHANGED
@@ -3,8 +3,8 @@ import { existsSync } from "fs";
3
3
  import { mkdir, writeFile } from "fs/promises";
4
4
  import { join } from "path";
5
5
  import { input, select, confirm } from "@inquirer/prompts";
6
- import { validateProjectName } from "./validators";
7
- import { getTypeScriptPackageJson, getJavaScriptPackageJson, getTsConfig, getViteConfig, getMainFile, getHomeRoute, getDockerfile, getDockerCompose, getGitignore, getDockerIgnore, getSprintConfigFile, getEnvExample, getEnvDevelopment, getEnvProduction } from "./generators";
6
+ import { validateProjectName } from "./validators.js";
7
+ import { getTypeScriptPackageJson, getJavaScriptPackageJson, getTsConfig, getViteConfig, getMainFile, getHomeRoute, getDockerfile, getDockerCompose, getGitignore, getDockerIgnore, getSprintConfigFile, getEnvExample, getEnvDevelopment, getEnvProduction } from "./generators.js";
8
8
  export async function runCLI(args) {
9
9
  const options = parseArgs(args);
10
10
  console.log("\nšŸš€ Welcome to Sprint - Quickly API Framework\n");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-sprint",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Create a new Sprint API project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "src/**/*"
13
13
  ],
14
14
  "scripts": {
15
- "build": "tsc && node -e \"const fs=require('fs');const p='dist/cli.js';const c=fs.readFileSync(p,'utf8');fs.writeFileSync(p,'#!/usr/bin/env node\\n'+c)\"",
15
+ "build": "tsc && node -e \"const fs=require('fs');const p='dist/cli.js';let c=fs.readFileSync(p,'utf8');if(!c.startsWith('#!')){fs.writeFileSync(p,'#!/usr/bin/env node\\n'+c)}\"",
16
16
  "prepublishOnly": "npm run build",
17
17
  "start": "node dist/cli.js"
18
18
  },
package/src/cli.ts CHANGED
@@ -1,6 +1,5 @@
1
- #!/usr/bin/env node
2
1
 
3
- import { runCLI } from "./index";
2
+ import { runCLI } from "./index.js";
4
3
 
5
4
  const args = process.argv.slice(2);
6
5
 
package/src/index.ts CHANGED
@@ -3,8 +3,8 @@ import { existsSync } from "fs";
3
3
  import { mkdir, writeFile } from "fs/promises";
4
4
  import { join } from "path";
5
5
  import { input, select, confirm } from "@inquirer/prompts";
6
- import { validateProjectName } from "./validators";
7
- import { getTypeScriptPackageJson, getJavaScriptPackageJson, getTsConfig, getViteConfig, getMainFile, getHomeRoute, getDockerfile, getDockerCompose, getGitignore, getDockerIgnore, getSprintConfigFile, getEnvExample, getEnvDevelopment, getEnvProduction } from "./generators";
6
+ import { validateProjectName } from "./validators.js";
7
+ import { getTypeScriptPackageJson, getJavaScriptPackageJson, getTsConfig, getViteConfig, getMainFile, getHomeRoute, getDockerfile, getDockerCompose, getGitignore, getDockerIgnore, getSprintConfigFile, getEnvExample, getEnvDevelopment, getEnvProduction } from "./generators.js";
8
8
 
9
9
  export interface CLIOptions {
10
10
  projectName?: string;