Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [22, 24]
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
permissions:
contents: read
issues: write
Expand All @@ -41,6 +44,9 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Setup WASM build tools
run: npm run setup-wasm

- name: Run tests
run: npm test

Expand Down
26 changes: 12 additions & 14 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
.vscode/**
.vscode-test/**
.github/
.gitignore
node_modules/
tests/
commitlint.config.cjs
src/**
.yarnrc
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
wit-bindgen-wasm/**
# Exclude everything by default
**

# Include only what the extension needs at runtime
!dist/**
!syntaxes/**
!images/wit-icon.png
!snippets.json
!language-configuration.json
!LICENSE
!README.md
!CHANGELOG.md
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ This extension is available on:
This extension includes a WebAssembly component that requires the following tools for building:

- **Rust** (with `cargo`): Required for building the WebAssembly module
- **wasm-pack v0.13.1**: Used specifically for the `wit-bindgen-wasm` subproject
- **wasm-tools v1.245.0**: Used for embedding WIT metadata and creating WebAssembly components

You can install these dependencies by running:
```bash
Expand Down
Loading
Loading