@cedarjs/cli 6.0.0-canary.2671 → 6.0.0-canary.2673

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.
@@ -181,10 +181,14 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
181
181
  "@cedarjs/vite/bins/cedar-vite-build.mjs"
182
182
  );
183
183
  await execa(
184
- `node ${buildBinPath} --webDir="${cedarPaths.web.base}" --verbose=${verbose}`,
184
+ "node",
185
+ [
186
+ buildBinPath,
187
+ `--webDir=${cedarPaths.web.base}`,
188
+ `--verbose=${verbose}`
189
+ ],
185
190
  {
186
191
  stdio: verbose ? "inherit" : "pipe",
187
- shell: true,
188
192
  cwd: cedarPaths.web.base
189
193
  }
190
194
  );
@@ -223,12 +227,16 @@ Run ` + c.info(formatCedarCommand(["build"])) + " (without specifying a workspac
223
227
  "@cedarjs/vite/bins/cedar-vite-build.mjs"
224
228
  );
225
229
  await execa(
226
- `node ${buildBinPath} --webDir="${cedarPaths.web.base}" --verbose=${verbose}`,
230
+ "node",
231
+ [
232
+ buildBinPath,
233
+ `--webDir=${cedarPaths.web.base}`,
234
+ `--verbose=${verbose}`
235
+ ],
227
236
  {
228
237
  stdio: verbose ? "inherit" : "pipe",
229
- shell: true,
230
- // `cwd` is needed for the package manager (e.g. yarn) to find the
231
- // cedar-vite-build binary
238
+ // `cwd` makes postcss/tailwind config resolution work (see the
239
+ // @NOTE above)
232
240
  // It won't change process.cwd for anything else here, in this
233
241
  // process
234
242
  cwd: cedarPaths.web.base
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "6.0.0-canary.2671",
3
+ "version": "6.0.0-canary.2673",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,17 +33,17 @@
33
33
  "dependencies": {
34
34
  "@babel/parser": "7.29.7",
35
35
  "@babel/preset-typescript": "7.29.7",
36
- "@cedarjs/api-server": "6.0.0-canary.2671",
37
- "@cedarjs/cli-helpers": "6.0.0-canary.2671",
38
- "@cedarjs/fastify-web": "6.0.0-canary.2671",
39
- "@cedarjs/internal": "6.0.0-canary.2671",
40
- "@cedarjs/prerender": "6.0.0-canary.2671",
41
- "@cedarjs/project-config": "6.0.0-canary.2671",
42
- "@cedarjs/structure": "6.0.0-canary.2671",
43
- "@cedarjs/telemetry": "6.0.0-canary.2671",
44
- "@cedarjs/utils": "6.0.0-canary.2671",
45
- "@cedarjs/vite": "6.0.0-canary.2671",
46
- "@cedarjs/web-server": "6.0.0-canary.2671",
36
+ "@cedarjs/api-server": "6.0.0-canary.2673",
37
+ "@cedarjs/cli-helpers": "6.0.0-canary.2673",
38
+ "@cedarjs/fastify-web": "6.0.0-canary.2673",
39
+ "@cedarjs/internal": "6.0.0-canary.2673",
40
+ "@cedarjs/prerender": "6.0.0-canary.2673",
41
+ "@cedarjs/project-config": "6.0.0-canary.2673",
42
+ "@cedarjs/structure": "6.0.0-canary.2673",
43
+ "@cedarjs/telemetry": "6.0.0-canary.2673",
44
+ "@cedarjs/utils": "6.0.0-canary.2673",
45
+ "@cedarjs/vite": "6.0.0-canary.2673",
46
+ "@cedarjs/web-server": "6.0.0-canary.2673",
47
47
  "@listr2/prompt-adapter-enquirer": "4.2.2",
48
48
  "@opentelemetry/api": "1.9.1",
49
49
  "@opentelemetry/core": "1.30.1",
@@ -102,7 +102,7 @@
102
102
  "node-ssh": "13.2.1",
103
103
  "ts-dedent": "2.3.0",
104
104
  "typescript": "5.9.3",
105
- "vitest": "3.2.6"
105
+ "vitest": "4.1.10"
106
106
  },
107
107
  "engines": {
108
108
  "node": ">=24"