@wix/evalforge-types 0.90.0 → 0.91.0

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/build/index.mjs CHANGED
@@ -834,7 +834,7 @@ var ALLOWED_BUILD_COMMANDS = [
834
834
  "pnpm run build",
835
835
  "pnpm build"
836
836
  ];
837
- var DEFAULT_BUILD_PASSED_COMMAND = "yarn build";
837
+ var DEFAULT_BUILD_PASSED_COMMAND = "npm run build";
838
838
  var BUILD_COMMAND_ARGV = {
839
839
  "yarn build": ["yarn", "build"],
840
840
  "npm run build": ["npm", "run", "build"],
@@ -910,7 +910,7 @@ var ToolCalledWithParamConfigSchema = z24.strictObject({
910
910
  requireSuccess: z24.boolean().optional()
911
911
  });
912
912
  var BuildPassedConfigSchema = z24.strictObject({
913
- /** Allowlisted command only (default at runtime: "yarn build") */
913
+ /** Allowlisted command only (default at runtime: "npm run build") */
914
914
  command: BuildPassedCommandStringSchema.optional(),
915
915
  /** Expected exit code (default: 0) */
916
916
  expectedExitCode: z24.number().int().optional()
@@ -1117,7 +1117,7 @@ var SYSTEM_ASSERTIONS = {
1117
1117
  label: "Build Command",
1118
1118
  type: "string",
1119
1119
  required: false,
1120
- defaultValue: "yarn build"
1120
+ defaultValue: DEFAULT_BUILD_PASSED_COMMAND
1121
1121
  },
1122
1122
  {
1123
1123
  name: "expectedExitCode",