Skip to content

Commit

Permalink
Upgrade 1.80.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Felx-B committed Jul 18, 2023
1 parent 3eb469e commit 0eede56
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.js
Expand Up @@ -3,7 +3,7 @@ const child_process = require("child_process");
const fs = require("fs");
const fse = require("fs-extra");

const vscodeVersion = "1.80.0";
const vscodeVersion = "1.80.1";

if (!fs.existsSync("vscode")) {
child_process.execSync(`git clone --depth 1 https://github.com/microsoft/vscode.git -b ${vscodeVersion}`, {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vscode-web",
"version": "1.80.0",
"version": "1.80.1",
"description": "Visual Studio Code for browser",
"files": ["dist"],
"scripts": {
Expand Down
3 changes: 0 additions & 3 deletions prepare-demo.js
Expand Up @@ -13,7 +13,4 @@ fse.copySync("./dist/out", "./demo/static/out");
const webPlaygroundPath = './demo/static/extensions/vscode-web-playground';

child_process.execSync(`git clone https://github.com/microsoft/vscode-web-playground.git ${webPlaygroundPath}`, {stdio: 'inherit'});
process.chdir(webPlaygroundPath);
child_process.execSync('yarn', {stdio: 'inherit'});
child_process.execSync('yarn compile', {stdio: 'inherit'});

0 comments on commit 0eede56

Please sign in to comment.