Skip to content

Commit 1461311

Browse files
committed
finish e2e tests migration to deno
1 parent 0fd718b commit 1461311

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+20
-18
lines changed

flake.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
golangci-lint # Go linter
7676
go-migrate # Go SQL migration
7777
bunyan-rs # Bunyan format pretty print
78-
bun # Bun JS runtime
7978
minify # JS minifier
8079
clickhouse # clickhouse client
8180
yq # Command-line YAML/XML/TOML processor

tests/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.PHONY: all
2-
all: bun # perf must be called manually
2+
all: deno # perf must be called manually
33

4-
.PHONY: bun
5-
bun:
6-
$(MAKE) -C bun
4+
.PHONY: deno
5+
deno:
6+
$(MAKE) -C deno
77

8-
bun/%: FORCE
9-
$(MAKE) -C bun $*
8+
deno/%: FORCE
9+
$(MAKE) -C deno $*
1010

1111
.PHONY: perf
1212
perf:
@@ -16,9 +16,9 @@ perf/%: FORCE
1616
$(MAKE) -C perf $*
1717

1818
.PHONY: lint
19-
lint: bun/lint perf/lint
19+
lint: deno/lint perf/lint
2020

2121
.PHONY: lint/fix
22-
lint/fix: bun/lint/fix perf/lint/fix
22+
lint/fix: deno/lint/fix perf/lint/fix
2323

2424
FORCE:
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ clean/%: FORCE
1616

1717
.PHONY: lint
1818
lint:
19-
bunx ts-standard
19+
deno fmt --check
20+
deno check
2021

2122
.PHONY: lint/fix
2223
lint/fix:
23-
bunx ts-standard --fix
24+
deno fmt
25+
deno check
2426

2527
FORCE:
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ repository_root := $(shell git rev-parse --show-toplevel)
22
export repository_root := $(or $(repository_root), $(CURDIR))
33
include $(repository_root)/variables.mk
44

5-
export COMPOSE_PROJECT_NAME := prisme-bun-events
5+
export COMPOSE_PROJECT_NAME := prisme-deno-events
66

77
.PHONY: start
88
start:

0 commit comments

Comments
 (0)