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
| #!/usr/bin/env node | |
| /** | |
| * Folder layout + composition (relative imports) + class inheritance (simple extends). | |
| */ | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| const args = process.argv.slice(2); | |
| function getArg(name) { |