From d7dad8e2049631cfcef1a47b75039f7d71e0ae71 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 21 Dec 2023 20:50:42 -0300 Subject: [PATCH] reduce spaces on justfile. --- justfile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/justfile b/justfile index 4f7db92..e427cf5 100644 --- a/justfile +++ b/justfile @@ -1,25 +1,25 @@ export PATH := "./node_modules/.bin:" + env_var('PATH') build: - rm -rf lib - bun run build.js + rm -rf lib + bun run build.js test: - bun test --timeout 20000 + bun test --timeout 20000 test-only file: - bun test {{file}} + bun test {{file}} emit-types: - tsc # see tsconfig.json + tsc # see tsconfig.json publish: build emit-types - npm publish + npm publish format: - eslint --ext .ts --fix *.ts - prettier --write *.ts + eslint --ext .ts --fix *.ts + prettier --write *.ts lint: - eslint --ext .ts *.ts - prettier --check *.ts + eslint --ext .ts *.ts + prettier --check *.ts