@quicktvui/web-cli 3.2.5 → 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 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.5",
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