Skip to content

Commit 341c9c2

Browse files
Update dependency versions (#128)
* Update dependency versions * Update version * Update test script * Update actions in work flows to latest version
1 parent 8775463 commit 341c9c2

File tree

5 files changed

+640
-4573
lines changed

5 files changed

+640
-4573
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
environment: production
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Node.js
16-
uses: actions/setup-node@v4
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version-file: .nvmrc
1919

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414
fail-fast: false
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
2222
node-version-file: .nvmrc
2323

2424
- name: Install dependencies
2525
run: npm --color ci
2626

27-
- name: Compile
28-
run: npm --color run compile
27+
- name: Build
28+
run: npm --color run build
2929

3030
- name: Run lint
3131
run: npm --color run lint

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ It's straightforward to add any [language with a tree-sitter grammar](https://tr
3333
1. Add a dependency on the npm package for that language in [tree-sitter-wasms](https://github.com/cursorless-dev/tree-sitter-wasms)
3434
2. Add a language to the map in [`languages.ts`](./src/languages.ts)
3535
3. Add a reference to `onLanguage:yourlang` to the [activationEvents section of package.json](package.json). `yourlang` must be a [VSCode language identifier](https://code.visualstudio.com/docs/languages/identifiers).
36-
4. Run `npm install` and `npm run compile`, then hit `F5` in VSCode, with this project open, to test your changes.
36+
4. Run `npm install` and `npm run build`, then hit `F5` in VSCode, with this project open, to test your changes.
3737
5. Submit a PR!
3838

3939
### Developing on WSL2

0 commit comments

Comments
 (0)