We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8849ea commit c67431eCopy full SHA for c67431e
packages/cli/bin/cli.js
@@ -1,14 +1,13 @@
1
#!/usr/bin/env node
2
3
-/** @fileoverview Socket CLI entry point. Executes the unified CLI bundle. */
+/** @fileoverview Socket CLI entry point. */
4
5
void (async () => {
6
const Module = require('node:module')
7
const path = require('node:path')
8
const rootPath = path.join(__dirname, '..')
9
Module.enableCompileCache?.(path.join(rootPath, '.cache'))
10
11
- // Execute the unified CLI bundle directly.
12
- // The unified CLI (dist/cli.js) handles all commands and detects how it was invoked.
+ // Execute the CLI bundle.
13
require(path.join(rootPath, 'dist/cli.js'))
14
})()
0 commit comments