Created
May 10, 2018 03:37
-
-
Save igemnace/89e743ebd35bccea7890aff550f9d471 to your computer and use it in GitHub Desktop.
.makery.json examples from my projects.
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
{ | |
"lint": { | |
"compiler": "eslint" | |
}, | |
"build": { | |
"makeprg": "adb shell input keyevent 82" | |
}, | |
"tags": { | |
"makeprg": "es-ctags -R src" | |
} | |
} |
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
{ | |
"lint": { | |
"compiler": "standard", | |
"makeprg": "yarn lint:check" | |
}, | |
"tags": { | |
"makeprg": "es-ctags -R src" | |
}, | |
"deploy": { | |
"makeprg": "yarn deploy" | |
} | |
} |
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
{ | |
"lint": { | |
"compiler": "eslint" | |
}, | |
"build": { | |
"makeprg": "yarn bolt && yarn deploy" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment