Skip to content

Commit

Permalink
Merge branch 'gj/publish-to-npm' of github.com:osohq/oso into gj/publ…
Browse files Browse the repository at this point in the history
…ish-to-npm
  • Loading branch information
saolsen committed Aug 18, 2020
2 parents 95d2689 + e6cfd1f commit fe329b4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions languages/js/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: wasm install clean dev build fmtcheck typecheck lint parity test

wasm: clean install
wasm: clean
rm -f src/polar_wasm_api.js src/polar_wasm_api.d.ts src/polar_wasm_api_bg.wasm src/polar_wasm_api_bg.d.ts
$(MAKE) -C ../../polar-wasm-api build
mkdir -p dist/src
Expand All @@ -9,7 +9,7 @@ wasm: clean install
install:
yarn install

clean:
clean: install
yarn clean

dev: wasm
Expand All @@ -18,16 +18,16 @@ dev: wasm
build: wasm
yarn tsc --project tsconfig.build.json

fmtcheck: install
fmtcheck: clean
yarn fmtcheck

typecheck: install wasm
typecheck: wasm
yarn tsc

lint: fmtcheck typecheck

parity: install wasm
parity: wasm
yarn ts-node test/parity.ts

test: install wasm
test: wasm
yarn test

0 comments on commit fe329b4

Please sign in to comment.