utxo-prague/Makefile

60 řádky
1.3 KiB
Makefile
Surový Normální zobrazení Historie

2022-01-03 07:06:57 +01:00
NAME = gweicz/utxo
VERSION = 0.1.0
.PHONY: all build
2022-01-03 13:44:08 +01:00
all: test build
test:
deno test --unstable --allow-read utils/test.js
2022-01-03 07:06:57 +01:00
2022-01-19 08:18:15 +01:00
link-check:
lychee spec/**/*.yaml
2022-01-14 17:56:42 +01:00
format:
deno fmt utils/*.js README.md
2022-01-27 08:56:34 +01:00
fmt: format
2022-01-03 07:06:57 +01:00
build:
2022-01-28 17:07:43 +01:00
deno run --unstable --allow-read --allow-write utils/exec.js build
2022-01-03 07:06:57 +01:00
docs-update:
2022-01-03 08:48:00 +01:00
deno run --unstable --allow-read --allow-write utils/update-docs.js
2022-01-03 07:06:57 +01:00
speakers-table:
2022-01-03 08:48:00 +01:00
deno run --unstable --allow-read utils/update-docs.js speakersTableGen
2022-01-03 07:06:57 +01:00
speakers-leads:
2022-01-03 08:48:00 +01:00
deno run --unstable --allow-read utils/update-docs.js speakersLeadsGen
2022-01-03 20:24:19 +01:00
2022-01-14 17:31:55 +01:00
partners-community:
deno run --unstable --allow-read utils/update-docs.js partnersGen community
partners-sponsor:
deno run --unstable --allow-read utils/update-docs.js partnersGen sponsor
partners-medium:
deno run --unstable --allow-read utils/update-docs.js partnersGen medium
2022-01-07 09:57:42 +01:00
faqs:
deno run --unstable --allow-read utils/update-docs.js faqsGen
2022-01-03 20:24:19 +01:00
stats:
deno run --unstable --allow-read utils/stats.js
2022-01-04 09:32:08 +01:00
twitter:
2022-01-06 05:18:28 +01:00
deno run --unstable --allow-read --allow-write --allow-env --allow-net utils/twitter.js
2022-01-19 04:57:43 +01:00
twitter-photos:
deno run --unstable --allow-read --allow-write --allow-env --allow-net utils/twitter.js photos
2022-01-27 08:56:34 +01:00
events:
deno run --unstable --allow-read utils/events.js
2022-01-28 17:07:43 +01:00
schema:
2022-01-28 17:09:53 +01:00
deno run --unstable --allow-read utils/exec.js schemas
2022-01-28 17:07:43 +01:00
2022-01-19 04:57:43 +01:00
server:
cd dist && python -m SimpleHTTPServer 8000