@siteping/cli 0.4.1 → 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
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
 
package/dist/index.js CHANGED
@@ -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.1");
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);