node-sys 0.4.2

Raw bindings to the Node.js API for projects using wasm-bindgen.
Documentation
.PHONY: check
check:
	RUSTFLAGS="-Dwarnings" cargo check --all-features --all-targets --benches --bins --examples --tests --workspace

.PHONY: clean
clean:
	cargo clean

.PHONY: clippy
clippy:
	cargo clippy --all-features --all-targets --benches --bins --examples --tests --workspace -- -D warnings

.PHONY: fmt
fmt:
	cargo +nightly fmt --all

.PHONY: test
test:
	RUSTFLAGS="-Dwarnings" wasm-pack test --node -- --all-features --all-targets --benches --bins --examples --tests --workspace