Last active
October 28, 2016 07:16
-
-
Save matthewmueller/8e7e70d94b94a655164059475ce20efd to your computer and use it in GitHub Desktop.
Basic scaffolding for monorepos
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
/** | |
* Module dependencies | |
*/ | |
/** | |
* Export `__NAME__` | |
*/ | |
module.exports = __NAME__ | |
/** | |
* __NAME__ | |
*/ | |
function __NAME__ () { | |
} |
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
{ | |
"name": "__NAME__", | |
"version": "__VERSION__", | |
"description": "__DESCRIPTION__", | |
"main": "index.js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment