@pkgseer/cli 0.4.9 → 0.4.10

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/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  version
4
- } from "./shared/chunk-bahf01jh.js";
4
+ } from "./shared/chunk-5nhq42tx.js";
5
5
 
6
6
  // src/cli.ts
7
7
  import { Command } from "commander";
@@ -1023,7 +1023,6 @@ var VersionDiffDocument = gql`
1023
1023
  removed
1024
1024
  moved
1025
1025
  modified
1026
- unchanged
1027
1026
  breaking
1028
1027
  behaviorChange
1029
1028
  }
@@ -3094,7 +3093,7 @@ function formatDiffResult(data) {
3094
3093
  const s = data.summary;
3095
3094
  lines.push("Summary:");
3096
3095
  lines.push(` Added: ${s.added} Removed: ${s.removed} Modified: ${s.modified} Moved: ${s.moved}`);
3097
- lines.push(` Unchanged: ${s.unchanged} Breaking: ${s.breaking} Behavior changes: ${s.behaviorChange}`);
3096
+ lines.push(` Breaking: ${s.breaking} Behavior changes: ${s.behaviorChange}`);
3098
3097
  if (data.hasMore) {
3099
3098
  lines.push(" (more changes available, increase --limit)");
3100
3099
  }
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  version
3
- } from "./shared/chunk-bahf01jh.js";
3
+ } from "./shared/chunk-5nhq42tx.js";
4
4
  export {
5
5
  version
6
6
  };
@@ -1,4 +1,4 @@
1
1
  // package.json
2
- var version = "0.4.9";
2
+ var version = "0.4.10";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pkgseer/cli",
3
3
  "description": "CLI companion for PkgSeer - package intelligence for developers and AI assistants",
4
- "version": "0.4.9",
4
+ "version": "0.4.10",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -27,6 +27,8 @@
27
27
  "dev": "bun run ./src/cli.ts",
28
28
  "inspector": "npx @modelcontextprotocol/inspector bun run dev mcp",
29
29
  "test": "bun test",
30
+ "e2e": "bun test ./e2e/code-navigation.e2e.ts ./e2e/code-graph.e2e.ts ./e2e/package-intel.e2e.ts ./e2e/docs.e2e.ts ./e2e/search.e2e.ts --timeout 60000",
31
+ "e2e:update": "UPDATE_BASELINES=1 bun test ./e2e/code-navigation.e2e.ts ./e2e/code-graph.e2e.ts ./e2e/package-intel.e2e.ts ./e2e/docs.e2e.ts ./e2e/search.e2e.ts --timeout 60000",
30
32
  "typecheck": "tsc",
31
33
  "format": "biome format --write .",
32
34
  "format:check": "biome format .",