Skip to content

Commit c67431e

Browse files
committed
chore: update dependencies and simplify CLI entry point comments
Update pnpm lockfile after package changes and simplify comments in CLI entry point for clarity.
1 parent a8849ea commit c67431e

File tree

2 files changed

+11
-263
lines changed

2 files changed

+11
-263
lines changed

packages/cli/bin/cli.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
#!/usr/bin/env node
22

3-
/** @fileoverview Socket CLI entry point. Executes the unified CLI bundle. */
3+
/** @fileoverview Socket CLI entry point. */
44

55
void (async () => {
66
const Module = require('node:module')
77
const path = require('node:path')
88
const rootPath = path.join(__dirname, '..')
99
Module.enableCompileCache?.(path.join(rootPath, '.cache'))
1010

11-
// Execute the unified CLI bundle directly.
12-
// The unified CLI (dist/cli.js) handles all commands and detects how it was invoked.
11+
// Execute the CLI bundle.
1312
require(path.join(rootPath, 'dist/cli.js'))
1413
})()

0 commit comments

Comments
 (0)