@networkpro/web 1.18.2 → 1.18.3
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/.editorconfig +2 -0
- package/.gitattributes +2 -1
- package/.prettierignore +2 -0
- package/.stylelintignore +2 -0
- package/CHANGELOG.md +18 -1
- package/CHANGELOG.template.md +8 -0
- package/README.md +1 -1
- package/package.json +1 -1
package/.editorconfig
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# ==========================================================================
|
|
1
2
|
# .editorconfig
|
|
2
3
|
#
|
|
3
4
|
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
@@ -7,6 +8,7 @@
|
|
|
7
8
|
# EditorConfig helps developers define and maintain consistent
|
|
8
9
|
# coding styles between different editors and IDEs
|
|
9
10
|
# See http://editorconfig.org/ for full details
|
|
11
|
+
# ==========================================================================
|
|
10
12
|
|
|
11
13
|
; top-most EditorConfig file
|
|
12
14
|
root = true
|
package/.gitattributes
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# ==========================================================================
|
|
1
2
|
# .gitattributes
|
|
2
3
|
#
|
|
3
4
|
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
@@ -13,7 +14,7 @@
|
|
|
13
14
|
# binary These files are binary and should be left untouched.
|
|
14
15
|
#
|
|
15
16
|
# Note that binary is a macro for -text -diff.
|
|
16
|
-
|
|
17
|
+
# ==========================================================================
|
|
17
18
|
|
|
18
19
|
## AUTO-DETECT
|
|
19
20
|
## Handle line endings automatically for files detected as
|
package/.prettierignore
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
# ==========================================================================
|
|
1
2
|
# .prettierignore
|
|
2
3
|
#
|
|
3
4
|
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
5
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
5
6
|
# This file is part of Network Pro.
|
|
7
|
+
# ==========================================================================
|
|
6
8
|
|
|
7
9
|
# Custom ignores
|
|
8
10
|
.markdownlint.jsonc
|
package/.stylelintignore
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
# ==========================================================================
|
|
1
2
|
# .stylelintignore
|
|
2
3
|
#
|
|
3
4
|
# Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
4
5
|
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
5
6
|
# This file is part of Network Pro.
|
|
7
|
+
# ==========================================================================
|
|
6
8
|
|
|
7
9
|
# Report files and test results
|
|
8
10
|
playwright-report
|
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.18.3] - 2025-09-27
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Bumped version to `v1.18.3`.
|
|
30
|
+
- Updated `README.md` to reflect hosting by Vercel.
|
|
31
|
+
- Standardized header in the following files:
|
|
32
|
+
- `.editorconfig`
|
|
33
|
+
- `.gitattributes`
|
|
34
|
+
- `.gitignore`
|
|
35
|
+
- `.prettierignore`
|
|
36
|
+
- `.stylelintignore`
|
|
37
|
+
- `CHANGELOG.template.md`
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
25
41
|
## [1.18.2] - 2025-09-27
|
|
26
42
|
|
|
27
43
|
### Changed
|
|
@@ -928,7 +944,8 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
928
944
|
|
|
929
945
|
<!-- Link references -->
|
|
930
946
|
|
|
931
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.18.
|
|
947
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.18.3...HEAD
|
|
948
|
+
[1.18.3]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.18.3
|
|
932
949
|
[1.18.2]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.18.2
|
|
933
950
|
[1.18.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.18.1
|
|
934
951
|
[1.18.0]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.18.0
|
package/CHANGELOG.template.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<!-- =====================================================================
|
|
2
|
+
CHANGELOG.template.md
|
|
3
|
+
|
|
4
|
+
Copyright © 2025 Network Pro Strategies (Network Pro™)
|
|
5
|
+
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
6
|
+
This file is part of Network Pro.
|
|
7
|
+
====================================================================== -->
|
|
8
|
+
|
|
1
9
|
# Changelog
|
|
2
10
|
|
|
3
11
|
<!-- markdownlint-disable -->
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ This file is part of Network Pro.
|
|
|
23
23
|
|
|
24
24
|
This GitHub repository powers the official web presence of **[Network Pro Strategies](https://netwk.pro/about)** — a privacy-first consultancy specializing in cybersecurity, network engineering, and information security. We also lead public advocacy efforts promoting digital privacy and responsible cyber policy.
|
|
25
25
|
|
|
26
|
-
Built with [SvelteKit](https://kit.svelte.dev/) and deployed via [
|
|
26
|
+
Built with [SvelteKit](https://kit.svelte.dev/) and deployed via [Vercel](https://vercel.com/).
|
|
27
27
|
[Blog](https://github.com/netwk-pro/blog) and [documentation](https://github.com/netwk-pro/docs) subsites built with [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/) and deployed via [GitHub Pages](https://pages.github.com/).
|
|
28
28
|
|
|
29
29
|
All infrastructure and data flows are designed with **maximum transparency, self-hosting, and user privacy** in mind.
|
package/package.json
CHANGED