@cedarjs/internal 1.0.0-canary.12726 → 1.0.0-canary.12729

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.
@@ -218,7 +218,7 @@ async function getPrismaClient(hasGenerated = false) {
218
218
  if (hasGenerated) {
219
219
  return { ModelName: {} };
220
220
  } else {
221
- import_execa.default.sync("yarn rw prisma generate", { shell: true });
221
+ import_execa.default.sync("yarn", ["rw", "prisma", "generate"]);
222
222
  return getPrismaClient(true);
223
223
  }
224
224
  }
@@ -182,7 +182,7 @@ async function getPrismaClient(hasGenerated = false) {
182
182
  if (hasGenerated) {
183
183
  return { ModelName: {} };
184
184
  } else {
185
- execa.sync("yarn rw prisma generate", { shell: true });
185
+ execa.sync("yarn", ["rw", "prisma", "generate"]);
186
186
  return getPrismaClient(true);
187
187
  }
188
188
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/internal",
3
- "version": "1.0.0-canary.12726+454aa0bc6",
3
+ "version": "1.0.0-canary.12729+338020ede",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
@@ -140,10 +140,10 @@
140
140
  "@babel/plugin-transform-typescript": "^7.26.8",
141
141
  "@babel/runtime-corejs3": "7.27.6",
142
142
  "@babel/traverse": "7.27.4",
143
- "@cedarjs/babel-config": "1.0.0-canary.12726",
144
- "@cedarjs/graphql-server": "1.0.0-canary.12726",
145
- "@cedarjs/project-config": "1.0.0-canary.12726",
146
- "@cedarjs/router": "1.0.0-canary.12726",
143
+ "@cedarjs/babel-config": "1.0.0-canary.12729",
144
+ "@cedarjs/graphql-server": "1.0.0-canary.12729",
145
+ "@cedarjs/project-config": "1.0.0-canary.12729",
146
+ "@cedarjs/router": "1.0.0-canary.12729",
147
147
  "@graphql-codegen/add": "4.0.1",
148
148
  "@graphql-codegen/cli": "3.3.1",
149
149
  "@graphql-codegen/client-preset": "4.3.3",
@@ -176,7 +176,7 @@
176
176
  },
177
177
  "devDependencies": {
178
178
  "@arethetypeswrong/cli": "0.18.2",
179
- "@cedarjs/framework-tools": "1.0.0-canary.12726",
179
+ "@cedarjs/framework-tools": "1.0.0-canary.12729",
180
180
  "@types/fs-extra": "11.0.4",
181
181
  "concurrently": "8.2.2",
182
182
  "graphql-tag": "2.12.6",
@@ -187,5 +187,5 @@
187
187
  "publishConfig": {
188
188
  "access": "public"
189
189
  },
190
- "gitHead": "454aa0bc6f3d13376f8ac6bcc7be381344e46b4d"
190
+ "gitHead": "338020ede5f5249d4126a6914f762c35ad1448f2"
191
191
  }