summaryrefslogtreecommitdiff
path: root/create-astro/bin.js
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2021-04-27 15:59:23 -0500
committerGravatar GitHub <noreply@github.com> 2021-04-27 15:59:23 -0500
commit61ccd59f928ac730c8bfd8c17dc60df021e81906 (patch)
tree218ecc7bd9cb9675477a7dac3ad00558ac71eb04 /create-astro/bin.js
parent9c980a1017111734c534f1fd0513a14fb1b752ea (diff)
downloadastro-61ccd59f928ac730c8bfd8c17dc60df021e81906.tar.gz
astro-61ccd59f928ac730c8bfd8c17dc60df021e81906.tar.zst
astro-61ccd59f928ac730c8bfd8c17dc60df021e81906.zip
Minimal `create-astro` CLI (#136)
* feat: add minimal create-astro CLI * docs: update readme
Diffstat (limited to 'create-astro/bin.js')
-rwxr-xr-xcreate-astro/bin.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/create-astro/bin.js b/create-astro/bin.js
new file mode 100755
index 000000000..efc9a0153
--- /dev/null
+++ b/create-astro/bin.js
@@ -0,0 +1,4 @@
+#!/usr/bin/env node
+import cli from './index.js';
+
+cli(process.argv);