@jsenv/core 28.6.0 → 29.0.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/html/explorer.html +2 -2
- package/dist/main.js +266 -302
- package/package.json +1 -1
- package/src/build/build.js +7 -17
- package/src/dev/start_dev_server.js +4 -4
- package/src/omega/kitchen.js +1 -50
- package/src/omega/omega_server.js +4 -4
- package/src/omega/server/file_service.js +4 -4
- package/src/plugins/cache_control/jsenv_plugin_cache_control.js +1 -11
- package/src/plugins/explorer/client/explorer.html +2 -2
- package/src/plugins/explorer/jsenv_plugin_explorer.js +51 -43
- package/src/plugins/plugins.js +26 -20
- package/src/plugins/url_resolution/jsenv_plugin_url_resolution.js +103 -27
- package/src/plugins/url_resolution/node_esm_resolver.js +110 -0
- package/src/plugins/url_version/jsenv_plugin_url_version.js +10 -5
- package/src/plugins/leading_slash/jsenv_plugin_leading_slash.js +0 -13
- package/src/plugins/node_esm_resolution/jsenv_plugin_node_esm_resolution.js +0 -148
package/dist/html/explorer.html
CHANGED
|
@@ -314,7 +314,7 @@ h4 {
|
|
|
314
314
|
</section>
|
|
315
315
|
</article>
|
|
316
316
|
</div>
|
|
317
|
-
<script>
|
|
317
|
+
<script no-supervisor="">
|
|
318
318
|
// eslint-disable-next-line no-undef
|
|
319
319
|
const { rootDirectoryUrl, groups, files } = SERVER_PARAMS
|
|
320
320
|
|
|
@@ -428,7 +428,7 @@ h4 {
|
|
|
428
428
|
|
|
429
429
|
document.querySelector("main").appendChild(fileListElement)
|
|
430
430
|
</script>
|
|
431
|
-
<script>
|
|
431
|
+
<script no-supervisor="">
|
|
432
432
|
// make menu scrollable
|
|
433
433
|
const getMenuWrapperSize = () => {
|
|
434
434
|
return document.querySelector(".menu-wrapper").getBoundingClientRect()
|