recker 1.0.67 → 1.0.68-next.02af3c6

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.
@@ -1,13 +1,3 @@
1
1
  #!/usr/bin/env node
2
- const originalEmit = process.emit.bind(process);
3
- process.emit = function (event, ...args) {
4
- if (event === 'warning' && args[0] && typeof args[0] === 'object') {
5
- const warning = args[0];
6
- if (warning.name === 'ExperimentalWarning' && warning.message?.includes('SQLite')) {
7
- return false;
8
- }
9
- }
10
- return originalEmit(event, ...args);
11
- };
12
2
  import('./index.js');
13
3
  export {};
@@ -1,13 +1,3 @@
1
1
  #!/usr/bin/env node
2
- const originalEmit = process.emit.bind(process);
3
- process.emit = function (event, ...args) {
4
- if (event === 'warning' && args[0] && typeof args[0] === 'object') {
5
- const warning = args[0];
6
- if (warning.name === 'ExperimentalWarning' && warning.message?.includes('SQLite')) {
7
- return false;
8
- }
9
- }
10
- return originalEmit(event, ...args);
11
- };
12
2
  import('./cli.js');
13
3
  export {};
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
- const VERSION = '1.0.67';
1
+ const VERSION = '1.0.68-next.02af3c6';
2
2
  let _version = null;
3
3
  export async function getVersion() {
4
4
  if (_version)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "recker",
3
- "version": "1.0.67",
3
+ "version": "1.0.68-next.02af3c6",
4
4
  "description": "Multi-Protocol SDK for the AI Era - HTTP, WebSocket, DNS, FTP, SFTP, Telnet, HLS unified with AI providers and MCP tools",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -313,8 +313,8 @@
313
313
  "bench:api": "tsx benchmark/api-simulation.ts",
314
314
  "docs": "pnpm serve docs -p 3000",
315
315
  "lint": "echo \"No linting configured for this project.\" && exit 0",
316
- "cli": "tsx src/cli/bootstrap.ts",
317
- "mcp:start": "tsx src/mcp/bootstrap.ts",
316
+ "cli": "NODE_OPTIONS='--disable-warning=ExperimentalWarning' tsx src/cli/bootstrap.ts",
317
+ "mcp:start": "NODE_OPTIONS='--disable-warning=ExperimentalWarning' tsx src/mcp/bootstrap.ts",
318
318
  "mcp:reindex": "tsx scripts/build-embeddings.ts"
319
319
  }
320
320
  }