From 35de6ad5837e2ae1034cd8b5a133f51497f25535 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 14 Jan 2024 04:25:23 -0800 Subject: [PATCH] Remove `test-dist-bin-bunx` for now. --- Makefile | 5 +---- package.json | 1 - 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 3e259ee7b..68cf4bc0a 100644 --- a/Makefile +++ b/Makefile @@ -178,7 +178,7 @@ test-dist-lib-build-size: build-lib-js test-dist-sites-experiments: playwright-install build-sites ${BUN} ./script/test/dist/sites/experiments.cubing.net/main.js .PHONY: test-dist-bin -test-dist-bin: test-dist-bin-shebang test-dist-bin-npm-exec test-dist-bin-bunx +test-dist-bin: test-dist-bin-shebang test-dist-bin-npm-exec .PHONY: test-dist-bin-shebang test-dist-bin-shebang: build-bin # Note: we're not testing the output, just that these don't exit with an error. @@ -188,9 +188,6 @@ test-dist-bin-shebang: build-bin .PHONY: test-dist-bin-npm-exec test-dist-bin-npm-exec: build-bin time ${NPM} exec scramble -- 222 -.PHONY: test-dist-bin-bunx -test-dist-bin-bunx: build-bin - time ${BUN} x scramble 222 # TODO: why doesn't `bun x` take `--`? .PHONY: format format: ${BIOME} format --write ./script ./src diff --git a/package.json b/package.json index 1de47cb51..0ca5004e4 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,6 @@ "test-dist-bin": "make test-dist-bin", "test-dist-bin-shebang": "make test-dist-bin-shebang", "test-dist-bin-npm-exec": "make test-dist-bin-npm-exec", - "test-dist-bin-bunx": "make test-dist-bin-bunx", "format": "make format", "setup": "make setup", "quick-setup": "make quick-setup",