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