@networkpro/web 1.5.2 → 1.5.6

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 (97) hide show
  1. package/CODE_OF_CONDUCT.md +1 -0
  2. package/LICENSE.md +2 -39
  3. package/README.md +256 -32
  4. package/cspell.json +56 -0
  5. package/eslint.config.mjs +2 -1
  6. package/package.json +45 -52
  7. package/playwright.config.js +1 -0
  8. package/postcss.config.mjs +1 -0
  9. package/scripts/auditScripts.js +1 -0
  10. package/scripts/bundleCss.js +1 -0
  11. package/scripts/checkEnv.js +1 -0
  12. package/scripts/checkNode.js +39 -18
  13. package/scripts/checkVersions.js +1 -0
  14. package/scripts/flattenHeaders.js +1 -0
  15. package/scripts/validateHeaders.js +1 -0
  16. package/src/app.d.ts +8 -0
  17. package/src/app.html +1 -0
  18. package/src/global.d.ts +1 -0
  19. package/src/hooks.client.ts +1 -0
  20. package/src/lib/components/Badges.svelte +1 -0
  21. package/src/lib/components/ContainerSection.svelte +1 -0
  22. package/src/lib/components/FullWidthSection.svelte +15 -1
  23. package/src/lib/components/LegalNav.svelte +1 -0
  24. package/src/lib/components/Logo.svelte +1 -0
  25. package/src/lib/components/MetaTags.svelte +1 -0
  26. package/src/lib/components/PWAInstallButton.svelte +1 -0
  27. package/src/lib/components/RedirectPage.svelte +20 -12
  28. package/src/lib/components/SocialMedia.svelte +1 -0
  29. package/src/lib/components/foss/FossFeatures.svelte +1 -0
  30. package/src/lib/components/foss/FossItemContent.svelte +1 -0
  31. package/src/lib/components/layout/Footer.svelte +3 -0
  32. package/src/lib/components/layout/HeaderDefault.svelte +1 -0
  33. package/src/lib/components/layout/HeaderHome.svelte +1 -0
  34. package/src/lib/images.js +4 -1
  35. package/src/lib/img/logo-web.png +0 -0
  36. package/src/lib/img/logo-web.webp +0 -0
  37. package/src/lib/index.js +1 -0
  38. package/src/lib/meta.js +1 -0
  39. package/src/lib/pages/AboutContent.svelte +1 -0
  40. package/src/lib/pages/FossContent.svelte +1 -0
  41. package/src/lib/pages/HomeContent.svelte +1 -0
  42. package/src/lib/pages/LicenseContent.svelte +33 -3
  43. package/src/lib/pages/PrivacyContent.svelte +33 -12
  44. package/src/lib/pages/TermsConditionsContent.svelte +3 -0
  45. package/src/lib/pages/TermsUseContent.svelte +3 -0
  46. package/src/lib/registerServiceWorker.js +3 -0
  47. package/src/lib/styles/css/default.css +1 -0
  48. package/src/lib/styles/css/global.css +1 -0
  49. package/src/lib/styles/css/normalize.css +1 -0
  50. package/src/lib/styles/css/offline.css +1 -0
  51. package/src/lib/styles/css/style.css +1 -0
  52. package/src/lib/styles/fa-global.css +1 -0
  53. package/src/lib/styles/global.min.css +1 -0
  54. package/src/lib/styles/index.js +2 -1
  55. package/src/lib/types/metadata.js +1 -0
  56. package/src/lib/unregisterServiceWorker.js +1 -0
  57. package/src/lib/utils/utm.js +1 -0
  58. package/src/routes/+error.svelte +1 -0
  59. package/src/routes/+layout.js +1 -0
  60. package/src/routes/+layout.svelte +1 -0
  61. package/src/routes/+page.server.js +1 -0
  62. package/src/routes/+page.svelte +1 -0
  63. package/src/routes/about/+page.server.js +1 -0
  64. package/src/routes/about/+page.svelte +1 -0
  65. package/src/routes/consultation/+page.svelte +1 -0
  66. package/src/routes/contact/+page.svelte +1 -0
  67. package/src/routes/foss-spotlight/+page.server.js +1 -0
  68. package/src/routes/foss-spotlight/+page.svelte +1 -0
  69. package/src/routes/license/+page.server.js +1 -0
  70. package/src/routes/license/+page.svelte +1 -0
  71. package/src/routes/privacy-policy/+page.server.js +1 -0
  72. package/src/routes/privacy-policy/+page.svelte +1 -0
  73. package/src/routes/privacy-rights/+page.svelte +1 -0
  74. package/src/routes/terms-conditions/+page.server.js +1 -0
  75. package/src/routes/terms-conditions/+page.svelte +1 -0
  76. package/src/routes/terms-of-use/+page.server.js +1 -0
  77. package/src/routes/terms-of-use/+page.svelte +1 -0
  78. package/src/service-worker.d.ts +8 -0
  79. package/src/service-worker.js +1 -0
  80. package/static/docs/Home.md +63 -0
  81. package/static/docs/extensions.md +58 -0
  82. package/static/sitemap.xml +7 -7
  83. package/stylelint.config.js +2 -1
  84. package/svelte.config.js +1 -0
  85. package/tests/e2e/app.spec.js +1 -0
  86. package/tests/e2e/mobile.spec.js +1 -0
  87. package/tests/unit/auditScripts.test.js +1 -0
  88. package/tests/unit/checkEnv.test.js +1 -0
  89. package/tests/unit/checkVersions.test.js +1 -0
  90. package/tests/unit/demo.test.js +1 -0
  91. package/tests/unit/routes/page.svelte.test.js +1 -0
  92. package/tests/unit/unregisterServiceWorker.test.js +1 -0
  93. package/tests/unit/utm.test.js +1 -0
  94. package/{tsconfig.custom.json → tsconfig.custom.jsonc} +2 -1
  95. package/vite.config.js +1 -0
  96. package/vitest.config.client.js +1 -0
  97. package/vitest.config.server.js +1 -0
@@ -1,10 +1,13 @@
1
1
  <!-- ==========================================================================
2
2
  src/lib/pages/TermsUseContent.svelte
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.
6
7
  ========================================================================== -->
7
8
 
9
+ <!-- cspell:ignore tandc -->
10
+
8
11
  <script>
9
12
  import { base } from "$app/paths";
10
13
 
@@ -1,10 +1,13 @@
1
1
  /* ==========================================================================
2
2
  src/lib/registerServiceWorker.js
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.
6
7
  ========================================================================== */
7
8
 
9
+ // cspell:ignore nosw beforeinstallprompt
10
+
8
11
  /**
9
12
  * Registers the service worker and handles update lifecycle, install prompt, and
10
13
  * browser/environment compatibility checks. This supports offline usage and PWA behavior.
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/default.css
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/css/global.css
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/normalize.css
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.
6
7
  =========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/css/offline.css
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.
6
7
  =========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/style.css
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.
6
7
  =========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/fa-global.css
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /*! ==========================================================================
2
2
  src/lib/styles/global.min.css
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.
6
7
  =========================================================================== */
@@ -1,11 +1,12 @@
1
1
  /* ==========================================================================
2
2
  src/lib/styles/index.js
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.
6
7
  ========================================================================== */
7
8
 
8
- // Import transformed and minified stylsheets
9
+ // Import transformed and minified stylesheets
9
10
  import "./global.min.css";
10
11
  import "./fa-global.css";
11
12
 
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/lib/types/metadata.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/lib/unregisterServiceWorker.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/lib/utils/utm.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/+error.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/+layout.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/+layout.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/about/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/about/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/consultation/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/contact/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/foss-spotlight/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/lib/pages/FossSpotlightContent.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/license/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/license/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/privacy-policy/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/privacy-policy/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/privacy-rights/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/terms-conditions/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/terms-conditions/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/routes/terms-of-use/+page.server.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  <!-- ==========================================================================
2
2
  src/routes/terms-of-use/+page.svelte
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.
6
7
  ========================================================================== -->
@@ -1,3 +1,11 @@
1
+ /* ==========================================================================
2
+ src/service-worker.d.ts
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
  /// <reference lib="webworker" />
2
10
 
3
11
  // Give access to ServiceWorkerGlobalScope when using JSDoc
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  src/service-worker.js
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.
6
7
  ========================================================================== */
@@ -0,0 +1,63 @@
1
+ # 🧠 Network Pro — Developer Wiki
2
+
3
+ > Internal documentation and contributor onboarding resources for the [Network Pro&trade; Web Presence](https://github.com/netwk-pro/netwk-pro.github.io) project.
4
+ > **Note:** Most of the below links are currently non-functional and serve solely as placeholders. Once pages are added, the placeholder links will be removed.
5
+
6
+ ---
7
+
8
+ ## 📌 Overview
9
+
10
+ This wiki provides documentation, conventions, and internal tooling references to support development, testing, and deployment workflows across the Network Pro stack.
11
+
12
+ ---
13
+
14
+ ## 📁 Sections
15
+
16
+ ### 🛠 Setup & Tooling
17
+
18
+ - [Environment Requirements](Environment-Requirements.md)
19
+ Node, npm, version managers, OS-specific notes.
20
+ - [Editor Configuration](Editor-Configuration.md)
21
+ Workspace settings, recommended VS Code/VSCodium extensions.
22
+ - [CLI Scripts Reference](CLI-Scripts.md)
23
+ `npm run` scripts explained with tips for usage.
24
+
25
+ ### 🚧 Development
26
+
27
+ - [Local Development](Local-Development.md)
28
+ Running the project, debugging, hot reload, ENV_MODE behavior.
29
+ - [Testing & Audits](Testing-&-Audits.md)
30
+ Vitest, Playwright, Lighthouse, CI reports.
31
+ - [Styling & Components](Styling-&-Components.md)
32
+ Design system, reusable components, naming conventions.
33
+
34
+ ### 🚀 CI/CD
35
+
36
+ - [GitHub Actions Workflows](CI-CD-Workflows.md)
37
+ How our deploy/audit pipelines are structured.
38
+ - [Versioning & Releases](Versioning-&-Releases.md)
39
+ Publishing, changelog generation, NPM tagging conventions.
40
+
41
+ ### 📚 Documentation Maintenance
42
+
43
+ - [Contributing to the Wiki](Contributing-to-the-Wiki.md)
44
+ Format, tone, and content guidelines for internal docs.
45
+ - [MkDocs Subsite Overview](MkDocs-Subsite.md)
46
+ How the public documentation repo is built and deployed.
47
+
48
+ ---
49
+
50
+ ## 📎 Related Repositories
51
+
52
+ - [Main Site (Web)](https://github.com/netwk-pro/netwk-pro.github.io)
53
+ - [Documentation Site](https://github.com/netwk-pro/docs)
54
+ - [Blog Subsite](https://github.com/netwk-pro/blog)
55
+ - [GitHub Wiki](https://github.com/netwk-pro/netwk-pro.github.io/wiki)
56
+
57
+ ---
58
+
59
+ ## 🤝 Contributing
60
+
61
+ If you're new to the project, start with [Environment Requirements](Environment-Requirements.md) and [Local Development](Local-Development.md). See [Contributing to the Wiki](Contributing-to-the-Wiki.md) for how to add or edit content.
62
+
63
+ ---
@@ -0,0 +1,58 @@
1
+ # 🧩 Recommended VS Code Extensions
2
+
3
+ To streamline development and align with project conventions, we recommend the following [VSCodium](https://vscodium.com/) and [Visual Studio Code](https://code.visualstudio.com/) (VS Code) extensions. These tools enhance productivity, enforce code quality, and ensure consistency across the codebase.
4
+
5
+ > Note: While these extensions are optional, they are thoughtfully curated to complement our development workflow.
6
+
7
+ <!-- cspell:disable -->
8
+
9
+ | Extension Name | Identifier | Description |
10
+ | ------------------------- | --------------------------------------- | --------------------------------------------------------------------------- |
11
+ | Prettier - Code formatter | `esbenp.prettier-vscode` | Formats code consistently across various languages. |
12
+ | ESLint | `dbaeumer.vscode-eslint` | Integrates ESLint into VS Code for JavaScript and TypeScript linting. |
13
+ | Stylelint | `stylelint.vscode-stylelint` | Lints CSS/SCSS and enforces consistent styling conventions. |
14
+ | Markdownlint | `DavidAnson.vscode-markdownlint` | Provides linting and style checking for Markdown files. |
15
+ | EditorConfig for VS Code | `EditorConfig.EditorConfig` | Maintains consistent coding styles between different editors and IDEs. |
16
+ | Svelte for VS Code | `svelte.svelte-vscode` | Offers syntax highlighting, code completion, and error checking for Svelte. |
17
+ | Code Spell Checker | `streetsidesoftware.code-spell-checker` | Inline spell checking (comments, Markdown, etc.) |
18
+
19
+ ## 🛠 Installation
20
+
21
+ To install these extensions, you can use the following command in your terminal:
22
+
23
+ ```bash
24
+ code --install-extension esbenp.prettier-vscode
25
+ code --install-extension dbaeumer.vscode-eslint
26
+ code --install-extension stylelint.vscode-stylelint
27
+ code --install-extension DavidAnson.vscode-markdownlint
28
+ code --install-extension EditorConfig.EditorConfig
29
+ code --install-extension svelte.svelte-vscode
30
+ code --install-extension volta.volta
31
+ code --install-extension eamodio.gitlens
32
+ code --install-extension github.vscode-pull-request-github
33
+ ```
34
+
35
+ <!-- cspell:enable -->
36
+
37
+ Alternatively, you can search for each extension by name in [Open VSX Registry](https://open-vsx.org/) and/or the [VS Code Extensions Marketplace](https://marketplace.visualstudio.com/vscode) and install them individually.
38
+
39
+ ## 📁 Workspace Recommendations
40
+
41
+ Our repository includes a `.vscode/extensions.json` file that specifies these recommended extensions. When you open the project in VS Code, you'll be prompted to install any missing recommended extensions. This ensures a consistent development environment across all contributors.
42
+
43
+ ## 🔧 Configuration
44
+
45
+ The `.vscode/settings.json` file in the repository contains workspace-specific settings that align with our coding standards and practices. These settings include formatter configurations, linting rules, and other preferences to maintain code quality and consistency.
46
+
47
+ ---
48
+
49
+ <div style="font-size: 12px; text-align: center;">
50
+
51
+ Copyright &copy; 2025
52
+ **[Network Pro Strategies](https://netwk.pro) (Network Pro&trade;)**
53
+
54
+ Network Pro&trade;, the shield logo, and the "Locking Down Networks&trade;" slogan are [trademarks](https://netwk.pro/license#trademark) of Network Pro Strategies.
55
+
56
+ Licensed under **[CC BY 4.0](https://netwk.pro/license#cc-by)** and the **[GNU GPL](https://netwk.pro/license#gnu-gpl)**, as published by the [Free Software Foundation](https://www.fsf.org), either version 3 of the License, or (at your option) any later version.
57
+
58
+ </div>
@@ -7,7 +7,7 @@
7
7
 
8
8
  <loc>https://netwk.pro</loc>
9
9
 
10
- <lastmod>2025-05-18</lastmod>
10
+ <lastmod>2025-05-24</lastmod>
11
11
 
12
12
  <changefreq>weekly</changefreq>
13
13
 
@@ -31,7 +31,7 @@
31
31
 
32
32
  <loc>https://netwk.pro/contact</loc>
33
33
 
34
- <lastmod>2025-05-18</lastmod>
34
+ <lastmod>2025-05-24</lastmod>
35
35
 
36
36
  <changefreq>monthly</changefreq>
37
37
 
@@ -43,7 +43,7 @@
43
43
 
44
44
  <loc>https://netwk.pro/privacy-rights</loc>
45
45
 
46
- <lastmod>2025-05-18</lastmod>
46
+ <lastmod>2025-05-24</lastmod>
47
47
 
48
48
  <changefreq>monthly</changefreq>
49
49
 
@@ -55,7 +55,7 @@
55
55
 
56
56
  <loc>https://netwk.pro/privacy-policy</loc>
57
57
 
58
- <lastmod>2025-05-18</lastmod>
58
+ <lastmod>2025-05-23</lastmod>
59
59
 
60
60
  <changefreq>monthly</changefreq>
61
61
 
@@ -67,7 +67,7 @@
67
67
 
68
68
  <loc>https://netwk.pro/license</loc>
69
69
 
70
- <lastmod>2025-05-18</lastmod>
70
+ <lastmod>2025-05-24</lastmod>
71
71
 
72
72
  <changefreq>monthly</changefreq>
73
73
 
@@ -79,7 +79,7 @@
79
79
 
80
80
  <loc>https://netwk.pro/terms-of-use</loc>
81
81
 
82
- <lastmod>2025-05-18</lastmod>
82
+ <lastmod>2025-05-21</lastmod>
83
83
 
84
84
  <changefreq>monthly</changefreq>
85
85
 
@@ -91,7 +91,7 @@
91
91
 
92
92
  <loc>https://netwk.pro/terms-conditions</loc>
93
93
 
94
- <lastmod>2025-05-18</lastmod>
94
+ <lastmod>2025-05-08</lastmod>
95
95
 
96
96
  <changefreq>monthly</changefreq>
97
97
 
@@ -1,8 +1,9 @@
1
1
  /* =========================================================================
2
2
  stylelint.config.js
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
- This file is part of Network Pro.
6
+ This file is part of Network Pro
6
7
  ========================================================================= */
7
8
 
8
9
  /** @type {import('stylelint').Config} */
package/svelte.config.js CHANGED
@@ -1,6 +1,7 @@
1
1
  /* =========================================================================
2
2
  svelte.config.js
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.
6
7
  ========================================================================= */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/e2e/app.spec.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/e2e/mobile.spec.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/auditScripts.test.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/checkEnv.test.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/checkVersions.test.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/demo.spec.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/routes/page.svelte.test.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/unregisterServiceWorker.test.js
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.
6
7
  ========================================================================== */
@@ -1,6 +1,7 @@
1
1
  /* ==========================================================================
2
2
  tests/unit/utm.test.js
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.
6
7
  ========================================================================== */