pxt-core 8.5.29 → 8.5.31

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/built/cli.js CHANGED
@@ -350,6 +350,7 @@ function ciAsync() {
350
350
  let cfg = "//registry.npmjs.org/:_authToken=" + atok + "\n";
351
351
  fs.writeFileSync(npmrc, cfg);
352
352
  }
353
+ process.env["PXT_ENV"] = "production";
353
354
  const latest = branch == "master" ? "latest" : "git-" + branch;
354
355
  // upload locs on build on master
355
356
  const masterOrReleaseBranchRx = /^(master|v\d+\.\d+\.\d+)$/;