@networkpro/web 1.19.0 → 1.21.0

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 (64) hide show
  1. package/.github/workflows/build-and-publish.yml +5 -4
  2. package/.github/workflows/lighthouse.yml +1 -1
  3. package/.github/workflows/meta-check.yml +1 -1
  4. package/.github/workflows/playwright.yml +1 -1
  5. package/.github/workflows/publish-test.yml +5 -4
  6. package/.github/workflows/templates/publish.template.yml +5 -4
  7. package/CHANGELOG.md +107 -1
  8. package/cspell.json +4 -0
  9. package/package.json +20 -20
  10. package/scripts/auditScripts.js +1 -1
  11. package/scripts/bundleCss.js +1 -1
  12. package/scripts/checkEnv.js +1 -1
  13. package/scripts/checkNode.js +1 -1
  14. package/scripts/checkVersions.js +1 -1
  15. package/scripts/generateTest.js +1 -1
  16. package/scripts/openReport.js +1 -1
  17. package/src/app.html +3 -6
  18. package/src/hooks.server.js +10 -7
  19. package/src/lib/components/ServiceSummaryTable.svelte +113 -0
  20. package/src/lib/components/index.js +2 -1
  21. package/src/lib/components/layout/HeaderDefault.svelte +3 -1
  22. package/src/lib/components/layout/HeaderHome.svelte +6 -5
  23. package/src/lib/images.js +1 -1
  24. package/src/lib/index.js +2 -2
  25. package/src/lib/meta.js +14 -9
  26. package/src/lib/pages/AboutContent.svelte +26 -10
  27. package/src/lib/pages/HomeContent.svelte +13 -1
  28. package/src/lib/pages/LicenseContent.svelte +3 -3
  29. package/src/lib/pages/PrivacyContent.svelte +31 -1
  30. package/src/lib/pages/ServicesContent.svelte +545 -0
  31. package/src/lib/pages/index.js +2 -1
  32. package/src/lib/registerServiceWorker.js +7 -5
  33. package/src/lib/stores/posthog.js +46 -25
  34. package/src/lib/styles/css/default.css +88 -0
  35. package/src/lib/styles/global.min.css +1 -3
  36. package/src/lib/types/appConstants.js +1 -1
  37. package/src/lib/types/fossTypes.js +1 -1
  38. package/src/lib/unregisterServiceWorker.js +10 -2
  39. package/src/lib/utils/getUTMParams.js +1 -1
  40. package/src/lib/utils/initAnalytics.js +75 -0
  41. package/src/lib/utils/purify.js +1 -1
  42. package/src/lib/utils/redirect.js +1 -1
  43. package/src/lib/utils/utm.js +2 -2
  44. package/src/routes/+layout.js +1 -1
  45. package/src/routes/+layout.svelte +6 -37
  46. package/src/routes/consultation/+page.svelte +1 -1
  47. package/src/routes/services/+page.server.js +18 -0
  48. package/src/routes/services/+page.svelte +65 -0
  49. package/src/routes/status/+page.server.js +1 -1
  50. package/src/service-worker.js +3 -3
  51. package/static/bin/contact.vcf +1 -2
  52. package/static/disableSw.js +1 -1
  53. package/static/manifest.json +1 -1
  54. package/static/sitemap.xml +17 -5
  55. package/tests/e2e/app.spec.js +1 -1
  56. package/tests/e2e/mobile.spec.js +1 -1
  57. package/tests/e2e/shared/helpers.js +1 -1
  58. package/tests/meta/meta.test.js +1 -1
  59. package/tests/unit/client/lib/PWAInstallButton.test.js +1 -1
  60. package/tests/unit/client/lib/utils/redirect.test.js +1 -1
  61. package/tests/unit/server/internal/auditCoverage.test.js +1 -1
  62. package/tests/unit/server/lib/utils/purify.test.js +1 -1
  63. package/tests/unit/server/meta.test.js +1 -1
  64. package/vercel.json +12 -0
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <!-- Sitemap last updated 2025-10-06 -->
2
+ <!-- Sitemap last updated 2025-10-17 -->
3
3
 
4
4
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
5
5
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  <loc>https://netwk.pro</loc>
9
9
 
10
- <lastmod>2025-10-06</lastmod>
10
+ <lastmod>2025-10-17</lastmod>
11
11
 
12
12
  <changefreq>weekly</changefreq>
13
13
 
@@ -15,6 +15,18 @@
15
15
 
16
16
  </url>
17
17
 
18
+ <url>
19
+
20
+ <loc>https://netwk.pro/services</loc>
21
+
22
+ <lastmod>2025-10-17</lastmod>
23
+
24
+ <changefreq>monthly</changefreq>
25
+
26
+ <priority>0.8</priority>
27
+
28
+ </url>
29
+
18
30
  <url>
19
31
 
20
32
  <loc>https://netwk.pro/foss-spotlight</loc>
@@ -31,7 +43,7 @@
31
43
 
32
44
  <loc>https://netwk.pro/about</loc>
33
45
 
34
- <lastmod>2025-10-06</lastmod>
46
+ <lastmod>2025-10-17</lastmod>
35
47
 
36
48
  <changefreq>monthly</changefreq>
37
49
 
@@ -55,7 +67,7 @@
55
67
 
56
68
  <loc>https://netwk.pro/privacy</loc>
57
69
 
58
- <lastmod>2025-06-30</lastmod>
70
+ <lastmod>2025-10-17</lastmod>
59
71
 
60
72
  <changefreq>monthly</changefreq>
61
73
 
@@ -67,7 +79,7 @@
67
79
 
68
80
  <loc>https://netwk.pro/license</loc>
69
81
 
70
- <lastmod>2025-06-10</lastmod>
82
+ <lastmod>2025-10-09</lastmod>
71
83
 
72
84
  <changefreq>monthly</changefreq>
73
85
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file app.spec.js
11
11
  * @description Runs Playwright E2E tests with desktop and root route assertions.
12
12
  * @module tests/e2e
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-09-17
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file mobile.spec.js
11
11
  * @description Runs Playwright E2E tests with mobile assertions.
12
12
  * @module tests/e2e
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-09-17
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file helpers.js
11
11
  * @description Stores commonly used functions for importing into E2E tests.
12
12
  * @module tests/e2e/shared
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-05-29
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file meta.test.js
11
11
  * @description Checks for correct metadata population in CI
12
12
  * @module tests/meta
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-09-17
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file redirect.test.js
11
11
  * @description Unit test for PWA install component
12
12
  * @module tests/unit/lib
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-10-05
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file redirect.test.js
11
11
  * @description Unit test for src/lib/utils/redirect.js
12
12
  * @module tests/unit/lib/util/
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-07-01
15
15
  */
16
16
 
@@ -11,7 +11,7 @@ This file is part of Network Pro.
11
11
  * @description Scans all .js files in src/ and scripts/ for matching unit
12
12
  * tests
13
13
  * @module tests/unit/server/internal
14
- * @author SunDevil311
14
+ * @author Scott Lopez
15
15
  * @updated 2025-09-17
16
16
  */
17
17
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file purify.test.js
11
11
  * @description Unit test for src/lib/utils/purify.js
12
12
  * @module tests/unit/lib/util
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-06-01
15
15
  */
16
16
 
@@ -10,7 +10,7 @@ This file is part of Network Pro.
10
10
  * @file meta.test.js
11
11
  * @description Checks for correct metadata population
12
12
  * @module tests/unit/server
13
- * @author SunDevil311
13
+ * @author Scott Lopez
14
14
  * @updated 2025-09-17
15
15
  */
16
16
 
package/vercel.json CHANGED
@@ -1,4 +1,6 @@
1
1
  {
2
+ "$schema": "https://openapi.vercel.sh/vercel.json",
3
+ "version": 2,
2
4
  "redirects": [
3
5
  {
4
6
  "source": "/privacy-policy",
@@ -30,5 +32,15 @@
30
32
  "destination": "/foss-spotlight/:path*",
31
33
  "permanent": true
32
34
  }
35
+ ],
36
+ "rewrites": [
37
+ {
38
+ "source": "/relay-MSR0/static/(.*)",
39
+ "destination": "https://us-assets.i.posthog.com/static/$1"
40
+ },
41
+ {
42
+ "source": "/relay-MSR0/(.*)",
43
+ "destination": "https://us.i.posthog.com/$1"
44
+ }
33
45
  ]
34
46
  }