@arabold/docs-mcp-server 1.21.0 → 1.21.1
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/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import "dotenv/config";
|
|
2
3
|
import { PostHog } from "posthog-node";
|
|
3
4
|
import crypto, { randomUUID } from "node:crypto";
|
|
@@ -431,7 +432,7 @@ function sanitizeError(error) {
|
|
|
431
432
|
function extractCliFlags(argv) {
|
|
432
433
|
return argv.filter((arg) => arg.startsWith("--") || arg.startsWith("-"));
|
|
433
434
|
}
|
|
434
|
-
const version = "1.
|
|
435
|
+
const version = "1.21.0";
|
|
435
436
|
const packageJson = {
|
|
436
437
|
version
|
|
437
438
|
};
|