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 +1 -0
- package/built/pxt.js +780 -295
- package/built/pxtlib.d.ts +1 -58
- package/built/pxtlib.js +117 -295
- package/built/pxtsim.d.ts +75 -0
- package/built/pxtsim.js +662 -0
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtasseteditor.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtsim.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/localtypings/pxtmusic.d.ts +67 -0
- package/package.json +1 -1
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+)$/;
|