Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 1935256

Browse files
committed
drop nodejs dependency, microsoft/vscode#103249
1 parent 400fdce commit 1935256

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

package-lock.json

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

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,6 @@
327327
"watch": "webpack --mode none --watch --info-verbosity verbose"
328328
},
329329
"devDependencies": {
330-
"@types/node": "^12.7.3",
331330
"ts-loader": "~6.2.1",
332331
"typescript": "~3.7.2",
333332
"webpack": "~4.43.0",

src/history.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class HistoryItem {
7878
for (const a of args) {
7979
str += JSON.stringify(a);
8080
}
81-
return Buffer.from(str).toString('base64');
81+
return str;
8282
}
8383

8484
constructor(

0 commit comments

Comments
 (0)