Skip to main content
Module

x/nats/Makefile

Deno client for NATS, the cloud native messaging system
Very Popular
Go to Latest
File
.PHONY: build test bundle lint build: test lint: deno lint --ignore=docs/ test: clean deno test --allow-all --parallel --reload --quiet --coverage=coverage tests/ jetstream/tests deno test --allow-all --parallel --reload --quiet --unsafely-ignore-certificate-errors --coverage=coverage unsafe_tests/ testw: clean deno test --allow-all --unstable --reload --parallel --watch --fail-fast tests/ jetstream/ cover: deno coverage --unstable ./coverage --lcov > ./coverage/out.lcov genhtml -o ./coverage/html ./coverage/out.lcov open ./coverage/html/index.html clean: rm -rf ./coverage bundle: deno bundle --log-level info --unstable src/mod.ts ./nats.js fmt: deno fmt src/ doc/ bin/ nats-base-client/ examples/ tests/ debug/ unsafe_tests/ jetstream/ jetstream.md README.md services.md