@team-monolith/pxt-core 0.1.1 → 0.1.3
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/pxt.js +3 -0
- package/built/pxtlib.js +3 -0
- package/built/target.js +3 -3
- package/built/web/main.js +4 -3
- package/built/web/pxtapp.js +3 -0
- package/built/web/pxtembed.js +3 -0
- package/built/web/pxtlib.js +3 -0
- package/built/web/pxtworker.js +3 -0
- package/package.json +1 -1
package/built/pxt.js
CHANGED
|
@@ -120955,6 +120955,9 @@ var pxt;
|
|
|
120955
120955
|
}
|
|
120956
120956
|
codle.getEnv = getEnv;
|
|
120957
120957
|
function getCookieName(name) {
|
|
120958
|
+
if (window.location.hostname === "localhost") {
|
|
120959
|
+
return `${name}_localhost_local`;
|
|
120960
|
+
}
|
|
120958
120961
|
const tenant = window.location.hostname.split(".")[1];
|
|
120959
120962
|
return `${name}_${tenant}_${getEnv()}`;
|
|
120960
120963
|
}
|
package/built/pxtlib.js
CHANGED
|
@@ -23269,6 +23269,9 @@ var pxt;
|
|
|
23269
23269
|
}
|
|
23270
23270
|
codle.getEnv = getEnv;
|
|
23271
23271
|
function getCookieName(name) {
|
|
23272
|
+
if (window.location.hostname === "localhost") {
|
|
23273
|
+
return `${name}_localhost_local`;
|
|
23274
|
+
}
|
|
23272
23275
|
const tenant = window.location.hostname.split(".")[1];
|
|
23273
23276
|
return `${name}_${tenant}_${getEnv()}`;
|
|
23274
23277
|
}
|
package/built/target.js
CHANGED
|
@@ -380,8 +380,8 @@ var pxtTargetBundle = {
|
|
|
380
380
|
},
|
|
381
381
|
"uploadDocs": false,
|
|
382
382
|
"versions": {
|
|
383
|
-
"target": "0.1.
|
|
384
|
-
"pxt": "0.1.
|
|
383
|
+
"target": "0.1.2",
|
|
384
|
+
"pxt": "0.1.2"
|
|
385
385
|
},
|
|
386
386
|
"blocksprj": {
|
|
387
387
|
"id": "blocksprj",
|
|
@@ -4302,7 +4302,7 @@ var pxtTargetBundle = {
|
|
|
4302
4302
|
}
|
|
4303
4303
|
}
|
|
4304
4304
|
},
|
|
4305
|
-
"sha": "
|
|
4305
|
+
"sha": "353e36020af9138fe2e2e73bc79d90d1fc8f52e8d6526499b889438c24b53b43"
|
|
4306
4306
|
}
|
|
4307
4307
|
}
|
|
4308
4308
|
}
|