Skip to content

Commit 27df49f

Browse files
committed
chore: bump vscode to 1.96.2
1 parent 2b2ab3c commit 27df49f

File tree

118 files changed

+22301
-12956
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+22301
-12956
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"forwardPorts": [8080],
2525

2626
// Use 'postCreateCommand' to run commands after the container is created.
27-
//"postCreateCommand": "yarn",
27+
//"postCreateCommand": "npm install",
2828

2929
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
3030
"remoteUser": "node"

.eslintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,15 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
25+
cache: 'npm'
2526
node-version: ${{ matrix.node-version }}
2627

27-
- name: Get yarn cache directory path
28-
id: yarn-cache-dir-path
29-
run: echo "::set-output name=dir::$(yarn cache dir)"
30-
31-
- uses: actions/cache@v2
32-
with:
33-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
34-
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
35-
restore-keys: |
36-
${{ runner.os }}-yarn-${{ matrix.node-version }}
37-
38-
- run: yarn --frozen-lockfile
39-
- run: yarn eslint
40-
- run: yarn build
28+
- run: npm install
29+
- run: npm run eslint
30+
- run: npm run build
4131
- uses: microsoft/playwright-github-action@v1
42-
- run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} yarn test:ci
32+
- run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run test:ci

.github/workflows/test-wtih-vscode-build.yml

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,21 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-20.04]
16-
node-version: [20.16.0]
16+
node-version: [20.x]
1717

1818
runs-on: ${{ matrix.os }}
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v2
23+
uses: actions/setup-node@v4
2424
with:
25+
cache: 'npm'
2526
node-version: ${{ matrix.node-version }}
2627

27-
- name: Get yarn cache directory path
28-
id: yarn-cache-dir-path
29-
run: echo "::set-output name=dir::$(yarn cache dir)"
30-
31-
- uses: actions/cache@v2
32-
with:
33-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
34-
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
35-
restore-keys: |
36-
${{ runner.os }}-yarn-${{ matrix.node-version }}
37-
3828
- run: sudo apt update && sudo apt install -y libkrb5-dev
39-
- run: yarn --frozen-lockfile
40-
- run: yarn build:vscode
41-
- run: yarn yalc && yarn build
29+
- run: npm install && cd vscode-web && npm install
30+
- run: cd vscode-web && npm run clone && npm run build
31+
- run: npm run link
4232
- uses: microsoft/playwright-github-action@v1
43-
- run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} yarn test:ci
33+
- run: GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run test:ci

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@ lib
33
dist
44
out
55
node_modules
6-
.yalc
7-
yalc.lock
8-
yarn-error.log

.gitpod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ image:
22
file: .gitpod.Dockerfile
33
tasks:
44
- init: |
5-
yarn
6-
yarn build
5+
npm install
6+
npm run build
77
command: |
88
echo "======================="
9-
echo "Please run 'yarn watch'"
9+
echo "Please run 'npm run watch'"
1010
echo "======================="
1111
- command: |
1212
echo "==========================================================================="
13-
echo "Please wait for 'yarn watch' to complete compilation, then run 'yarn serve'"
13+
echo "Please wait for 'npm run watch' to complete compilation"
1414
echo "==========================================================================="
1515
ports:
1616
- port: 8080

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn lint-staged
4+
npx lint-staged

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ vscode-web/extensions
77
htm.module.js
88
preact.module.js
99
preact-hooks.module.js
10+
index.html

.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
tabWidth: 2,
33
useTabs: true,
44
semi: true,

0 commit comments

Comments
 (0)