Skip to content

Instantly share code, notes, and snippets.

@nafeu
Created February 10, 2021 14:45
Show Gist options
  • Select an option

  • Save nafeu/40929fbcd0c74ac2e226919f0b0eaeba to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/40929fbcd0c74ac2e226919f0b0eaeba to your computer and use it in GitHub Desktop.
/* 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