@networkpro/web 1.25.4 → 1.25.5

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/CHANGELOG.md CHANGED
@@ -22,6 +22,22 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
22
22
 
23
23
  ---
24
24
 
25
+ ## [1.25.5] - 2025-11-03
26
+
27
+ ### Added
28
+
29
+ - Introduced `static/b173de6c44c144c1b186841b88d51c67.txt` for use with [IndexNow](https://www.indexnow.org) and Bing Webmaster Tools.
30
+
31
+ ### Changed
32
+
33
+ - Bumped project version to `v1.25.5`.
34
+
35
+ ### Fixed
36
+
37
+ - Corrected the URLs for the HTML versions of the licenses in `static/sitemap.xml`.
38
+
39
+ ---
40
+
25
41
  ## [1.25.4] - 2025-11-03
26
42
 
27
43
  ### Added
@@ -1686,7 +1702,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
1686
1702
 
1687
1703
  <!-- Link references -->
1688
1704
 
1689
- [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.4...HEAD
1705
+ [Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.5...HEAD
1706
+ [1.25.5]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.5
1690
1707
  [1.25.4]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.4
1691
1708
  [1.25.3]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.3
1692
1709
  [1.25.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@networkpro/web",
3
3
  "private": false,
4
- "version": "1.25.4",
4
+ "version": "1.25.5",
5
5
  "description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
6
6
  "keywords": [
7
7
  "advisory",
@@ -0,0 +1 @@
1
+ b173de6c44c144c1b186841b88d51c67
@@ -1,5 +1,5 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <!-- Sitemap last updated 2025-10-30 -->
2
+ <!-- Sitemap last updated 2025-11-03 -->
3
3
 
4
4
  <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
5
5
 
@@ -125,9 +125,9 @@
125
125
 
126
126
  <url>
127
127
 
128
- <loc>https://netwk.pro/bin/CC-BY-4.0.html</loc>
128
+ <loc>https://netwk.pro/bin/license/CC-BY-4.0.html</loc>
129
129
 
130
- <lastmod>2025-06-10</lastmod>
130
+ <lastmod>2025-11-03</lastmod>
131
131
 
132
132
  <changefreq>yearly</changefreq>
133
133
 
@@ -137,9 +137,9 @@
137
137
 
138
138
  <url>
139
139
 
140
- <loc>https://netwk.pro/bin/COPYING.html</loc>
140
+ <loc>https://netwk.pro/bin/license/COPYING.html</loc>
141
141
 
142
- <lastmod>2025-06-10</lastmod>
142
+ <lastmod>2025-11-03</lastmod>
143
143
 
144
144
  <changefreq>yearly</changefreq>
145
145
 
package/svelte.config.js CHANGED
@@ -9,6 +9,7 @@ This file is part of Network Pro.
9
9
  import adapter from '@sveltejs/adapter-vercel'; // Vercel adapter for deployment
10
10
  import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; // Vite preprocessor for Svelte
11
11
 
12
+ /** @type {import('@sveltejs/kit').Config} */
12
13
  const config = {
13
14
  // Only vitePreprocess with PostCSS
14
15
  preprocess: vitePreprocess({ postcss: true }),