@jsenv/core 29.4.5 → 29.6.0
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/js/script_type_module_supervisor.js +3 -2
- package/dist/js/supervisor.js +3 -2
- package/dist/main.js +196 -113
- package/package.json +2 -2
- package/src/build/build.js +100 -42
- package/src/build/build_urls_generator.js +12 -6
- package/src/build/inject_global_version_mappings.js +36 -15
- package/src/dev/start_dev_server.js +1 -1
- package/src/plugins/bundling/css/bundle_css.js +1 -1
- package/src/plugins/bundling/js_module/bundle_js_modules.js +7 -2
- package/src/plugins/importmap/jsenv_plugin_importmap.js +2 -4
- package/src/plugins/inline/jsenv_plugin_html_inline_content.js +11 -11
- package/src/plugins/plugins.js +1 -6
- package/src/plugins/ribbon/jsenv_plugin_ribbon.js +1 -5
- package/src/plugins/supervisor/client/script_type_module_supervisor.js +3 -2
- package/src/plugins/supervisor/client/supervisor.js +3 -2
- package/src/plugins/supervisor/jsenv_plugin_supervisor.js +6 -9
- package/src/plugins/transpilation/as_js_classic/jsenv_plugin_as_js_classic_conversion.js +1 -0
- package/src/plugins/transpilation/as_js_classic/jsenv_plugin_as_js_classic_library.js +1 -0
- package/src/plugins/transpilation/import_assertions/jsenv_plugin_import_assertions.js +3 -0
- package/src/plugins/url_analysis/html/html_urls.js +2 -2
|
@@ -42,8 +42,9 @@ const createExecuteWithScript = ({
|
|
|
42
42
|
nodeToReplace = currentScriptClone;
|
|
43
43
|
currentScriptClone.src = urlObject.href;
|
|
44
44
|
} else {
|
|
45
|
-
currentScriptClone.removeAttribute("jsenv-
|
|
46
|
-
currentScriptClone.removeAttribute("jsenv-
|
|
45
|
+
currentScriptClone.removeAttribute("jsenv-cooked-by");
|
|
46
|
+
currentScriptClone.removeAttribute("jsenv-inlined-by");
|
|
47
|
+
currentScriptClone.removeAttribute("jsenv-injected-by");
|
|
47
48
|
currentScriptClone.removeAttribute("inlined-from-src");
|
|
48
49
|
currentScriptClone.removeAttribute("original-position");
|
|
49
50
|
currentScriptClone.removeAttribute("original-src-position");
|
package/dist/js/supervisor.js
CHANGED
|
@@ -885,8 +885,9 @@ window.__supervisor__ = (() => {
|
|
|
885
885
|
nodeToReplace = currentScriptClone;
|
|
886
886
|
currentScriptClone.src = urlObject.href;
|
|
887
887
|
} else {
|
|
888
|
-
currentScriptClone.removeAttribute("jsenv-
|
|
889
|
-
currentScriptClone.removeAttribute("jsenv-
|
|
888
|
+
currentScriptClone.removeAttribute("jsenv-cooked-by");
|
|
889
|
+
currentScriptClone.removeAttribute("jsenv-inlined-by");
|
|
890
|
+
currentScriptClone.removeAttribute("jsenv-injected-by");
|
|
890
891
|
currentScriptClone.removeAttribute("inlined-from-src");
|
|
891
892
|
currentScriptClone.removeAttribute("original-position");
|
|
892
893
|
currentScriptClone.removeAttribute("original-src-position");
|