@blueking/bk-weweb 0.0.35-beta.13 → 0.0.35-beta.14
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/index.esm.js +2 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -930,8 +930,7 @@ var Script = class {
|
|
|
930
930
|
}
|
|
931
931
|
/** 转换脚本内容 */
|
|
932
932
|
transformCode(app) {
|
|
933
|
-
const sourceMapUrl =
|
|
934
|
-
` : "";
|
|
933
|
+
const sourceMapUrl = "";
|
|
935
934
|
const sourceUrl = this.url ? `//# sourceURL=${this.url}
|
|
936
935
|
` : "";
|
|
937
936
|
if (app.sandBox) {
|
|
@@ -967,7 +966,7 @@ var Script = class {
|
|
|
967
966
|
|
|
968
967
|
${this.code}
|
|
969
968
|
|
|
970
|
-
${sourceMapUrl}
|
|
969
|
+
// ${sourceMapUrl}
|
|
971
970
|
${sourceUrl}
|
|
972
971
|
}
|
|
973
972
|
catch(e) {
|