diff options
author | 2021-04-27 15:59:23 -0500 | |
---|---|---|
committer | 2021-04-27 15:59:23 -0500 | |
commit | 61ccd59f928ac730c8bfd8c17dc60df021e81906 (patch) | |
tree | 218ecc7bd9cb9675477a7dac3ad00558ac71eb04 /create-astro/bin.js | |
parent | 9c980a1017111734c534f1fd0513a14fb1b752ea (diff) | |
download | astro-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-x | create-astro/bin.js | 4 |
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); |