@md2do/cli 0.2.2 → 0.2.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 +26 -0
- package/coverage/coverage-final.json +9 -9
- package/coverage/index.html +7 -7
- package/coverage/lcov-report/index.html +7 -7
- package/coverage/lcov-report/src/cli.ts.html +53 -5
- package/coverage/lcov-report/src/commands/index.html +5 -5
- package/coverage/lcov-report/src/commands/index.ts.html +1 -1
- package/coverage/lcov-report/src/commands/list.ts.html +49 -10
- package/coverage/lcov-report/src/commands/stats.ts.html +1 -1
- package/coverage/lcov-report/src/commands/todoist.ts.html +1 -1
- package/coverage/lcov-report/src/formatters/index.html +1 -1
- package/coverage/lcov-report/src/formatters/json.ts.html +1 -1
- package/coverage/lcov-report/src/formatters/pretty.ts.html +1 -1
- package/coverage/lcov-report/src/index.html +5 -5
- package/coverage/lcov-report/src/index.ts.html +1 -1
- package/coverage/lcov-report/src/scanner.ts.html +1 -1
- package/coverage/lcov.info +31 -2
- package/coverage/src/cli.ts.html +53 -5
- package/coverage/src/commands/index.html +5 -5
- package/coverage/src/commands/index.ts.html +1 -1
- package/coverage/src/commands/list.ts.html +49 -10
- package/coverage/src/commands/stats.ts.html +1 -1
- package/coverage/src/commands/todoist.ts.html +1 -1
- package/coverage/src/formatters/index.html +1 -1
- package/coverage/src/formatters/json.ts.html +1 -1
- package/coverage/src/formatters/pretty.ts.html +1 -1
- package/coverage/src/index.html +5 -5
- package/coverage/src/index.ts.html +1 -1
- package/coverage/src/scanner.ts.html +1 -1
- package/dist/cli.js +7 -6
- package/dist/index.js +7 -6
- package/package.json +4 -4
- package/src/commands/list.ts +19 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @md2do/cli
|
|
2
2
|
|
|
3
|
+
## 0.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#17](https://github.com/TeamNickHart/md2do/pull/17) [`c12adb3`](https://github.com/TeamNickHart/md2do/commit/c12adb32b2b50ca89bf22cdab57ca63498ba3dee) Thanks [@nickhart](https://github.com/nickhart)! - ## Security & Tooling Updates
|
|
8
|
+
|
|
9
|
+
### Security Fixes
|
|
10
|
+
- Fix esbuild security vulnerability (GHSA-67mh-4wv8-2f99) via pnpm override forcing esbuild >= 0.25.0
|
|
11
|
+
|
|
12
|
+
### Developer Experience
|
|
13
|
+
- Add @vitest/coverage-v8 dependency to enable code coverage reporting
|
|
14
|
+
- Update prettier to latest patch version (3.1.0 → 3.8.1)
|
|
15
|
+
- Update @modelcontextprotocol/sdk (1.25.2 → 1.25.3)
|
|
16
|
+
|
|
17
|
+
### Testing
|
|
18
|
+
- All 401 unit tests passing
|
|
19
|
+
- All 35 E2E tests passing
|
|
20
|
+
- Coverage reporting now enabled across all packages
|
|
21
|
+
|
|
22
|
+
No breaking changes or API changes in this release.
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`c12adb3`](https://github.com/TeamNickHart/md2do/commit/c12adb32b2b50ca89bf22cdab57ca63498ba3dee)]:
|
|
25
|
+
- @md2do/core@0.2.3
|
|
26
|
+
- @md2do/config@0.2.3
|
|
27
|
+
- @md2do/todoist@0.2.3
|
|
28
|
+
|
|
3
29
|
## 0.2.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|