@quicktvui/web-cli 3.2.4 → 3.2.6
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/lib/DevServer.js +3 -0
- package/package.json +2 -2
- package/runtime/860dbbc52c94ebd83844.wasm +0 -0
- package/runtime/wasm_crypto_bg.wasm +0 -0
- package/runtime/web-runtime.cc7d744ca290cb03a097.js +2 -0
- package/runtime/web-runtime.f4243c246d9c84993074.js +1 -0
- package/runtime/web-runtime.8e0b939060597af3cb16.js +0 -2
- package/runtime/web-runtime.ccab04df97ffd41b3a94.js +0 -1
package/lib/DevServer.js
CHANGED
|
@@ -576,6 +576,9 @@ class DevServer {
|
|
|
576
576
|
'user-agent': req.headers['user-agent'] || 'Mozilla/5.0',
|
|
577
577
|
accept: req.headers.accept || '*/*',
|
|
578
578
|
}
|
|
579
|
+
if (req.headers.authorization) {
|
|
580
|
+
headers.authorization = req.headers.authorization
|
|
581
|
+
}
|
|
579
582
|
if (req.headers.range) {
|
|
580
583
|
headers.range = req.headers.range
|
|
581
584
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/web-cli",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.6",
|
|
4
4
|
"description": "CLI tool for QuickTVUI web development v3 - delegate build & bundle loading",
|
|
5
5
|
"author": "QuickTVUI Team",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"main": "lib/index.js",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"sync-runtime": "rm -rf runtime/*.js && cp ../web-runtime/dist/web-runtime.*.js runtime/",
|
|
12
|
+
"sync-runtime": "rm -rf runtime/*.js && cp ../web-runtime/dist/web-runtime.*.js runtime/ && rm -rf runtime/*.wasm && cp ../web-runtime/dist/*.wasm runtime/",
|
|
13
13
|
"prepublishOnly": "npm run sync-runtime"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
Binary file
|
|
Binary file
|