Created
May 2, 2014 20:42
-
-
Save timtyrrell/4406aa042c5b18db5538 to your computer and use it in GitHub Desktop.
files.js
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
administrator@wolverine:~/dev/apps/wm_client(master+*-)% lineman config files.js | |
{ | |
"app": [ | |
"app/js/config/*.js", | |
"app/js/mixins/*.js", | |
"app/js/services/*.js", | |
"app/js/models/*.js", | |
"app/js/routes/*.js", | |
"app/js/controllers/*.js", | |
"app/js/components/*.js" | |
], | |
"vendor": [ | |
"vendor/bower/jquery/dist/jquery.min.js", | |
"vendor/bower/handlebars/handlebars.min.js", | |
"vendor/bower/ember/ember.js" | |
], | |
"spec": "spec/**/*.js", | |
"specHelpers": "spec/helpers/**/*.js", | |
"concatenated": "generated/js/app.js", | |
"concatenatedSpec": "generated/js/spec.js", | |
"minified": "dist/js/app.js", | |
"minifiedWebRelative": "js/app.js" | |
} |
I should have looked at files.coffee, not files.js! Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My app.js file is shoving the "components" folder files in before my "config" files, anyway to change the load/compile order?