@siteping/cli 0.4.0 → 0.4.2

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 CHANGED
@@ -1,11 +1,12 @@
1
1
  [![npm version](https://img.shields.io/npm/v/@siteping/cli)](https://www.npmjs.com/package/@siteping/cli)
2
+ [![Live Demo](https://img.shields.io/badge/demo-try%20it%20live-22c55e)](https://siteping.dev/demo)
2
3
  [![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue)](https://www.typescriptlang.org/)
3
4
 
4
5
  # @siteping/cli
5
6
 
6
- CLI tool to set up [Siteping](https://github.com/NeosiaNexus/siteping) in your project — scaffolds Prisma schema and API routes.
7
+ CLI tool to set up [Siteping](https://github.com/NeosiaNexus/SitePing) in your project — scaffolds Prisma schema and API routes.
7
8
 
8
- Part of the [@siteping](https://github.com/NeosiaNexus/siteping) monorepo.
9
+ Part of the [@siteping](https://github.com/NeosiaNexus/SitePing) monorepo — **[try the live demo](https://siteping.dev/demo)**.
9
10
 
10
11
  ## Usage
11
12
 
@@ -67,4 +68,4 @@ npx @siteping/cli doctor --url http://localhost:3000
67
68
 
68
69
  ## License
69
70
 
70
- [MIT](https://github.com/NeosiaNexus/siteping/blob/main/LICENSE)
71
+ [MIT](https://github.com/NeosiaNexus/SitePing/blob/main/LICENSE)
package/dist/index.js CHANGED
@@ -18798,7 +18798,7 @@ async function initCommand() {
18798
18798
  }
18799
18799
  } else {
18800
18800
  v2.warn("Aucun fichier schema.prisma trouv\xE9. Vous devrez ajouter les mod\xE8les manuellement.");
18801
- v2.info("Consultez la documentation : https://github.com/NeosiaNexus/siteping#prisma-schema-1");
18801
+ v2.info("Consultez la documentation : https://github.com/NeosiaNexus/SitePing#prisma-schema-1");
18802
18802
  }
18803
18803
  const shouldRoute = await me({
18804
18804
  message: "G\xE9n\xE9rer la route API Next.js App Router ?"
@@ -19038,7 +19038,7 @@ function syncCommand(options) {
19038
19038
  }
19039
19039
 
19040
19040
  // src/index.ts
19041
- var program2 = new Command().name("siteping").description("CLI pour configurer @siteping/*").version("0.4.0");
19041
+ var program2 = new Command().name("siteping").description("CLI pour configurer @siteping/*").version("0.4.2");
19042
19042
  program2.command("init").description("Configure le schema Prisma et la route API dans votre projet").action(initCommand).addHelpText("after", "\n Examples:\n $ siteping init\n $ siteping init --schema prisma/schema.prisma");
19043
19043
  program2.command("sync").description("Synchronise le schema Prisma (non-interactif, CI-friendly)").option("--schema <path>", "Chemin vers le fichier schema.prisma").action(syncCommand).addHelpText("after", "\n Examples:\n $ siteping sync\n $ siteping sync --schema prisma/schema.prisma");
19044
19044
  program2.command("status").description("Diagnostic complet de l'int\xE9gration Siteping").option("--schema <path>", "Chemin vers le fichier schema.prisma").action(statusCommand);