We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b609bc commit 62314d6Copy full SHA for 62314d6
deno.json
@@ -2,6 +2,7 @@
2
"name": "@frontside/lspx",
3
"tasks": {
4
"dev": "deno run --allow-env --allow-run main.ts",
5
+ "test": "echo ✅",
6
"compile": "deno compile -o lspx --allow-env --allow-run main.ts"
7
},
8
"imports": {
main.ts
@@ -24,7 +24,8 @@ await main(function* (argv) {
24
25
"lsp": {
26
type: z.array(z.string()),
27
- description: "start and muliplex a server with specified command string",
+ description:
28
+ "start and muliplex a server with specified command string",
29
30
}).parse(argv);
31
console.log(opts);
0 commit comments