Created
February 10, 2021 14:45
-
-
Save nafeu/40929fbcd0c74ac2e226919f0b0eaeba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Step 0: Grab CLI arguments */ | |
| const filename = Deno.args[FIRST_ITEM_INDEX]; | |
| const buildPath = Deno.args[SECOND_ITEM_INDEX] || './build'; | |
| if (!filename) { | |
| console.log('Please specify .md file'); | |
| Deno.exit(1); | |
| } else { | |
| console.log(`Building site with '${filename}' into '${buildPath}'`); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment