@wix/ditto-codegen-public 1.0.258 → 1.0.260

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/out.js +7 -2
  2. package/package.json +2 -2
package/dist/out.js CHANGED
@@ -342720,7 +342720,7 @@ var require_job_timeout_monitor = __commonJS({
342720
342720
  var ditto_codegen_types_12 = require_dist4();
342721
342721
  var utils_1 = require_utils9();
342722
342722
  var logger_12 = require_logger();
342723
- exports2.JOB_TIMEOUT_MS = 1e3 * 60 * 10;
342723
+ exports2.JOB_TIMEOUT_MS = 1e3 * 60 * 20;
342724
342724
  var JobTimeoutMonitor = class {
342725
342725
  constructor(codeGenerationService) {
342726
342726
  this.codeGenerationService = codeGenerationService;
@@ -342774,7 +342774,9 @@ var require_skills_installer = __commonJS({
342774
342774
  var execAsync = (0, util_1.promisify)(child_process_1.exec);
342775
342775
  var SKILLS_INSTALL_COMMAND = "npx --yes skills add wix/skills -g -a opencode -y";
342776
342776
  async function installSkills(outputPath, log) {
342777
- log.info("[Skills] Installing Wix skills globally");
342777
+ log.info("[Skills] Installing Wix skills globally", {
342778
+ installInternalSkills: process.env.INSTALL_INTERNAL_SKILLS
342779
+ });
342778
342780
  try {
342779
342781
  const { stdout, stderr } = await execAsync(SKILLS_INSTALL_COMMAND, {
342780
342782
  cwd: outputPath
@@ -342904,6 +342906,9 @@ async function processJob(job) {
342904
342906
  jobLog.debug("CODGEN_SKILLS_ENABLED", {
342905
342907
  value: process.env.CODGEN_SKILLS_ENABLED
342906
342908
  });
342909
+ jobLog.debug("INSTALL_INTERNAL_SKILLS", {
342910
+ value: process.env.INSTALL_INTERNAL_SKILLS
342911
+ });
342907
342912
  if (skillsEnabled) {
342908
342913
  await (0, skills_installer_1.installSkills)((0, codegen_flow_helpers_1.getOutputPath)(), jobLog);
342909
342914
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ditto-codegen-public",
3
- "version": "1.0.258",
3
+ "version": "1.0.260",
4
4
  "description": "AI-powered Wix CLI app generator - standalone executable",
5
5
  "scripts": {
6
6
  "build": "node build.mjs",
@@ -28,5 +28,5 @@
28
28
  "@wix/ditto-codegen": "1.0.0",
29
29
  "esbuild": "^0.27.2"
30
30
  },
31
- "falconPackageHash": "1b8f88b2662cd17c34a091e6efc4d0ee2ac0259b1edc73bc784055d0"
31
+ "falconPackageHash": "60e26a8f799c4bd48aa770be7584c2be2b2005c4d6745bde2fcf0431"
32
32
  }