@networkpro/blog 1.5.7 → 1.5.8
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/.markdownlint.mjs +1 -0
- package/CHANGELOG.md +14 -1
- package/package.json +2 -2
package/.markdownlint.mjs
CHANGED
|
@@ -16,6 +16,7 @@ export default {
|
|
|
16
16
|
customRules: [noSmartQuotes],
|
|
17
17
|
|
|
18
18
|
// Rule exceptions
|
|
19
|
+
MD060: false, // Pointless style enforcement — doesn't affect render output
|
|
19
20
|
MD041: false, // First line in file should be a top-level header
|
|
20
21
|
MD033: false, // Allow inline HTML
|
|
21
22
|
MD013: false, // Ignore line length
|
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,18 @@ formatting may vary.
|
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
+
## [1.5.8] - 2025-11-16
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Updated `.markdownlint.mjs` to ignore rule `MD060`, which is unnecessarily
|
|
24
|
+
strict and doesn't affect render output.
|
|
25
|
+
- Bumped project version to `v1.5.8`.
|
|
26
|
+
- Updated dependencies:
|
|
27
|
+
- `markdownlint-cli2` `^0.18.1` → `^0.19.0`
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
19
31
|
## [1.5.7] - 2025-11-12
|
|
20
32
|
|
|
21
33
|
### Added
|
|
@@ -484,7 +496,8 @@ formatting may vary.
|
|
|
484
496
|
|
|
485
497
|
<!-- Link references -->
|
|
486
498
|
|
|
487
|
-
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.
|
|
499
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.5.8...HEAD
|
|
500
|
+
[1.5.8]: https://github.com/netwk-pro/blog/releases/tag/v1.5.8
|
|
488
501
|
[1.5.7]: https://github.com/netwk-pro/blog/releases/tag/v1.5.7
|
|
489
502
|
[1.5.6]: https://github.com/netwk-pro/blog/releases/tag/v1.5.6
|
|
490
503
|
[1.5.5]: https://github.com/netwk-pro/blog/releases/tag/v1.5.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.8",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"eslint-config-prettier": "^10.1.8",
|
|
60
60
|
"globals": "^16.5.0",
|
|
61
61
|
"markdownlint": "^0.39.0",
|
|
62
|
-
"markdownlint-cli2": "^0.
|
|
62
|
+
"markdownlint-cli2": "^0.19.0",
|
|
63
63
|
"npm-run-all": "^4.1.5",
|
|
64
64
|
"postcss": "^8.5.6",
|
|
65
65
|
"prettier": "3.6.2",
|