Skip to content

Commit

Permalink
Merge pull request #52 from evert/remove-chai
Browse files Browse the repository at this point in the history
Using the built-in assertion library instead of chai
  • Loading branch information
evert authored Apr 21, 2024
2 parents 38f32da + 157e915 commit a704a52
Show file tree
Hide file tree
Showing 8 changed files with 144 additions and 529 deletions.
15 changes: 2 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project:=bigint-money
export PATH:=./node_modules/.bin/:$(PATH)

.PHONY: build
build: browser/${PROJECT}.min.js
build: tsbuild

.PHONY: clean
clean:
Expand All @@ -11,7 +11,7 @@ clean:

.PHONY: test
test: lint
npx tsx --test
npx tsx --test test/*.ts

.PHONY: test-debug
test-debug:
Expand All @@ -35,14 +35,3 @@ tsbuild:
.PHONY: watch
watch:
tsc --watch

.PHONY: browserbuild
browserbuild: tsbuild
# mkdir -p browser
# webpack \
# --optimize-minimize \
# -p \
# --display-modules \
# --sort-modules-by size

browser/${PROJECT}.min.js: browserbuild
Loading

0 comments on commit a704a52

Please sign in to comment.