We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248fef5 commit 531c350Copy full SHA for 531c350
package.json
@@ -8,7 +8,7 @@
8
"type": "git",
9
"url": "https://github.com/pokey/command-server"
10
},
11
- "version": "0.1.0",
+ "version": "0.1.1",
12
"engines": {
13
"vscode": "^1.53.0"
14
src/extension.ts
@@ -62,7 +62,7 @@ export function activate(context: vscode.ExtensionContext) {
62
63
function writePort() {
64
const path = join(tmpdir(), "vscode-port");
65
- console.log(`Saved port ${port} to path ${path}`);
+ console.log(`Saving port ${port} to path ${path}`);
66
writeFileSync(path, `${port}`);
67
}
68
0 commit comments