@siteping/cli 0.4.0 → 0.4.1
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 +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
# @siteping/cli
|
|
5
5
|
|
|
6
|
-
CLI tool to set up [Siteping](https://github.com/NeosiaNexus/
|
|
6
|
+
CLI tool to set up [Siteping](https://github.com/NeosiaNexus/SitePing) in your project — scaffolds Prisma schema and API routes.
|
|
7
7
|
|
|
8
|
-
Part of the [@siteping](https://github.com/NeosiaNexus/
|
|
8
|
+
Part of the [@siteping](https://github.com/NeosiaNexus/SitePing) monorepo.
|
|
9
9
|
|
|
10
10
|
## Usage
|
|
11
11
|
|
|
@@ -67,4 +67,4 @@ npx @siteping/cli doctor --url http://localhost:3000
|
|
|
67
67
|
|
|
68
68
|
## License
|
|
69
69
|
|
|
70
|
-
[MIT](https://github.com/NeosiaNexus/
|
|
70
|
+
[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/
|
|
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.
|
|
19041
|
+
var program2 = new Command().name("siteping").description("CLI pour configurer @siteping/*").version("0.4.1");
|
|
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);
|