@jsenv/core 40.0.10 → 40.1.1
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/README.md +2 -2
- package/dist/build/build.js +1792 -1101
- package/dist/client/autoreload/autoreload.js +1 -27
- package/dist/jsenv_core_node_modules.js +2045 -0
- package/dist/jsenv_core_packages.js +9397 -5830
- package/dist/start_build_server/start_build_server.js +4 -2
- package/dist/start_dev_server/start_dev_server.js +228 -70
- package/package.json +16 -15
- package/src/build/build.js +1084 -560
- package/src/build/build_content_report.js +377 -0
- package/src/build/build_params.js +1 -4
- package/src/build/build_specifier_manager.js +70 -21
- package/src/build/build_urls_generator.js +29 -28
- package/src/kitchen/fetched_content_compliance.js +2 -2
- package/src/kitchen/kitchen.js +1 -1
- package/src/plugins/directory_reference_effect/jsenv_plugin_directory_reference_effect.js +20 -5
- package/src/plugins/plugins.js +5 -2
- package/src/plugins/protocol_file/jsenv_plugin_directory_listing.js +3 -4
- package/src/plugins/reference_analysis/jsenv_plugin_reference_analysis.js +1 -4
- package/src/plugins/resolution_node_esm/jsenv_plugin_node_esm_resolution.js +56 -34
- package/src/plugins/resolution_node_esm/node_esm_resolver.js +132 -11
- package/src/build/jsenv_plugin_subbuilds.js +0 -76
- package/src/kitchen/url_graph/url_graph_report.js +0 -202
- /package/dist/client/{server_events_client → server_events}/server_events_client.js +0 -0
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ To try jsenv on your machine, use [@jsenv/cli](./packages/related/cli/#jsenvcli)
|
|
|
17
17
|
|
|
18
18
|
For additional details, consult the [documentation](./docs/users/users.md)
|
|
19
19
|
|
|
20
|
-
# The best parts
|
|
20
|
+
<!-- # The best parts
|
|
21
21
|
|
|
22
22
|
- **Robust versioning during build**: Avoids <a href="https://bundlers.tooling.report/hashing/avoid-cascade/" target="_blank">cascading hash changes</a><sup>↗</sup>.
|
|
23
23
|
- **Load js module with classic script**: See the [asJsClassic plugin](./docs/users/g_plugins/g_plugins.md#asjsclassic).
|
|
@@ -28,7 +28,7 @@ For additional details, consult the [documentation](./docs/users/users.md)
|
|
|
28
28
|
- **Isolated environment for each test file**: Ensures tests run independently, preventing side effects.
|
|
29
29
|
- Single set of files after build: Simplifies support and deployement with a single set of files.
|
|
30
30
|
- Execute tests in multiple browsers: Supports Chrome, Safari, and Firefox.
|
|
31
|
-
- Extensive browser support during dev: Allows the use of various browsers beyond the latest Chrome, which is useful for reproducing browser-specific bugs.
|
|
31
|
+
- Extensive browser support during dev: Allows the use of various browsers beyond the latest Chrome, which is useful for reproducing browser-specific bugs. -->
|
|
32
32
|
|
|
33
33
|
<!--
|
|
34
34
|
The following commands can be used to skip the prompt
|