Skip to content

Commit f71132d

Browse files
committed
Fixed old code
1 parent c412af7 commit f71132d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

extension-test-mode.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,15 @@ $ git clone https://github.com/DeepCodeAI/tsc.git
8383
2. Go to the package folder, install dependencies, build package and create symlink:
8484
```shell script
8585
$ cd tsc
86-
$ npm install && npm run compile && npx yalc publish
86+
$ npm install
87+
$ npm run build
88+
$ npm link
8789
```
8890
8991
3. Go to the extension folder and install package from local symlink:
9092
```shell script
9193
$ cd vscode-extension
92-
$ npx yalc add @deepcode/tsc && npm install && npm run compile
94+
$ npm link @deepcode/tsc
9395
```
9496

9597
After that you can add package to your `package.json`:

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,6 @@
194194
]
195195
},
196196
"commands": [
197-
{
198-
"command": "deepcode.test",
199-
"title": "DeepCode test",
200-
"icon": "$(refresh)"
201-
},
202197
{
203198
"command": "deepcode.start",
204199
"title": "DeepCode re-scan",

0 commit comments

Comments
 (0)