@dao42/d42paas-front 0.5.58 → 0.5.59
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/dist/DaoPaaS.es.js +15 -0
- package/dist/DaoPaaS.umd.js +169 -169
- package/package.json +1 -1
package/dist/DaoPaaS.es.js
CHANGED
|
@@ -187676,6 +187676,21 @@ const ContentLayout = newStyled.div`
|
|
|
187676
187676
|
`;
|
|
187677
187677
|
self.MonacoEnvironment = {
|
|
187678
187678
|
baseUrl: "https://develop.1024paas.com",
|
|
187679
|
+
getWorkerUrl(_moduleId, label) {
|
|
187680
|
+
if (label === "json") {
|
|
187681
|
+
return "./json.worker.bundle.js";
|
|
187682
|
+
}
|
|
187683
|
+
if (label === "css") {
|
|
187684
|
+
return "./css.worker.bundle.js";
|
|
187685
|
+
}
|
|
187686
|
+
if (label === "html") {
|
|
187687
|
+
return "./html.worker.bundle.js";
|
|
187688
|
+
}
|
|
187689
|
+
if (label === "typescript" || label === "javascript") {
|
|
187690
|
+
return "./ts.worker.bundle.js";
|
|
187691
|
+
}
|
|
187692
|
+
return "./editor.worker.bundle.js";
|
|
187693
|
+
},
|
|
187679
187694
|
getWorker(_2, label) {
|
|
187680
187695
|
if (label === "json") {
|
|
187681
187696
|
return new WorkerWrapper$3();
|