@nextsparkjs/cli 0.1.0-beta.50 → 0.1.0-beta.51

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -0
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -81,6 +81,7 @@ async function devCommand(options) {
81
81
  const devProcess = spawn("npx", ["next", "dev", "-p", options.port], {
82
82
  cwd: projectRoot,
83
83
  stdio: "inherit",
84
+ shell: true,
84
85
  env: {
85
86
  ...process.env,
86
87
  NEXTSPARK_CORE_DIR: coreDir
@@ -180,6 +181,7 @@ async function buildCommand(options) {
180
181
  const buildProcess = spawn2("npx", ["next", "build"], {
181
182
  cwd: projectRoot,
182
183
  stdio: "inherit",
184
+ shell: true,
183
185
  env: {
184
186
  ...projectEnv,
185
187
  ...process.env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/cli",
3
- "version": "0.1.0-beta.50",
3
+ "version": "0.1.0-beta.51",
4
4
  "description": "NextSpark CLI - Complete development toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,7 +14,7 @@
14
14
  ],
15
15
  "dependencies": {
16
16
  "@inquirer/prompts": "^7.2.0",
17
- "@nextsparkjs/core": "^0.1.0-beta.50",
17
+ "@nextsparkjs/core": "^0.1.0-beta.51",
18
18
  "chalk": "^5.3.0",
19
19
  "commander": "^12.0.0",
20
20
  "dotenv": "^17.2.2",