From b0c741ab980f3a2fff2362e969908f203a45b3d1 Mon Sep 17 00:00:00 2001 From: Endeavorance Date: Wed, 13 Nov 2024 15:52:42 -0500 Subject: [PATCH] Add .run dir --- .gitignore | 5 +---- .run/build | 3 +++ .run/format | 3 +++ .run/test | 3 +++ 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100755 .run/build create mode 100755 .run/format create mode 100755 .run/test diff --git a/.gitignore b/.gitignore index 3814619..ce007ac 100644 --- a/.gitignore +++ b/.gitignore @@ -172,7 +172,4 @@ dist .idea # Finder (MacOS) folder config -.DS_Store - -# And of course, -.run \ No newline at end of file +.DS_Store \ No newline at end of file diff --git a/.run/build b/.run/build new file mode 100755 index 0000000..4992c57 --- /dev/null +++ b/.run/build @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# A rundir script +bun build --target bun --compile ./src/cli.ts --outfile rundir diff --git a/.run/format b/.run/format new file mode 100755 index 0000000..fbe8e31 --- /dev/null +++ b/.run/format @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# Format the repo, writing the formatted files to disk +bunx biome format . --write \ No newline at end of file diff --git a/.run/test b/.run/test new file mode 100755 index 0000000..2c1e99d --- /dev/null +++ b/.run/test @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#DESCRIPTION# A rundir script +echo 'Hello, world!'