monorepo/kifu/core-types/Makefile

7 lines
155 B
Makefile
Raw Normal View History

2023-05-11 13:39:31 +00:00
SOURCES = $(shell find ../core -name "*.rs")
2023-05-11 13:39:31 +00:00
dist/core.d.ts: $(SOURCES)
mkdir -p dist
typeshare ../core --lang=typescript --output-file=dist/core.d.ts
2023-05-11 13:39:31 +00:00