@networkpro/web 1.25.11 → 1.25.12
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/.env.template +4 -3
- package/.ncurc.cjs +7 -1
- package/.node-version +1 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +23 -1
- package/package.json +4 -4
- package/src/app.html +1 -1
- package/src/lib/img/qr/vcard.png +0 -0
- package/src/lib/img/qr/vcard.webp +0 -0
- package/vite.config.js +1 -1
package/.env.template
CHANGED
|
@@ -7,10 +7,11 @@
|
|
|
7
7
|
# Custom environment mode for scripts and tooling
|
|
8
8
|
# One of: dev, test, ci, audit, production
|
|
9
9
|
ENV_MODE=dev
|
|
10
|
+
PUBLIC_ENV_MODE=dev
|
|
10
11
|
|
|
11
12
|
# Optional: API keys or tokens for local dev (never commit real values)
|
|
12
|
-
#
|
|
13
|
-
#
|
|
13
|
+
#PUBLIC_API_URL=https://api.example.com
|
|
14
|
+
#PUBLIC_SITE_NAME=Network Pro
|
|
14
15
|
|
|
15
|
-
# ⚠️ DO NOT include sensitive credentials in
|
|
16
|
+
# ⚠️ DO NOT include sensitive credentials in PUBLIC_ variables
|
|
16
17
|
# These are exposed to client-side code at build time
|
package/.ncurc.cjs
CHANGED
|
@@ -31,7 +31,13 @@ This file is part of Network Pro.
|
|
|
31
31
|
/** @type {import('npm-check-updates').RunOptions} */
|
|
32
32
|
module.exports = {
|
|
33
33
|
// Ignore specific dependencies (prevent upgrades)
|
|
34
|
-
reject: [
|
|
34
|
+
reject: [
|
|
35
|
+
'vitest',
|
|
36
|
+
'@vitest/coverage-v8',
|
|
37
|
+
'prettier',
|
|
38
|
+
'jsdom',
|
|
39
|
+
'markdownlint-cli2',
|
|
40
|
+
],
|
|
35
41
|
|
|
36
42
|
// Always upgrade devDependencies as well
|
|
37
43
|
dep: 'prod,dev',
|
package/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.11.
|
|
1
|
+
24.11.1
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.11.
|
|
1
|
+
24.11.1
|
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,27 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.25.12] - 2025-11-14
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Added revised **QR code** image assets for **Vcard** information:
|
|
30
|
+
- `src/lib/img/qr/vcard.png`
|
|
31
|
+
- `src/lib/img/qr/vcard.webp`
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- Modified `.node-version` and `.nvmrc` to utilize **Node.js** `24.11.1` (LTS).
|
|
36
|
+
- Updated `.ncurc.cjs` to reject updates to `markdownlint-cli2`, due to discrepancies between in-editor and CLI linting errors.
|
|
37
|
+
- Updated environment template (`.env.template`) to include `PUBLIC_ENV_MODE`, which is now required to build the proper environment (e.g., `dev`, `audit`, `production`).
|
|
38
|
+
- Updated generator metadata in `src/app.html` to reflect **SvelteKit 2.48.5**.
|
|
39
|
+
- Bumped project version to `v1.25.12`.
|
|
40
|
+
- Updated dependencies:
|
|
41
|
+
- `@sveltejs/kit` `2.48.4` → `2.48.5`
|
|
42
|
+
- `eslint-plugin-jsdoc` `^61.2.0` → `^61.2.1`
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
25
46
|
## [1.25.11] - 2025-11-12
|
|
26
47
|
|
|
27
48
|
### Added
|
|
@@ -1876,7 +1897,8 @@ This enables analytics filtering and CSP hardening for the audit environment.
|
|
|
1876
1897
|
|
|
1877
1898
|
<!-- Link references -->
|
|
1878
1899
|
|
|
1879
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.
|
|
1900
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.25.12...HEAD
|
|
1901
|
+
[1.25.12]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.12
|
|
1880
1902
|
[1.25.11]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.11
|
|
1881
1903
|
[1.25.10]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.10
|
|
1882
1904
|
[1.25.9]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.25.9
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.25.
|
|
4
|
+
"version": "1.25.12",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"@playwright/test": "^1.56.1",
|
|
98
98
|
"@sveltejs/adapter-netlify": "^5.2.4",
|
|
99
99
|
"@sveltejs/adapter-vercel": "^6.1.1",
|
|
100
|
-
"@sveltejs/kit": "2.48.
|
|
100
|
+
"@sveltejs/kit": "2.48.5",
|
|
101
101
|
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
102
102
|
"@testing-library/jest-dom": "^6.9.1",
|
|
103
103
|
"@testing-library/svelte": "^5.2.9",
|
|
@@ -106,13 +106,13 @@
|
|
|
106
106
|
"browserslist": "^4.28.0",
|
|
107
107
|
"eslint": "^9.39.1",
|
|
108
108
|
"eslint-config-prettier": "^10.1.8",
|
|
109
|
-
"eslint-plugin-jsdoc": "^61.2.
|
|
109
|
+
"eslint-plugin-jsdoc": "^61.2.1",
|
|
110
110
|
"eslint-plugin-svelte": "^3.13.0",
|
|
111
111
|
"globals": "^16.5.0",
|
|
112
112
|
"jsdom": "26.1.0",
|
|
113
113
|
"lightningcss": "^1.30.2",
|
|
114
114
|
"markdownlint": "^0.39.0",
|
|
115
|
-
"markdownlint-cli2": "
|
|
115
|
+
"markdownlint-cli2": "0.18.1",
|
|
116
116
|
"npm-run-all": "^4.1.5",
|
|
117
117
|
"playwright": "^1.56.1",
|
|
118
118
|
"postcss": "^8.5.6",
|
package/src/app.html
CHANGED
package/src/lib/img/qr/vcard.png
CHANGED
|
Binary file
|
|
Binary file
|
package/vite.config.js
CHANGED
|
@@ -12,7 +12,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
12
12
|
import { defineConfig } from 'vite';
|
|
13
13
|
import devtoolsJson from 'vite-plugin-devtools-json';
|
|
14
14
|
import lightningcssPlugin from 'vite-plugin-lightningcss';
|
|
15
|
-
import tsconfigPaths from 'vite-tsconfig-paths'; //
|
|
15
|
+
import tsconfigPaths from 'vite-tsconfig-paths'; // tsconfig/jsconfig alias support
|
|
16
16
|
|
|
17
17
|
// Compute absolute project root
|
|
18
18
|
const projectRoot = fileURLToPath(new URL('.', import.meta.url));
|