@saasicat/cli 0.15.1 → 0.17.0
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/bin/saasicat.js +4 -3
- package/package.json +4 -4
package/bin/saasicat.js
CHANGED
|
@@ -104,8 +104,7 @@ async function cmdSchemaApply(args) {
|
|
|
104
104
|
const filter = parseFragmentFilter(args.fragments);
|
|
105
105
|
if (!filter && !args.all) {
|
|
106
106
|
console.error(
|
|
107
|
-
'✗ Entweder --fragments=01,02,03 oder --all übergeben. ' +
|
|
108
|
-
'Verfügbare Fragmente:',
|
|
107
|
+
'✗ Entweder --fragments=01,02,03 oder --all übergeben. ' + 'Verfügbare Fragmente:',
|
|
109
108
|
);
|
|
110
109
|
const files = (await readdir(fragmentsDir)).filter((f) => f.endsWith('.prisma')).sort();
|
|
111
110
|
for (const f of files) console.error(` ${f}`);
|
|
@@ -261,7 +260,9 @@ async function cmdSchemaMigrate(args) {
|
|
|
261
260
|
process.exit(1);
|
|
262
261
|
}
|
|
263
262
|
|
|
264
|
-
console.log(
|
|
263
|
+
console.log(
|
|
264
|
+
`→ Schritt 1/2: saasicat schema apply ${args['fragments'] ? `--fragments=${args['fragments']}` : '--all'}`,
|
|
265
|
+
);
|
|
265
266
|
await cmdSchemaApply({
|
|
266
267
|
...args,
|
|
267
268
|
all: args['fragments'] ? undefined : true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasicat/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"description": "CLI helpers for SaaS platform consumers. Provides CliContextService (identity, MFA, production confirm, audit tag).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"qrcode-terminal": "^0.12.0",
|
|
30
|
-
"@saasicat/nest": "^0.
|
|
31
|
-
"@saasicat/spec": "^0.
|
|
32
|
-
"@saasicat/types": "^0.
|
|
30
|
+
"@saasicat/nest": "^0.17.0",
|
|
31
|
+
"@saasicat/spec": "^0.17.0",
|
|
32
|
+
"@saasicat/types": "^0.17.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@nestjs/common": "^11.0.0",
|