monorepo/kifu/pwa/Makefile

17 lines
239 B
Makefile
Raw Permalink Normal View History

2023-05-07 17:13:20 +00:00
release: kifu-wasm core-types
NODE_ENV=production npm run build
dev: kifu-wasm core-types
2023-05-07 17:13:20 +00:00
npm run build
kifu-wasm:
pushd ../ffi/wasm && make && popd
core-types:
pushd ../core-types && make && popd
server:
2023-05-07 17:13:20 +00:00
npx http-server ./dist
2023-05-11 13:39:31 +00:00