@cedarjs/cli 1.0.0-canary.13110 → 1.0.0-canary.13112

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.
@@ -43,7 +43,6 @@ const handler = async ({
43
43
  const { cmd, args } = await generatePrismaCommand();
44
44
  return execa(cmd, args, {
45
45
  stdio: verbose ? "inherit" : "pipe",
46
- shell: true,
47
46
  cwd: cedarPaths.api.base
48
47
  });
49
48
  }
@@ -6,8 +6,12 @@ const generatePrismaCommand = async () => {
6
6
  const createdRequire = createRequire(import.meta.url);
7
7
  const prismaIndexPath = createdRequire.resolve("prisma/build/index.js");
8
8
  return {
9
- cmd: `node "${prismaIndexPath}"`,
10
- args: ["generate", `--config="${getPaths().api.prismaConfig}"`]
9
+ cmd: "node",
10
+ args: [
11
+ prismaIndexPath,
12
+ "generate",
13
+ `--config=${getPaths().api.prismaConfig}`
14
+ ]
11
15
  };
12
16
  };
13
17
  const generatePrismaClient = async ({
package/dist/lib/index.js CHANGED
@@ -394,7 +394,6 @@ const runCommandTask = async (commands, { verbose, silent }) => {
394
394
  title,
395
395
  task: async () => {
396
396
  return execa(cmd, args, {
397
- shell: true,
398
397
  cwd,
399
398
  stdio: verbose && !silent ? "inherit" : "pipe",
400
399
  extendEnv: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "1.0.0-canary.13110+962b943a8",
3
+ "version": "1.0.0-canary.13112+0d25e39c5",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,15 +32,15 @@
32
32
  "dependencies": {
33
33
  "@babel/preset-typescript": "7.28.5",
34
34
  "@babel/runtime-corejs3": "7.28.4",
35
- "@cedarjs/api-server": "1.0.0-canary.13110",
36
- "@cedarjs/cli-helpers": "1.0.0-canary.13110",
37
- "@cedarjs/fastify-web": "1.0.0-canary.13110",
38
- "@cedarjs/internal": "1.0.0-canary.13110",
39
- "@cedarjs/prerender": "1.0.0-canary.13110",
40
- "@cedarjs/project-config": "1.0.0-canary.13110",
41
- "@cedarjs/structure": "1.0.0-canary.13110",
42
- "@cedarjs/telemetry": "1.0.0-canary.13110",
43
- "@cedarjs/web-server": "1.0.0-canary.13110",
35
+ "@cedarjs/api-server": "1.0.0-canary.13112",
36
+ "@cedarjs/cli-helpers": "1.0.0-canary.13112",
37
+ "@cedarjs/fastify-web": "1.0.0-canary.13112",
38
+ "@cedarjs/internal": "1.0.0-canary.13112",
39
+ "@cedarjs/prerender": "1.0.0-canary.13112",
40
+ "@cedarjs/project-config": "1.0.0-canary.13112",
41
+ "@cedarjs/structure": "1.0.0-canary.13112",
42
+ "@cedarjs/telemetry": "1.0.0-canary.13112",
43
+ "@cedarjs/web-server": "1.0.0-canary.13112",
44
44
  "@listr2/prompt-adapter-enquirer": "2.0.16",
45
45
  "@opentelemetry/api": "1.8.0",
46
46
  "@opentelemetry/core": "1.22.0",
@@ -102,5 +102,5 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "gitHead": "962b943a87905e9bb32f1f5dc18aa2b85172736f"
105
+ "gitHead": "0d25e39c56d22b027dc3851262aa05c1b775d059"
106
106
  }