silgi 0.29.5 → 0.29.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/dev.mjs +1 -1
- package/dist/cli/index.mjs +1 -1
- package/dist/cli/install.mjs +1 -1
- package/dist/cli/prepare.mjs +1 -1
- package/package.json +1 -1
package/dist/cli/dev.mjs
CHANGED
|
@@ -71,7 +71,7 @@ const dev = defineCommand({
|
|
|
71
71
|
},
|
|
72
72
|
async run() {
|
|
73
73
|
await runCommand(prepare, {
|
|
74
|
-
rawArgs: ["--
|
|
74
|
+
rawArgs: ["--commandType", "dev", "--dev", "true"]
|
|
75
75
|
});
|
|
76
76
|
const silgi = useSilgiCLI();
|
|
77
77
|
silgi.options.watchOptions.ignored ??= [];
|
package/dist/cli/index.mjs
CHANGED
package/dist/cli/install.mjs
CHANGED
package/dist/cli/prepare.mjs
CHANGED
|
@@ -114,7 +114,7 @@ const run = defineCommand({
|
|
|
114
114
|
},
|
|
115
115
|
async run({ args }) {
|
|
116
116
|
const data = args.active ? await runCommand(prepare, {
|
|
117
|
-
rawArgs: ["--
|
|
117
|
+
rawArgs: ["--commandType", "run"]
|
|
118
118
|
}) : void 0;
|
|
119
119
|
const silgi = useSilgiCLI$1();
|
|
120
120
|
const commands = await scanCommands();
|