Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
03e227f
fix grammar spelling
BrianHung Jun 8, 2025
cc121c7
feat: add tracking of changed cells for evaluation status
BrianHung Jun 8, 2025
381e556
run cargo format
BrianHung Jun 8, 2025
0baa5e1
fix cargo clippy
BrianHung Jun 8, 2025
a86060b
add get changed cells to fix_types
BrianHung Jun 8, 2025
8a02e04
add row col test
BrianHung Jun 8, 2025
469f65e
split changed cell tests to avoid timeout
BrianHung Jun 8, 2025
8f2256e
feat: add getRecentDiffs API with TypeScript interfaces
BrianHung Jun 9, 2025
8eca4c3
fix cargo build with QueueDiffs and DiffType exports
BrianHung Jun 9, 2025
3590e7f
run cargo format
BrianHung Jun 9, 2025
3ccfc5e
fix fix_types
BrianHung Jun 9, 2025
acf47eb
feat: return sheet name and index from newSheet method
BrianHung Jun 9, 2025
8ec3703
cargo fmt
BrianHung Jun 9, 2025
22aedf9
feat: add getSheetDimensions method to WASM bindings
BrianHung Jun 9, 2025
722141b
feat: add event emitter for real-time diff notifications
BrianHung Jun 10, 2025
71d596b
refactor event listener
BrianHung Jun 11, 2025
cf41e73
fix spelling regression
BrianHung Jun 11, 2025
66c04e1
feat: add import & export for xlsx and icalc
BrianHung Jun 12, 2025
4905f60
update readme for wasm bindings
BrianHung Jun 12, 2025
b9f70b0
feat: publish xlsx import export as separate wasm
BrianHung Jun 12, 2025
5aa3313
feat: use wasm-bindgen unchecked_return_type
BrianHung Jun 12, 2025
9320339
Merge PR #371: CI / housekeeping
BrianHung Jun 13, 2025
7069cf8
Merge PR #372: Upgrade wasm-bindgen to 0.2.100
BrianHung Jun 13, 2025
d352b85
Merge PR #373: Type-declarations cleanup
BrianHung Jun 13, 2025
8b60715
Merge PR #374: Dependency / binary-size pruning
BrianHung Jun 13, 2025
e256fbf
Merge PR #375: Build & package overhaul
BrianHung Jun 13, 2025
34581db
Merge PR #379: XLSX helper sub-bundle
BrianHung Jun 13, 2025
bcb95b5
Merge PR #380: Changed-cells tracking feature
BrianHung Jun 13, 2025
192c3a6
Merge PR #381: NodeJS binding alignment
BrianHung Jun 13, 2025
4f78ccf
Merge PR #382: Large model-layer refactor & extra tests
BrianHung Jun 13, 2025
9eb1b68
fix errors and bugs from merge
BrianHung Jun 13, 2025
4da4bb7
refactor: push diffs array instead of diff
BrianHung Jun 13, 2025
2f5346a
refactor: add type to diffs and queue diffs for get_recent_diffs
BrianHung Jun 13, 2025
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/rust-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:

- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

- name: Install wasm-bindgen-cli
run: cargo install -f wasm-bindgen-cli --version 0.2.100

- name: Add wasm32 target
run: rustup target add wasm32-unknown-unknown

- name: Build
run: cargo build --release --verbose
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
target/*
**/node_modules/**
.DS_Store
bindings/wasm/pkg/
Loading