Skip to content

Commit c9b8a23

Browse files
committed
Fix dependency versions and update lock file.
Remove debugger line.
1 parent 5b0e6b5 commit c9b8a23

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/core",
3-
"version": "0.16.21",
3+
"version": "0.16.22",
44
"description": "Vlocode core IoC container framework library",
55
"main": "lib/index.js",
66
"readme": "../SITE.md",
@@ -34,7 +34,7 @@
3434
},
3535
"homepage": "https://github.com/Codeneos/vlocode#readme",
3636
"dependencies": {
37-
"@vlocode/util": "0.16.21",
37+
"@vlocode/util": "0.16.22",
3838
"chalk": "^4.1.2",
3939
"globby": "^11.0.4",
4040
"memfs": "^3.2.2",

packages/util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vlocode/util",
3-
"version": "0.16.21",
3+
"version": "0.16.22",
44
"description": "Vlocode utility library",
55
"main": "lib/index.js",
66
"readme": "../SITE.md",

src/lib/commandRouter.ts

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export default class CommandRouter {
5353
private readonly commandTypes = new Map<string, string>();
5454

5555
constructor(private readonly vlocode: VlocodeService, private readonly logger: Logger) {
56-
debugger;
5756
}
5857

5958
private get count() : number {

0 commit comments

Comments
 (0)