We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dbe50f9 + 3b23f7a commit d78b5d4Copy full SHA for d78b5d4
1 file changed
packages/cli/src/cli.js
@@ -164,21 +164,6 @@ const setup = async () => {
164
new commands.SocketList(context).run(options)
165
})
166
167
- program
168
- .command('add <socket_name>')
169
- .group('Sockets')
170
- .description('Add a Socket as a dependency of your project or local Socket')
171
- .option('-s, --socket <socket>', 'Name of the Socket')
172
- .action(async (...options) => {
173
- const [name] = options
174
- trackAndDebug(options, { socketName: name })
175
- session.isAuthenticated()
176
- session.hasProject()
177
- await session.checkConnection()
178
- echo()
179
- new commands.SocketAdd(context).run(options)
180
- })
181
-
182
program
183
.command('remove <socket_name>')
184
.group('Sockets')
0 commit comments