@jsenv/core 23.8.9 → 23.8.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/jsenv_browser_system.js +1 -1
- package/dist/jsenv_browser_system.js.map +2 -2
- package/dist/jsenv_toolbar_injector.js +1 -1
- package/dist/jsenv_toolbar_injector.js.map +2 -2
- package/package.json +3 -5
- package/src/buildProject.js +2 -2
- package/src/internal/building/createJsenvRollupPlugin.js +11 -13
- package/src/internal/compiling/createCompiledFileService.js +33 -5
- package/src/internal/compiling/js-compilation-service/jsenvTransform.js +1 -1
- package/src/internal/compiling/startCompileServer.js +1 -26
- package/src/internal/executing/coverage/reportToCoverage.js +6 -2
- package/src/internal/generateGroupMap/runtime_compat.js +21 -13
- package/src/internal/import-resolution/import-resolver-importmap.js +1 -1
- package/src/internal/toolbar/toolbar.injector.js +1 -0
|
@@ -2277,7 +2277,7 @@
|
|
|
2277
2277
|
specifier: specifier,
|
|
2278
2278
|
importer: importer
|
|
2279
2279
|
}, importMapUrl ? {
|
|
2280
|
-
"how to fix": "Add a mapping for \"".concat(specifier, "\" into the importmap file at ").concat(importMapUrl)
|
|
2280
|
+
"how to fix": "Add a mapping for \"".concat(specifier, "\" into the importmap file at \"").concat(importMapUrl, "\"")
|
|
2281
2281
|
} : {
|
|
2282
2282
|
"how to fix": "Add an importmap with a mapping for \"".concat(specifier, "\""),
|
|
2283
2283
|
"suggestion": "Generate importmap using https://github.com/jsenv/importmap-node-module"
|