@solana-compass/cli 0.1.0 → 0.2.0
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/README.md +1 -1
- package/bin/sol.mjs +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/bin/sol.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { dirname, join } from 'node:path';
|
|
3
|
-
import { fileURLToPath } from 'node:url';
|
|
3
|
+
import { fileURLToPath, pathToFileURL } from 'node:url';
|
|
4
4
|
|
|
5
5
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
6
|
-
await import(join(__dirname, '..', 'dist', 'index.js'));
|
|
6
|
+
await import(pathToFileURL(join(__dirname, '..', 'dist', 'index.js')).href);
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const program = new Command();
|
|
|
14
14
|
program
|
|
15
15
|
.name('sol')
|
|
16
16
|
.description('Solana CLI for Humans and LLM Agents')
|
|
17
|
-
.version('0.
|
|
17
|
+
.version('0.2.0')
|
|
18
18
|
.option('--json', 'Output structured JSON')
|
|
19
19
|
.option('--rpc <url>', 'Override RPC endpoint')
|
|
20
20
|
.option('--verbose', 'Verbose output')
|