eszip 0.16.1

A utility that can download JavaScript and TypeScript module graphs and store them locally in a special zip file
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
RUSTFLAGS = RUSTFLAGS=--cfg=web_sys_unstable_apis

build:
	$(RUSTFLAGS) wasmbuild

release:
	$(RUSTFLAGS) wasmbuild --release
	wasm-opt -Oz lib/eszip_wasm_bg.wasm -o lib/eszip_wasm_bg.wasm

node:
	deno run -A ./build_npm.ts 0.0.0

test:
	deno test -A lib/

fmt:
	deno fmt lib/ build_npm.ts
	cargo fmt --all