diff --git a/Brewfile b/Brewfile deleted file mode 100644 index 7772992..0000000 --- a/Brewfile +++ /dev/null @@ -1,2 +0,0 @@ -brew "bats" -brew "shellcheck" diff --git a/script/bootstrap b/script/bootstrap deleted file mode 100755 index 5144b6a..0000000 --- a/script/bootstrap +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# script/bootstrap: Resolve dependencies that the application requires to run. - -# Exit if any subcommand fails -set -e - -# Ensure we're always running from the project root -cd "$(dirname "$0")/.." - -if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then - brew bundle check >/dev/null 2>&1 || { - echo "==> Installing Homebrew dependencies…" - brew bundle - } -fi diff --git a/script/test b/script/test deleted file mode 100755 index c131299..0000000 --- a/script/test +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# Exit if any subcommand fails -set -e - -# Ensure we're always running from the project root -cd "$(dirname "$0")/.." - -bats test/*.bats -shellcheck *.sh diff --git a/test/bin/yarn b/test/bin/yarn deleted file mode 100755 index 1632951..0000000 --- a/test/bin/yarn +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -echo "Fake yarn"