@igniter-js/cli 0.2.64 → 0.2.66
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10107,7 +10107,7 @@ async function runConcurrentProcesses(options) {
|
|
|
10107
10107
|
function createIgniterWatcherProcess(options) {
|
|
10108
10108
|
return {
|
|
10109
10109
|
name: "Igniter",
|
|
10110
|
-
command: `igniter watch${options.debug ? " --debug" : ""}`,
|
|
10110
|
+
command: `npx @igniter-js/cli watch${options.debug ? " --debug" : ""}`,
|
|
10111
10111
|
color: PROCESS_COLORS.igniter,
|
|
10112
10112
|
cwd: options.cwd,
|
|
10113
10113
|
env: {
|
|
@@ -20156,7 +20156,7 @@ program.command("dev").description("Start development mode with framework and Ig
|
|
|
20156
20156
|
const docsFlags = ` --docs --docs-output ${options.docsOutput}`;
|
|
20157
20157
|
processes.push({
|
|
20158
20158
|
name: "Igniter",
|
|
20159
|
-
command: `igniter generate schema --watch --framework ${framework} --output ${options.output}${docsFlags}`,
|
|
20159
|
+
command: `npx @igniter-js/cli@latest generate schema --watch --framework ${framework} --output ${options.output}${docsFlags}`,
|
|
20160
20160
|
color: "blue",
|
|
20161
20161
|
cwd: process.cwd()
|
|
20162
20162
|
});
|