@jsenv/core 38.3.3 → 38.3.5
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 +1 -1
- package/dist/babel_helpers/applyDecs2301/applyDecs2301.js +2 -2
- package/dist/babel_helpers/applyDecs2305/applyDecs2305.js +2 -2
- package/dist/jsenv_core.js +2344 -2372
- package/package.json +12 -12
- package/src/dev/start_dev_server.js +483 -103
- package/src/kitchen/url_graph/url_info_transformations.js +5 -5
- package/src/plugins/inlining/jsenv_plugin_inlining_as_data_url.js +7 -2
- package/src/plugins/reference_analysis/data_urls/jsenv_plugin_data_urls_analysis.js +2 -1
- package/src/dev/file_service.js +0 -413
- package/src/plugins/import_meta_url/client/import_meta_url_browser.js +0 -51
- package/src/plugins/import_meta_url/client/import_meta_url_commonjs.mjs +0 -9
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ The pillars of jsenv are:
|
|
|
9
9
|
3. A build server serving build files
|
|
10
10
|
4. A test runner executing test files in web browser(s)
|
|
11
11
|
|
|
12
|
-
Jsenv cares a lot about the developer experience.
|
|
12
|
+
Jsenv cares a lot about the developer experience.
|
|
13
13
|
As a result it can be enjoyed by people without much experience in tooling or seeking for a simple tool without hidden complexities.
|
|
14
14
|
|
|
15
15
|
[Link to documentation](<https://github.com/jsenv/core/wiki/A)-directory-structure>)
|
|
@@ -136,8 +136,8 @@ function applyDecs2301Factory() {
|
|
|
136
136
|
get && set
|
|
137
137
|
? { get: get, set: set, has: has }
|
|
138
138
|
: get
|
|
139
|
-
|
|
140
|
-
|
|
139
|
+
? { get: get, has: has }
|
|
140
|
+
: { set: set, has: has };
|
|
141
141
|
|
|
142
142
|
try {
|
|
143
143
|
return dec(value, ctx);
|
|
@@ -137,8 +137,8 @@ function memberDec(
|
|
|
137
137
|
get && set
|
|
138
138
|
? { get: get, set: set, has: has }
|
|
139
139
|
: get
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
? { get: get, has: has }
|
|
141
|
+
: { set: set, has: has };
|
|
142
142
|
|
|
143
143
|
try {
|
|
144
144
|
return dec.call(thisArg, value, ctx);
|