@greenarmor/ges-web-dashboard 1.1.3 → 1.1.4

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -102,7 +102,7 @@ export function startDashboard(options) {
102
102
  res.end("Bad request");
103
103
  return;
104
104
  }
105
- const url = new URL(req.url, `http://${host}:${port}`);
105
+ const url = new URL(req.url, `${"http"}://${host}:${port}`);
106
106
  if (url.pathname === "/" || url.pathname === "/index.html") {
107
107
  try {
108
108
  const data = collectDashboardData(options.projectPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greenarmor/ges-web-dashboard",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "type": "module",
5
5
  "description": "GESF Web Dashboard - Visual compliance dashboard for teams",
6
6
  "main": "./dist/index.js",
@@ -38,7 +38,8 @@
38
38
  },
39
39
  "homepage": "https://github.com/greenarmor/gesf",
40
40
  "files": [
41
- "dist"
41
+ "dist",
42
+ "LICENSE"
42
43
  ],
43
44
  "scripts": {
44
45
  "build": "tsc",