forked from GitHubMirrors/silverbullet-icalendar
All checks were successful
Build SilverBullet Plug / build (push) Successful in 25s
9 lines
216 B
Makefile
9 lines
216 B
Makefile
# Build the plug using local deno
|
|
build:
|
|
deno task build
|
|
|
|
# Helper to build and copy to a local test space (if needed)
|
|
deploy-test:
|
|
deno task build
|
|
mkdir -p test_space/_plug
|
|
cp icalendar.plug.js test_space/_plug/
|