jamiebuilds_the-super-tiny-.../bin/super-tiny-compiler.js
Gabriel Montalvo c6a64c0cb0 super tiny cli for tiny compiler?
This also adds a barebones package.json file  and .gitignore.
2016-03-31 00:37:38 -04:00

9 lines
183 B
JavaScript

#!/usr/bin/env node
var meow = require('meow');
var superTinyCompiler = require('../super-tiny-compiler');
var cli = meow();
console.log(superTinyCompiler.compiler(cli.input[0]));