Skip to content

Commit

Permalink
Update VSCode 1.65.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Felx-B committed Mar 5, 2022
1 parent 21d9a5c commit 2581ab8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const child_process = require("child_process");
const fs = require("fs");
const fse = require("fs-extra");

const vscodeVersion = "1.64.0";
const vscodeVersion = "1.65.0";

if (!fs.existsSync("vscode")) {
child_process.execSync(`git clone --depth 1 https://github.com/microsoft/vscode.git -b ${vscodeVersion}`, {
Expand Down
6 changes: 3 additions & 3 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!-- Workbench Icon/Manifest/CSS -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="manifest" href="/manifest.json">
<link data-name="vs/workbench/workbench.web.api" rel="stylesheet" href="./static/out/vs/workbench/workbench.web.api.css">
<link data-name="vs/workbench/workbench.web.main" rel="stylesheet" href="./static/out/vs/workbench/workbench.web.main.css">

</head>

Expand All @@ -41,7 +41,7 @@
paths: self.webPackagePaths
});
</script>
<script src="./static/out/vs/workbench/workbench.web.api.nls.js"></script>
<script src="./static/out/vs/workbench/workbench.web.api.js"></script>
<script src="./static/out/vs/workbench/workbench.web.main.nls.js"></script>
<script src="./static/out/vs/workbench/workbench.web.main.js"></script>
<script src="./static/out/vs/code/browser/workbench/workbench.js"></script>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-web",
"version": "1.64.0",
"version": "1.65.0",
"description": "Visual Studio Code for browser",
"files": ["dist/*"],
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions sample/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<!-- Workbench Icon/Manifest/CSS -->
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<link rel="manifest" href="/manifest.json">
<link data-name="vs/workbench/workbench.web.api" rel="stylesheet" href="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.api.css">
<link data-name="vs/workbench/workbench.web.main" rel="stylesheet" href="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.main.css">

</head>

Expand All @@ -41,7 +41,7 @@
paths: self.webPackagePaths
});
</script>
<script src="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.api.nls.js"></script>
<script src="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.api.js"></script>
<script src="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.main.nls.js"></script>
<script src="./node_modules/vscode-web/dist/out/vs/workbench/workbench.web.main.js"></script>
<script src="./node_modules/vscode-web/dist/out/vs/code/browser/workbench/workbench.js"></script>
</html>
2 changes: 1 addition & 1 deletion sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"vscode-web": "^1.63.2"
"vscode-web": "^1.65.0"
}
}

0 comments on commit 2581ab8

Please sign in to comment.