dw-mc 0.1.0 → 0.2.0
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/README.md +1 -0
- package/dist/bin.js +702 -469
- package/dist/bin.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dw-mc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A local CLI that keeps the state of my open pull requests on disk, reads GitHub through gh, runs code reviews through local agent CLIs, and shows what every PR waits on.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Dominik Woźniak",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"format": "oxfmt --check --disable-nested-config .",
|
|
49
49
|
"format:fix": "oxfmt --disable-nested-config .",
|
|
50
50
|
"test": "vitest run",
|
|
51
|
-
"check": "pnpm lint && pnpm format && pnpm typecheck && pnpm test && pnpm build"
|
|
51
|
+
"check": "pnpm lint && pnpm format && pnpm typecheck && pnpm test && pnpm build",
|
|
52
|
+
"release": "pnpm check && changeset publish"
|
|
52
53
|
}
|
|
53
54
|
}
|