@cccarv82/freya 2.2.0 → 2.2.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/cli/web.js +5 -0
- package/package.json +1 -1
package/cli/web.js
CHANGED
|
@@ -877,6 +877,11 @@ function reportsHtml(defaultDir) {
|
|
|
877
877
|
return buildReportsHtml(safeDefault, APP_VERSION);
|
|
878
878
|
}
|
|
879
879
|
|
|
880
|
+
function projectsHtml(defaultDir) {
|
|
881
|
+
const safeDefault = String(defaultDir || './freya').replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
882
|
+
return buildProjectsHtml(safeDefault, APP_VERSION);
|
|
883
|
+
}
|
|
884
|
+
|
|
880
885
|
function companionHtml(defaultDir) {
|
|
881
886
|
const safeDefault = String(defaultDir || './freya').replace(/\\/g, '\\\\').replace(/"/g, '\\"');
|
|
882
887
|
return buildCompanionHtml(safeDefault, APP_VERSION);
|
package/package.json
CHANGED