@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.mjs CHANGED
@@ -10118,7 +10118,7 @@ async function runConcurrentProcesses(options) {
10118
10118
  function createIgniterWatcherProcess(options) {
10119
10119
  return {
10120
10120
  name: "Igniter",
10121
- command: `igniter watch${options.debug ? " --debug" : ""}`,
10121
+ command: `npx @igniter-js/cli watch${options.debug ? " --debug" : ""}`,
10122
10122
  color: PROCESS_COLORS.igniter,
10123
10123
  cwd: options.cwd,
10124
10124
  env: {
@@ -20160,7 +20160,7 @@ program.command("dev").description("Start development mode with framework and Ig
20160
20160
  const docsFlags = ` --docs --docs-output ${options.docsOutput}`;
20161
20161
  processes.push({
20162
20162
  name: "Igniter",
20163
- command: `igniter generate schema --watch --framework ${framework} --output ${options.output}${docsFlags}`,
20163
+ command: `npx @igniter-js/cli@latest generate schema --watch --framework ${framework} --output ${options.output}${docsFlags}`,
20164
20164
  color: "blue",
20165
20165
  cwd: process.cwd()
20166
20166
  });