@jsenv/core 40.12.0 → 40.12.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/dist/build/build.js
CHANGED
|
@@ -5824,7 +5824,7 @@ const jsenvPluginInlineContentFetcher = () => {
|
|
|
5824
5824
|
* BUT the last reference is the "http_request"
|
|
5825
5825
|
* so it's more likely the before last reference that contains the latest version
|
|
5826
5826
|
*
|
|
5827
|
-
* BUT
|
|
5827
|
+
* BUT there is an exception when using supervisor as the before last reference
|
|
5828
5828
|
* is the one fetched by the browser that is already cooked
|
|
5829
5829
|
* we must re-cook from the original content, not from the already cooked content
|
|
5830
5830
|
* Otherwise references are already resolved and
|
|
@@ -5529,7 +5529,7 @@ const jsenvPluginInlineContentFetcher = () => {
|
|
|
5529
5529
|
* BUT the last reference is the "http_request"
|
|
5530
5530
|
* so it's more likely the before last reference that contains the latest version
|
|
5531
5531
|
*
|
|
5532
|
-
* BUT
|
|
5532
|
+
* BUT there is an exception when using supervisor as the before last reference
|
|
5533
5533
|
* is the one fetched by the browser that is already cooked
|
|
5534
5534
|
* we must re-cook from the original content, not from the already cooked content
|
|
5535
5535
|
* Otherwise references are already resolved and
|
|
@@ -9873,6 +9873,7 @@ const startDevServer = async ({
|
|
|
9873
9873
|
type: "http_request",
|
|
9874
9874
|
specifier: request.resource,
|
|
9875
9875
|
});
|
|
9876
|
+
reference.urlInfo.context.requestedUrl = requestedUrl;
|
|
9876
9877
|
rootUrlInfo.context.request = null;
|
|
9877
9878
|
rootUrlInfo.context.requestedUrl = null;
|
|
9878
9879
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsenv/core",
|
|
3
|
-
"version": "40.12.
|
|
3
|
+
"version": "40.12.1",
|
|
4
4
|
"description": "Tool to develop, test and build js projects",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"@jsenv/plugin-bundling": "2.10.3",
|
|
81
81
|
"@jsenv/plugin-minification": "1.7.3",
|
|
82
82
|
"@jsenv/plugin-supervisor": "1.7.10",
|
|
83
|
-
"@jsenv/plugin-transpilation": "1.5.
|
|
84
|
-
"@jsenv/server": "16.3.
|
|
83
|
+
"@jsenv/plugin-transpilation": "1.5.64",
|
|
84
|
+
"@jsenv/server": "16.3.4",
|
|
85
85
|
"@jsenv/sourcemap": "1.3.12",
|
|
86
86
|
"react-table": "7.8.0"
|
|
87
87
|
},
|
|
@@ -467,6 +467,7 @@ export const startDevServer = async ({
|
|
|
467
467
|
type: "http_request",
|
|
468
468
|
specifier: request.resource,
|
|
469
469
|
});
|
|
470
|
+
reference.urlInfo.context.requestedUrl = requestedUrl;
|
|
470
471
|
rootUrlInfo.context.request = null;
|
|
471
472
|
rootUrlInfo.context.requestedUrl = null;
|
|
472
473
|
}
|
|
@@ -48,7 +48,7 @@ const jsenvPluginInlineContentFetcher = () => {
|
|
|
48
48
|
* BUT the last reference is the "http_request"
|
|
49
49
|
* so it's more likely the before last reference that contains the latest version
|
|
50
50
|
*
|
|
51
|
-
* BUT
|
|
51
|
+
* BUT there is an exception when using supervisor as the before last reference
|
|
52
52
|
* is the one fetched by the browser that is already cooked
|
|
53
53
|
* we must re-cook from the original content, not from the already cooked content
|
|
54
54
|
* Otherwise references are already resolved and
|