12 lines
241 B
Makefile
Executable File
12 lines
241 B
Makefile
Executable File
build:
|
|
dotnet fable --lang javascript --noCache
|
|
esbuild ./Program.fs.js --bundle --external:obsidian --outfile=./out/main.js --format=cjs
|
|
cp -a ./meta/. ./out/
|
|
|
|
clean:
|
|
rm -rf ./fable_modules/ ./bin/ ./obj/ ./out/ *.fs.js
|
|
|
|
|
|
|
|
|