lostconf 0.2.0 → 0.2.1
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 +9 -3
- package/README.md +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.1] - 2026-01-26
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Minor documentation updates
|
|
14
|
+
|
|
10
15
|
## [0.2.0] - 2026-01-26
|
|
11
16
|
|
|
12
17
|
### Added
|
|
@@ -78,6 +83,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
78
83
|
- Examples for CI/CD integration
|
|
79
84
|
- Contributing guidelines
|
|
80
85
|
|
|
81
|
-
[Unreleased]: https://github.com/
|
|
82
|
-
[0.2.
|
|
83
|
-
[0.
|
|
86
|
+
[Unreleased]: https://github.com/mensfeld/lostconf/compare/v0.2.1...HEAD
|
|
87
|
+
[0.2.1]: https://github.com/mensfeld/lostconf/compare/v0.2.0...v0.2.1
|
|
88
|
+
[0.2.0]: https://github.com/mensfeld/lostconf/releases/tag/v0.2.0
|
|
89
|
+
[0.1.0]: https://github.com/mensfeld/lostconf/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# lostconf
|
|
2
2
|
|
|
3
|
-
[](https://github.com/mensfeld/lostconf/actions/workflows/ci.yml)
|
|
4
4
|
[](https://www.npmjs.com/package/lostconf)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
|
|
@@ -411,7 +411,7 @@ Contributions are welcome! Here's how to get started:
|
|
|
411
411
|
|
|
412
412
|
```bash
|
|
413
413
|
# Clone the repository
|
|
414
|
-
git clone https://github.com/
|
|
414
|
+
git clone https://github.com/mensfeld/lostconf.git
|
|
415
415
|
cd lostconf
|
|
416
416
|
|
|
417
417
|
# Install dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lostconf",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A meta-linter that detects stale references in configuration files",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "https://github.com/
|
|
37
|
+
"url": "https://github.com/mensfeld/lostconf.git"
|
|
38
38
|
},
|
|
39
39
|
"bugs": {
|
|
40
|
-
"url": "https://github.com/
|
|
40
|
+
"url": "https://github.com/mensfeld/lostconf/issues"
|
|
41
41
|
},
|
|
42
|
-
"homepage": "https://github.com/
|
|
42
|
+
"homepage": "https://github.com/mensfeld/lostconf#readme",
|
|
43
43
|
"keywords": [
|
|
44
44
|
"linter",
|
|
45
45
|
"config",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"prettier",
|
|
50
50
|
"cleanup"
|
|
51
51
|
],
|
|
52
|
-
"author": "",
|
|
52
|
+
"author": "Maciej Mensfeld <maciej@mensfeld.pl>",
|
|
53
53
|
"license": "MIT",
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=18.0.0"
|