This file contains 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
{ | |
"libs": [ | |
"browser", | |
"jquery", | |
"underscore" | |
], | |
"loadEagerly": [ "*.js", "*/*.js", "*/*/*.js", "*/*/*/*.js" ], | |
"dontLoad": [ ".meteor" ], | |
"plugins": { | |
"meteor": {} |
This file contains 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
0 info it worked if it ends with ok | |
1 verbose cli [ '/home/tim/.nvm/v0.10.24/bin/node', | |
1 verbose cli '/home/tim/.nvm/v0.10.24/bin/npm', | |
1 verbose cli 'install', | |
1 verbose cli '-g', | |
1 verbose cli 'meteorite' ] | |
2 info using [email protected] | |
3 info using [email protected] | |
4 verbose cache add [ 'meteorite', null ] | |
5 verbose cache add name=undefined spec="meteorite" args=["meteorite",null] |
This file contains 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
{ | |
"libs": ["browser", "underscore", "jquery"], | |
"plugins": { | |
"meteor": {} | |
}, | |
"loadEagerly": ["*.js","*/*.js","*/*/*.js","*/*/*/*.js"], | |
"dontLoad": [".meteor", ".demeteorized"] | |
} |
This file contains 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
function getIdx(list, key, val){ | |
return _.chain(list).pluck(key).indexOf(val).value(); | |
} |
This file contains 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
Show hidden characters
{ | |
// JSLint Meteor Configuration File | |
// Match the Meteor Style Guide | |
// | |
// By @neonsamurai, forked from @raix with contributions from @aldeed and @awatson1978 | |
// | |
"maxerr" : 20, // {int} Maximum error before stopping | |
// Enforcing |