@networkpro/web 1.17.1 → 1.17.2
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/.github/workflows/backup-branch.yml +1 -1
- package/.github/workflows/build-and-publish.yml +18 -18
- package/.github/workflows/check-security-txt-expiry.yml +1 -1
- package/.github/workflows/dependency-review.yml +1 -1
- package/.github/workflows/lighthouse.yml +2 -2
- package/.github/workflows/playwright.yml +2 -2
- package/.github/workflows/publish-test.yml +22 -15
- package/.github/workflows/templates/publish.template.yml +35 -28
- package/.node-version +1 -1
- package/.nvmrc +1 -1
- package/CHANGELOG.md +43 -1
- package/package.json +15 -15
- package/src/app.html +1 -1
|
@@ -32,19 +32,19 @@ jobs:
|
|
|
32
32
|
|
|
33
33
|
steps:
|
|
34
34
|
- name: Checkout repository
|
|
35
|
-
uses: actions/checkout@
|
|
35
|
+
uses: actions/checkout@v5
|
|
36
36
|
|
|
37
37
|
- name: Set up Node.js
|
|
38
|
-
uses: actions/setup-node@
|
|
38
|
+
uses: actions/setup-node@v5
|
|
39
39
|
with:
|
|
40
40
|
node-version: 24
|
|
41
41
|
cache: npm
|
|
42
42
|
cache-dependency-path: package-lock.json
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
44
|
+
#- name: Show Node.js and npm versions
|
|
45
|
+
# run: |
|
|
46
|
+
# echo "Node.js version: $(node -v)"
|
|
47
|
+
# echo "npm version: $(npm -v)"
|
|
48
48
|
|
|
49
49
|
- name: Upgrade npm
|
|
50
50
|
run: |
|
|
@@ -108,7 +108,7 @@ jobs:
|
|
|
108
108
|
|
|
109
109
|
steps:
|
|
110
110
|
- name: Download clean source archive
|
|
111
|
-
uses: actions/download-artifact@
|
|
111
|
+
uses: actions/download-artifact@v5
|
|
112
112
|
with:
|
|
113
113
|
name: clean-source
|
|
114
114
|
path: ./
|
|
@@ -120,17 +120,17 @@ jobs:
|
|
|
120
120
|
run: rm clean-source.tar.gz
|
|
121
121
|
|
|
122
122
|
- name: Set up Node.js for npmjs
|
|
123
|
-
uses: actions/setup-node@
|
|
123
|
+
uses: actions/setup-node@v5
|
|
124
124
|
with:
|
|
125
125
|
node-version: 24
|
|
126
126
|
registry-url: https://registry.npmjs.org/
|
|
127
127
|
cache: npm
|
|
128
128
|
cache-dependency-path: package-lock.json
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
#- name: Show Node.js and npm versions
|
|
131
|
+
# run: |
|
|
132
|
+
# echo "Node.js version: $(node -v)"
|
|
133
|
+
# echo "npm version: $(npm -v)"
|
|
134
134
|
|
|
135
135
|
- name: Upgrade npm
|
|
136
136
|
run: |
|
|
@@ -169,7 +169,7 @@ jobs:
|
|
|
169
169
|
|
|
170
170
|
steps:
|
|
171
171
|
- name: Download clean source archive
|
|
172
|
-
uses: actions/download-artifact@
|
|
172
|
+
uses: actions/download-artifact@v5
|
|
173
173
|
with:
|
|
174
174
|
name: clean-source
|
|
175
175
|
path: ./
|
|
@@ -181,17 +181,17 @@ jobs:
|
|
|
181
181
|
run: rm clean-source.tar.gz
|
|
182
182
|
|
|
183
183
|
- name: Set up Node.js for GPR
|
|
184
|
-
uses: actions/setup-node@
|
|
184
|
+
uses: actions/setup-node@v5
|
|
185
185
|
with:
|
|
186
186
|
node-version: 24
|
|
187
187
|
registry-url: https://npm.pkg.github.com/
|
|
188
188
|
cache: npm
|
|
189
189
|
cache-dependency-path: package-lock.json
|
|
190
190
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
191
|
+
#- name: Show Node.js and npm versions
|
|
192
|
+
# run: |
|
|
193
|
+
# echo "Node.js version: $(node -v)"
|
|
194
|
+
# echo "npm version: $(npm -v)"
|
|
195
195
|
|
|
196
196
|
- name: Upgrade npm
|
|
197
197
|
run: |
|
|
@@ -31,7 +31,7 @@ jobs:
|
|
|
31
31
|
|
|
32
32
|
steps:
|
|
33
33
|
- name: Checkout Repository
|
|
34
|
-
uses: actions/checkout@
|
|
34
|
+
uses: actions/checkout@v5
|
|
35
35
|
|
|
36
36
|
- name: Authenticate GitHub CLI
|
|
37
37
|
run: gh auth status
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
run: 'echo "ENV_MODE is set to: $ENV_MODE"'
|
|
43
43
|
|
|
44
44
|
- name: Setup Node.js
|
|
45
|
-
uses: actions/setup-node@
|
|
45
|
+
uses: actions/setup-node@v5
|
|
46
46
|
with:
|
|
47
47
|
node-version: 24
|
|
48
48
|
cache: npm
|
|
@@ -26,13 +26,13 @@ jobs:
|
|
|
26
26
|
|
|
27
27
|
steps:
|
|
28
28
|
- name: Checkout repository
|
|
29
|
-
uses: actions/checkout@
|
|
29
|
+
uses: actions/checkout@v5
|
|
30
30
|
|
|
31
31
|
- name: Log ENV_MODE
|
|
32
32
|
run: 'echo "ENV_MODE is set to: $ENV_MODE"'
|
|
33
33
|
|
|
34
34
|
- name: Set up Node.js
|
|
35
|
-
uses: actions/setup-node@
|
|
35
|
+
uses: actions/setup-node@v5
|
|
36
36
|
with:
|
|
37
37
|
node-version: 24
|
|
38
38
|
cache: npm
|
|
@@ -30,10 +30,10 @@ jobs:
|
|
|
30
30
|
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout repository
|
|
33
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v5
|
|
34
34
|
|
|
35
35
|
- name: Set up Node.js
|
|
36
|
-
uses: actions/setup-node@
|
|
36
|
+
uses: actions/setup-node@v5
|
|
37
37
|
with:
|
|
38
38
|
node-version: 24
|
|
39
39
|
cache: npm
|
|
@@ -59,25 +59,32 @@ jobs:
|
|
|
59
59
|
id: jsdoc_lint
|
|
60
60
|
continue-on-error: true
|
|
61
61
|
run: |
|
|
62
|
-
set -e
|
|
63
62
|
output=$(npm run lint:jsdoc || true)
|
|
64
63
|
echo "$output" | tee jsdoc-lint-output.txt
|
|
65
64
|
|
|
66
|
-
count=$(echo "$output" |
|
|
65
|
+
count=$(echo "$output" | grep -cve '^\s*$')
|
|
67
66
|
echo "jsdoc_count=$count" >> "$GITHUB_OUTPUT"
|
|
68
67
|
|
|
69
|
-
- name:
|
|
70
|
-
if: steps.jsdoc_lint.outputs.jsdoc_count ==
|
|
71
|
-
run: echo "JSDoc lint passed successfully!"
|
|
68
|
+
- name: PASS
|
|
69
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count == 0 }}
|
|
70
|
+
run: echo "✅ JSDoc lint passed successfully!"
|
|
72
71
|
|
|
73
|
-
- name:
|
|
74
|
-
if: steps.jsdoc_lint.outputs.jsdoc_count !=
|
|
72
|
+
- name: JSDoc violations detected (non-blocking)
|
|
73
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
75
74
|
run: |
|
|
76
75
|
echo "⚠️ JSDoc lint check failed with ${{ steps.jsdoc_lint.outputs.jsdoc_count }} violations (non-blocking)"
|
|
77
76
|
echo "--- JSDoc Violations ---"
|
|
78
77
|
cat jsdoc-lint-output.txt
|
|
79
78
|
|
|
80
|
-
|
|
79
|
+
- name: Upload JSDoc results
|
|
80
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
81
|
+
uses: actions/upload-artifact@v4
|
|
82
|
+
with:
|
|
83
|
+
name: jsdoc-lint-results
|
|
84
|
+
path: jsdoc-lint-output.txt
|
|
85
|
+
if-no-files-found: error
|
|
86
|
+
|
|
87
|
+
# Build to ensure the package is functional
|
|
81
88
|
- name: Build Node.js project
|
|
82
89
|
run: npm run build
|
|
83
90
|
|
|
@@ -99,7 +106,7 @@ jobs:
|
|
|
99
106
|
|
|
100
107
|
steps:
|
|
101
108
|
- name: Download clean source archive
|
|
102
|
-
uses: actions/download-artifact@
|
|
109
|
+
uses: actions/download-artifact@v5
|
|
103
110
|
with:
|
|
104
111
|
name: clean-source
|
|
105
112
|
path: ./
|
|
@@ -111,7 +118,7 @@ jobs:
|
|
|
111
118
|
run: rm clean-source.tar.gz
|
|
112
119
|
|
|
113
120
|
- name: Set up Node.js for npmjs
|
|
114
|
-
uses: actions/setup-node@
|
|
121
|
+
uses: actions/setup-node@v5
|
|
115
122
|
with:
|
|
116
123
|
node-version: 24
|
|
117
124
|
registry-url: https://registry.npmjs.org/
|
|
@@ -160,7 +167,7 @@ jobs:
|
|
|
160
167
|
|
|
161
168
|
steps:
|
|
162
169
|
- name: Download clean source archive
|
|
163
|
-
uses: actions/download-artifact@
|
|
170
|
+
uses: actions/download-artifact@v5
|
|
164
171
|
with:
|
|
165
172
|
name: clean-source
|
|
166
173
|
path: ./
|
|
@@ -172,7 +179,7 @@ jobs:
|
|
|
172
179
|
run: rm clean-source.tar.gz
|
|
173
180
|
|
|
174
181
|
- name: Set up Node.js for GPR
|
|
175
|
-
uses: actions/setup-node@
|
|
182
|
+
uses: actions/setup-node@v5
|
|
176
183
|
with:
|
|
177
184
|
node-version: 24
|
|
178
185
|
registry-url: https://npm.pkg.github.com/
|
|
@@ -199,7 +206,7 @@ jobs:
|
|
|
199
206
|
|
|
200
207
|
- name: Update package name for GPR
|
|
201
208
|
run: |
|
|
202
|
-
sed -i 's/"name": "
|
|
209
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/web"/' package.json
|
|
203
210
|
|
|
204
211
|
- name: Verify version not already published
|
|
205
212
|
run: |
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Reusable GitHub Actions workflow to build and publish a package to npmjs and
|
|
4
4
|
# GPR.
|
|
5
5
|
#
|
|
6
|
-
# Version: v1.
|
|
6
|
+
# Version: v1.1.0
|
|
7
7
|
# Maintainer: Scott Lopez <support@neteng.pro>
|
|
8
8
|
# Usage: Copy to `.github/workflows/publish.yml` in your repo or reference
|
|
9
9
|
# directly if shared centrally.
|
|
@@ -40,19 +40,19 @@ jobs:
|
|
|
40
40
|
|
|
41
41
|
steps:
|
|
42
42
|
- name: Checkout repository
|
|
43
|
-
uses: actions/checkout@
|
|
43
|
+
uses: actions/checkout@v5
|
|
44
44
|
|
|
45
45
|
- name: Set up Node.js
|
|
46
|
-
uses: actions/setup-node@
|
|
46
|
+
uses: actions/setup-node@v5
|
|
47
47
|
with:
|
|
48
48
|
node-version: 24
|
|
49
49
|
cache: npm
|
|
50
50
|
cache-dependency-path: package-lock.json
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
#- name: Show Node.js and npm versions
|
|
53
|
+
# run: |
|
|
54
|
+
# echo "Node.js version: $(node -v)"
|
|
55
|
+
# echo "npm version: $(npm -v)"
|
|
56
56
|
|
|
57
57
|
- name: Upgrade npm
|
|
58
58
|
run: |
|
|
@@ -69,25 +69,32 @@ jobs:
|
|
|
69
69
|
id: jsdoc_lint
|
|
70
70
|
continue-on-error: true
|
|
71
71
|
run: |
|
|
72
|
-
set -e
|
|
73
72
|
output=$(npm run lint:jsdoc || true)
|
|
74
73
|
echo "$output" | tee jsdoc-lint-output.txt
|
|
75
74
|
|
|
76
|
-
count=$(echo "$output" |
|
|
75
|
+
count=$(echo "$output" | grep -cve '^\s*$')
|
|
77
76
|
echo "jsdoc_count=$count" >> "$GITHUB_OUTPUT"
|
|
78
77
|
|
|
79
|
-
- name:
|
|
80
|
-
if: steps.jsdoc_lint.outputs.jsdoc_count ==
|
|
81
|
-
run: echo "JSDoc lint passed successfully!"
|
|
78
|
+
- name: PASS
|
|
79
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count == 0 }}
|
|
80
|
+
run: echo "✅ JSDoc lint passed successfully!"
|
|
82
81
|
|
|
83
|
-
- name:
|
|
84
|
-
if: steps.jsdoc_lint.outputs.jsdoc_count !=
|
|
82
|
+
- name: JSDoc violations detected (non-blocking)
|
|
83
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
85
84
|
run: |
|
|
86
85
|
echo "⚠️ JSDoc lint check failed with ${{ steps.jsdoc_lint.outputs.jsdoc_count }} violations (non-blocking)"
|
|
87
86
|
echo "--- JSDoc Violations ---"
|
|
88
87
|
cat jsdoc-lint-output.txt
|
|
89
88
|
|
|
90
|
-
|
|
89
|
+
- name: Upload JSDoc results
|
|
90
|
+
if: ${{ steps.jsdoc_lint.outputs.jsdoc_count != 0 }}
|
|
91
|
+
uses: actions/upload-artifact@v4
|
|
92
|
+
with:
|
|
93
|
+
name: jsdoc-lint-results
|
|
94
|
+
path: jsdoc-lint-output.txt
|
|
95
|
+
if-no-files-found: error
|
|
96
|
+
|
|
97
|
+
# Build to ensure the package is functional
|
|
91
98
|
- name: Build Node.js project
|
|
92
99
|
run: npm run build
|
|
93
100
|
|
|
@@ -109,7 +116,7 @@ jobs:
|
|
|
109
116
|
|
|
110
117
|
steps:
|
|
111
118
|
- name: Download clean source archive
|
|
112
|
-
uses: actions/download-artifact@
|
|
119
|
+
uses: actions/download-artifact@v5
|
|
113
120
|
with:
|
|
114
121
|
name: clean-source
|
|
115
122
|
path: ./
|
|
@@ -121,17 +128,17 @@ jobs:
|
|
|
121
128
|
run: rm clean-source.tar.gz
|
|
122
129
|
|
|
123
130
|
- name: Set up Node.js for npmjs
|
|
124
|
-
uses: actions/setup-node@
|
|
131
|
+
uses: actions/setup-node@v5
|
|
125
132
|
with:
|
|
126
133
|
node-version: 24
|
|
127
134
|
registry-url: https://registry.npmjs.org/
|
|
128
135
|
cache: npm
|
|
129
136
|
cache-dependency-path: package-lock.json
|
|
130
137
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
138
|
+
#- name: Show Node.js and npm versions
|
|
139
|
+
# run: |
|
|
140
|
+
# echo "Node.js version: $(node -v)"
|
|
141
|
+
# echo "npm version: $(npm -v)"
|
|
135
142
|
|
|
136
143
|
- name: Upgrade npm
|
|
137
144
|
run: |
|
|
@@ -170,7 +177,7 @@ jobs:
|
|
|
170
177
|
|
|
171
178
|
steps:
|
|
172
179
|
- name: Download clean source archive
|
|
173
|
-
uses: actions/download-artifact@
|
|
180
|
+
uses: actions/download-artifact@v5
|
|
174
181
|
with:
|
|
175
182
|
name: clean-source
|
|
176
183
|
path: ./
|
|
@@ -182,17 +189,17 @@ jobs:
|
|
|
182
189
|
run: rm clean-source.tar.gz
|
|
183
190
|
|
|
184
191
|
- name: Set up Node.js for GPR
|
|
185
|
-
uses: actions/setup-node@
|
|
192
|
+
uses: actions/setup-node@v5
|
|
186
193
|
with:
|
|
187
194
|
node-version: 24
|
|
188
195
|
registry-url: https://npm.pkg.github.com/
|
|
189
196
|
cache: npm
|
|
190
197
|
cache-dependency-path: package-lock.json
|
|
191
198
|
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
199
|
+
#- name: Show Node.js and npm versions
|
|
200
|
+
# run: |
|
|
201
|
+
# echo "Node.js version: $(node -v)"
|
|
202
|
+
# echo "npm version: $(npm -v)"
|
|
196
203
|
|
|
197
204
|
- name: Upgrade npm
|
|
198
205
|
run: |
|
|
@@ -209,7 +216,7 @@ jobs:
|
|
|
209
216
|
|
|
210
217
|
- name: Update package name for GPR
|
|
211
218
|
run: |
|
|
212
|
-
sed -i 's/"name": "
|
|
219
|
+
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/web"/' package.json
|
|
213
220
|
|
|
214
221
|
- name: Verify version not already published
|
|
215
222
|
run: |
|
package/.node-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.
|
|
1
|
+
24.9.0
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
24.
|
|
1
|
+
24.9.0
|
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,42 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.17.2] - 2025-09-27
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Bumped version to `v1.17.2`.
|
|
30
|
+
- Updated generator metadata in `app.html` to reflect `SvelteKit 2.43.5`.
|
|
31
|
+
- Updated Node.js version in `.node-version` and `.nvmrc` to `24.9.0`.
|
|
32
|
+
- Updated `actions/checkout`, `actions/setup-node`, and `actions/download-artifact` in the following files in `.github/workflows`:
|
|
33
|
+
- `templates/publish.template.yml`
|
|
34
|
+
- `backup-branch.yml`
|
|
35
|
+
- `build-and-publish.yml`
|
|
36
|
+
- `check-security-txt-expiry.yml`
|
|
37
|
+
- `dependency-review.yml`
|
|
38
|
+
- `lighthouse.yml`
|
|
39
|
+
- `playwright.yml`
|
|
40
|
+
- `publish-test.yml`
|
|
41
|
+
- Updated JSDoc linting step and `sed` syntax in the following workflows:
|
|
42
|
+
- `templates/publish.template.yml`
|
|
43
|
+
- `publish-test.yml`
|
|
44
|
+
- Upgraded dependencies:
|
|
45
|
+
- `@eslint/compat` `^1.3.2` → `^1.4.0`
|
|
46
|
+
- `@eslint/js` `^9.35.0` → `^9.36.0`
|
|
47
|
+
- `@playwright/test` `^1.55.0` → `^1.55.1`
|
|
48
|
+
- `@sveltejs/kit` `2.42.1` → `2.43.5`
|
|
49
|
+
- `@sveltejs/vite-plugin-svelte` `^6.2.0` → `^6.2.1`
|
|
50
|
+
- `eslint` `^9.35.0` → `^9.36.0`
|
|
51
|
+
- `eslint-plugin-jsdoc` `^58.1.1` → `^60.4.1`
|
|
52
|
+
- `eslint-plugin-svelte` `^3.12.3` → `^3.12.4`
|
|
53
|
+
- `playwright` `^1.55.0` → `^1.55.1`
|
|
54
|
+
- `posthog-js` `^1.266.0` → `^1.268.6`
|
|
55
|
+
- `svelte` `5.39.1` → `5.39.6`
|
|
56
|
+
- `svelte-check` `^4.3.1` → `^4.3.2`
|
|
57
|
+
- `svelte-eslint-parser` `^1.3.2` → `^1.3.3`
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
25
61
|
## [1.17.1] - 2025-09-17
|
|
26
62
|
|
|
27
63
|
### Security
|
|
@@ -30,6 +66,10 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
30
66
|
- Forced `tmp` to `>=0.2.4` (resolves CVE-2025-54798 reported via `@lhci/cli`).
|
|
31
67
|
- Forced `cookie` to `^1.0.0` (used by `@sveltejs/kit` and `@lhci/cli`).
|
|
32
68
|
|
|
69
|
+
### Changed
|
|
70
|
+
|
|
71
|
+
- Bumped version to `v1.17.1`.
|
|
72
|
+
|
|
33
73
|
---
|
|
34
74
|
|
|
35
75
|
## [1.17.0] - 2025-09-17
|
|
@@ -55,6 +95,7 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
55
95
|
|
|
56
96
|
### Changed
|
|
57
97
|
|
|
98
|
+
- Bumped version to `v1.17.0`.
|
|
58
99
|
- Cleaned up Playwright E2E tests:
|
|
59
100
|
- Removed brittle `toHaveTitle` assertions causing CI failures.
|
|
60
101
|
- Standardized footer checks to use helper function.
|
|
@@ -832,7 +873,8 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
832
873
|
|
|
833
874
|
<!-- Link references -->
|
|
834
875
|
|
|
835
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.17.
|
|
876
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.17.2...HEAD
|
|
877
|
+
[1.17.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.2
|
|
836
878
|
[1.17.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.1
|
|
837
879
|
[1.17.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.17.0
|
|
838
880
|
[1.16.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.16.0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.2",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -79,33 +79,33 @@
|
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"dompurify": "^3.2.7",
|
|
82
|
-
"posthog-js": "^1.
|
|
82
|
+
"posthog-js": "^1.268.6",
|
|
83
83
|
"semver": "^7.7.2",
|
|
84
|
-
"svelte": "5.39.
|
|
84
|
+
"svelte": "5.39.6"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@eslint/compat": "^1.
|
|
88
|
-
"@eslint/js": "^9.
|
|
87
|
+
"@eslint/compat": "^1.4.0",
|
|
88
|
+
"@eslint/js": "^9.36.0",
|
|
89
89
|
"@lhci/cli": "^0.15.1",
|
|
90
|
-
"@playwright/test": "^1.55.
|
|
90
|
+
"@playwright/test": "^1.55.1",
|
|
91
91
|
"@sveltejs/adapter-netlify": "^5.2.3",
|
|
92
|
-
"@sveltejs/kit": "2.
|
|
93
|
-
"@sveltejs/vite-plugin-svelte": "^6.2.
|
|
92
|
+
"@sveltejs/kit": "2.43.5",
|
|
93
|
+
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
94
94
|
"@testing-library/jest-dom": "^6.8.0",
|
|
95
95
|
"@testing-library/svelte": "^5.2.8",
|
|
96
96
|
"@vitest/coverage-v8": "^3.2.4",
|
|
97
97
|
"autoprefixer": "^10.4.21",
|
|
98
98
|
"browserslist": "^4.26.2",
|
|
99
|
-
"eslint": "^9.
|
|
99
|
+
"eslint": "^9.36.0",
|
|
100
100
|
"eslint-config-prettier": "^10.1.8",
|
|
101
|
-
"eslint-plugin-jsdoc": "^
|
|
102
|
-
"eslint-plugin-svelte": "^3.12.
|
|
101
|
+
"eslint-plugin-jsdoc": "^60.4.1",
|
|
102
|
+
"eslint-plugin-svelte": "^3.12.4",
|
|
103
103
|
"globals": "^16.4.0",
|
|
104
104
|
"jsdom": "26.1.0",
|
|
105
105
|
"lightningcss": "^1.30.1",
|
|
106
106
|
"markdownlint": "^0.38.0",
|
|
107
107
|
"markdownlint-cli2": "^0.18.1",
|
|
108
|
-
"playwright": "^1.55.
|
|
108
|
+
"playwright": "^1.55.1",
|
|
109
109
|
"postcss": "^8.5.6",
|
|
110
110
|
"prettier": "^3.6.2",
|
|
111
111
|
"prettier-plugin-svelte": "^3.4.0",
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
"stylelint-config-html": "^1.1.0",
|
|
114
114
|
"stylelint-config-recommended": "^17.0.0",
|
|
115
115
|
"stylelint-order": "^7.0.0",
|
|
116
|
-
"svelte-check": "^4.3.
|
|
117
|
-
"svelte-eslint-parser": "^1.3.
|
|
116
|
+
"svelte-check": "^4.3.2",
|
|
117
|
+
"svelte-eslint-parser": "^1.3.3",
|
|
118
118
|
"svelte-preprocess": "^6.0.3",
|
|
119
119
|
"typescript": "^5.9.2",
|
|
120
|
-
"vite": "^7.1.
|
|
120
|
+
"vite": "^7.1.7",
|
|
121
121
|
"vite-plugin-lightningcss": "^0.0.5",
|
|
122
122
|
"vite-tsconfig-paths": "^5.1.4",
|
|
123
123
|
"vitest": "^3.2.4"
|
package/src/app.html
CHANGED