@pkgseer/cli 0.4.8 → 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-
|
|
4
|
+
} from "./shared/chunk-5nhq42tx.js";
|
|
5
5
|
|
|
6
6
|
// src/cli.ts
|
|
7
7
|
import { Command } from "commander";
|
|
@@ -355,6 +355,7 @@ var TriggerIndexingDocument = gql`
|
|
|
355
355
|
triggerIndexing(input: $input) {
|
|
356
356
|
accepted
|
|
357
357
|
skipped
|
|
358
|
+
alreadyIndexed
|
|
358
359
|
}
|
|
359
360
|
}
|
|
360
361
|
`;
|
|
@@ -1022,7 +1023,6 @@ var VersionDiffDocument = gql`
|
|
|
1022
1023
|
removed
|
|
1023
1024
|
moved
|
|
1024
1025
|
modified
|
|
1025
|
-
unchanged
|
|
1026
1026
|
breaking
|
|
1027
1027
|
behaviorChange
|
|
1028
1028
|
}
|
|
@@ -3093,7 +3093,7 @@ function formatDiffResult(data) {
|
|
|
3093
3093
|
const s = data.summary;
|
|
3094
3094
|
lines.push("Summary:");
|
|
3095
3095
|
lines.push(` Added: ${s.added} Removed: ${s.removed} Modified: ${s.modified} Moved: ${s.moved}`);
|
|
3096
|
-
lines.push(`
|
|
3096
|
+
lines.push(` Breaking: ${s.breaking} Behavior changes: ${s.behaviorChange}`);
|
|
3097
3097
|
if (data.hasMore) {
|
|
3098
3098
|
lines.push(" (more changes available, increase --limit)");
|
|
3099
3099
|
}
|
|
@@ -4879,6 +4879,7 @@ async function indexAction(packages, options, deps) {
|
|
|
4879
4879
|
if (data) {
|
|
4880
4880
|
console.log(`Accepted: ${data.accepted}`);
|
|
4881
4881
|
console.log(`Skipped: ${data.skipped}`);
|
|
4882
|
+
console.log(`Already indexed: ${data.alreadyIndexed}`);
|
|
4882
4883
|
} else {
|
|
4883
4884
|
console.log("Indexing request submitted.");
|
|
4884
4885
|
}
|
package/dist/index.js
CHANGED
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.
|
|
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 .",
|