@pkgseer/cli 0.4.8 → 0.4.9
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-bahf01jh.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
|
`;
|
|
@@ -4879,6 +4880,7 @@ async function indexAction(packages, options, deps) {
|
|
|
4879
4880
|
if (data) {
|
|
4880
4881
|
console.log(`Accepted: ${data.accepted}`);
|
|
4881
4882
|
console.log(`Skipped: ${data.skipped}`);
|
|
4883
|
+
console.log(`Already indexed: ${data.alreadyIndexed}`);
|
|
4882
4884
|
} else {
|
|
4883
4885
|
console.log("Indexing request submitted.");
|
|
4884
4886
|
}
|
package/dist/index.js
CHANGED