Advertisement
Guest User

Untitled

a guest
Jul 18th, 2014
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /* Exports a function which returns an object that overrides the default &
  2. * plugin file patterns (used widely through the app configuration)
  3. *
  4. * To see the default definitions for Lineman's file paths and globs, see:
  5. *
  6. * - https://github.com/linemanjs/lineman/blob/master/config/files.coffee
  7. */
  8. module.exports = function(lineman) {
  9. //Override file patterns here
  10. return {
  11. js: {
  12. vendor: [
  13.  
  14. "vendor/components/jquery/dist/jquery.js",
  15. "vendor/components/bootstrap/dist/js/bootstrap.js",
  16. "vendor/components/underscore/underscore.js",
  17. "vendor/components/angular/angular.js",
  18. "vendor/components/angular-sanitize/angular-sanitize.js",
  19. "vendor/components/angular-route/angular-route.js",
  20. "vendor/components/angular-resource/angular-resource.js",
  21. ],
  22. app: [
  23. "app/js/app.js",
  24. "app/js/**/*.js"
  25. ],
  26. plugin: [
  27. "vendor/modernizr/modernizr-2.6.2-respond-1.1.0.min.js",
  28. "vendor/plugins/mandatoryJs.min.js",
  29. "vendor/plugins/metrojs/metrojs.min.js",
  30. ],
  31. concatenatedVendor: "generated/js/vendor.js",
  32. minifiedVendor: "dist/js/vendor.js",
  33. concatenatedPlugin: "generated/js/plugin.js",
  34. minifiedPlugin: "dist/js/plugin.js"
  35. },
  36.  
  37. css: {
  38. vendor: [
  39. "vendor/css/icons/icons.min.css",
  40. "vendor/css/bootstrap.min.css",
  41. "vendor/css/plugins.min.css",
  42. ]
  43. },
  44.  
  45. less: {
  46. app: "app/css/app.less",
  47. watch: "app/css/**/*.less"
  48. },
  49.  
  50. webfonts: {
  51. root: "fonts"
  52. }
  53.  
  54. };
  55. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement