@jsenv/core 38.2.11 → 38.3.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 +3 -3
- package/dist/jsenv_core.js +1388 -1371
- package/package.json +1 -1
- package/src/dev/file_service.js +1 -1
- package/src/kitchen/url_graph/references.js +2 -2
- package/src/kitchen/url_graph/url_graph.js +14 -4
- package/src/plugins/autoreload/jsenv_plugin_autoreload_server.js +10 -2
- package/src/plugins/plugins.js +0 -2
- package/src/plugins/reference_analysis/html/jsenv_plugin_html_reference_analysis.js +505 -310
- package/src/plugins/ribbon/jsenv_plugin_ribbon.js +2 -2
- package/src/plugins/importmap/jsenv_plugin_importmap.js +0 -205
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# @jsenv/core [](https://www.npmjs.com/package/@jsenv/core)
|
|
2
2
|
|
|
3
|
-
Jsenv is a tool to develop test and build projects using JavaScript. Jsenv
|
|
4
|
-
|
|
5
|
-
Jsenv cares a lot about the developper experience, especially when it comes to tests.
|
|
3
|
+
Jsenv is a tool to develop test and build projects using JavaScript. Jsenv encourages standards and simplicity.
|
|
6
4
|
|
|
7
5
|
The pillars of jsenv are:
|
|
8
6
|
|
|
@@ -11,6 +9,8 @@ The pillars of jsenv are:
|
|
|
11
9
|
3. A build server serving build files
|
|
12
10
|
4. A test runner executing test files in web browser(s)
|
|
13
11
|
|
|
12
|
+
Jsenv cares a lot about the developer experience. As a result it can be enjoyed by people without much experience in tooling. Or by people wanting to use a simple tool, without hidden complexities.
|
|
13
|
+
|
|
14
14
|
[Link to documentation](<https://github.com/jsenv/core/wiki/A)-directory-structure>)
|
|
15
15
|
|
|
16
16
|
# The best parts
|