Skip to content
Open
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@

# Generated ouput
/target
/dist
/jco.sh
dist/

# Typescript
/src/**/*.d.ts
/src/**/*.d.ts.map
*.tsbuildinfo

# Docs
/docs/book
Expand Down
4 changes: 2 additions & 2 deletions crates/xtask/src/build/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub(crate) fn run(release: bool) -> anyhow::Result<()> {
cmd!(sh, "cargo build --workspace --target wasm32-wasip1").read()?;
}

// Build Jco TS code
cmd!(sh, "npx -w @bytecodealliance/jco tsc -p tsconfig.json").read()?;
// Compiles code in all packages where applicable
cmd!(sh, "npm run build:ts").read()?;
Ok(())
}
Loading
Loading