@networkpro/blog 1.6.2 → 1.6.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/CHANGELOG.md +20 -0
- package/cspell.json +1 -0
- package/package.json +11 -11
- package/requirements.txt +2 -2
- package/vercel.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,26 @@ version increments reflecting both user-visible and operational impact.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.6.3] - 2026-03-04
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Bumped project version to `v1.6.3`.
|
|
24
|
+
- Updated frontend tooling dependencies:
|
|
25
|
+
- `autoprefixer` `^10.4.23` → `^10.4.27`
|
|
26
|
+
- `globals` `^17.1.0` → `^17.4.0`
|
|
27
|
+
- `stylelint` `^17.0.0` → `^17.4.0`
|
|
28
|
+
- `@eslint/js` `^9.39.2` → `^10.0.1`
|
|
29
|
+
- `@eslint/json` `^0.14.0` → `^1.0.1`
|
|
30
|
+
- `eslint` `^9.39.2` → `^10.0.2`
|
|
31
|
+
- `markdownlint-cli2` `^0.20.0` → `^0.21.0`
|
|
32
|
+
- `postcss` `^8.5.6` → `^8.5.8`
|
|
33
|
+
- Updated Python dependencies:
|
|
34
|
+
- `mkdocs-material` `9.7.0` → `9.7.3`
|
|
35
|
+
- `mkdocs-rss-plugin` `1.17.7` → `1.17.9`
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
19
39
|
## [1.6.2] - 2026-01-01
|
|
20
40
|
|
|
21
41
|
### Added
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -51,22 +51,22 @@
|
|
|
51
51
|
"prepare": "npx simple-git-hooks || echo ''"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@eslint/js": "^
|
|
55
|
-
"@eslint/json": "^0.
|
|
56
|
-
"autoprefixer": "^10.4.
|
|
54
|
+
"@eslint/js": "^10.0.1",
|
|
55
|
+
"@eslint/json": "^1.0.1",
|
|
56
|
+
"autoprefixer": "^10.4.27",
|
|
57
57
|
"browserslist": "^4.28.1",
|
|
58
|
-
"eslint": "^
|
|
58
|
+
"eslint": "^10.0.2",
|
|
59
59
|
"eslint-config-prettier": "^10.1.8",
|
|
60
|
-
"globals": "^17.
|
|
60
|
+
"globals": "^17.4.0",
|
|
61
61
|
"markdownlint": "^0.40.0",
|
|
62
|
-
"markdownlint-cli2": "^0.
|
|
62
|
+
"markdownlint-cli2": "^0.21.0",
|
|
63
63
|
"npm-run-all": "^4.1.5",
|
|
64
|
-
"postcss": "^8.5.
|
|
65
|
-
"prettier": "3.
|
|
64
|
+
"postcss": "^8.5.8",
|
|
65
|
+
"prettier": "3.8.1",
|
|
66
66
|
"simple-git-hooks": "^2.13.1",
|
|
67
|
-
"stylelint": "^
|
|
67
|
+
"stylelint": "^17.4.0",
|
|
68
68
|
"stylelint-config-html": "^1.1.0",
|
|
69
|
-
"stylelint-config-recommended": "^
|
|
69
|
+
"stylelint-config-recommended": "^18.0.0",
|
|
70
70
|
"stylelint-order": "^7.0.1"
|
|
71
71
|
},
|
|
72
72
|
"simple-git-hooks": {
|
package/requirements.txt
CHANGED
package/vercel.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
3
3
|
"version": 2,
|
|
4
|
-
"
|
|
4
|
+
"installCommand": "python -m venv .venv && . .venv/bin/activate && python -m pip install -r requirements.txt",
|
|
5
|
+
"buildCommand": ". .venv/bin/activate && python -m mkdocs build --clean --site-dir build",
|
|
5
6
|
"outputDirectory": "build",
|
|
6
7
|
|
|
7
8
|
"cleanUrls": true,
|