Skip to content

Commit f33a090

Browse files
committed
move modules to @VScode org
1 parent f5bf4ab commit f33a090

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

adapter/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vscode-debugadapter",
2+
"name": "@vscode/debugadapter",
33
"description": "Debug adapter implementation for node",
44
"version": "1.51.0",
55
"author": "Microsoft Corporation",
@@ -19,7 +19,7 @@
1919
"typings": "./lib/main",
2020
"dependencies": {
2121
"mkdirp": "^1.0.4",
22-
"vscode-debugprotocol": "1.51.0"
22+
"@vscode/debugprotocol": "1.51.0"
2323
},
2424
"devDependencies": {
2525
"@types/mkdirp": "^1.0.2",

adapter/src/debugSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { DebugProtocol } from 'vscode-debugprotocol';
6+
import { DebugProtocol } from '@vscode/debugprotocol';
77
import { ProtocolServer } from './protocol';
88
import { Response, Event } from './messages';
99
import { runDebugAdapter } from './runDebugAdapter';

adapter/src/loggingDebugSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import {DebugProtocol} from 'vscode-debugprotocol';
6+
import {DebugProtocol} from '@vscode/debugprotocol';
77

88
import * as Logger from './logger';
99
const logger = Logger.logger;

adapter/src/messages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { DebugProtocol } from 'vscode-debugprotocol';
6+
import { DebugProtocol } from '@vscode/debugprotocol';
77

88

99
export class Message implements DebugProtocol.ProtocolMessage {

adapter/src/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as ee from 'events';
7-
import { DebugProtocol } from 'vscode-debugprotocol';
7+
import { DebugProtocol } from '@vscode/debugprotocol';
88
import { Response, Event } from './messages';
99

1010
interface DebugProtocolMessage {

protocol/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vscode-debugprotocol",
2+
"name": "@vscode/debugprotocol",
33
"description": "Npm module with declarations for the Visual Studio Code debug protocol",
44
"version": "1.51.0",
55
"author": "Microsoft Corporation",

testSupport/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testSupport/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vscode-debugadapter-testsupport",
2+
"name": "@vscode/debugadapter-testsupport",
33
"description": "Npm module with mocha test support for Visual Studio Code debug adapters",
44
"version": "1.51.0",
55
"author": "Microsoft Corporation",
@@ -14,7 +14,7 @@
1414
"main": "./lib/main.js",
1515
"typings": "./lib/main",
1616
"dependencies": {
17-
"vscode-debugprotocol": "1.51.0"
17+
"@vscode/debugprotocol": "1.51.0"
1818
},
1919
"devDependencies": {
2020
"@types/node": "14.x",

0 commit comments

Comments
 (0)