diffprism 0.7.0 → 0.8.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/dist/bin.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
- package/ui-dist/assets/index-BtEI7qe5.js +224 -0
- package/ui-dist/assets/index-Dlg-Xehq.css +1 -0
- package/ui-dist/index.html +2 -2
- package/ui-dist/assets/index-CwE0rW9A.css +0 -1
- package/ui-dist/assets/index-Dvu5WbvI.js +0 -209
package/dist/bin.js
CHANGED
|
@@ -42,7 +42,7 @@ async function serve() {
|
|
|
42
42
|
|
|
43
43
|
// cli/src/index.ts
|
|
44
44
|
var program = new Command();
|
|
45
|
-
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.
|
|
45
|
+
program.name("diffprism").description("Local-first code review tool for agent-generated changes").version(true ? "0.8.0" : "0.0.0-dev");
|
|
46
46
|
program.command("review [ref]").description("Open a browser-based diff review").option("--staged", "Review staged changes").option("--unstaged", "Review unstaged changes").option("-t, --title <title>", "Review title").option("--dev", "Use Vite dev server with HMR instead of static files").action(review);
|
|
47
47
|
program.command("serve").description("Start the MCP server for Claude Code integration").action(serve);
|
|
48
48
|
program.parse();
|
package/dist/mcp-server.js
CHANGED