Skip to content

Instantly share code, notes, and snippets.

@D1plo1d
Created January 4, 2014 04:15
Show Gist options
  • Save D1plo1d/8251578 to your computer and use it in GitHub Desktop.
Save D1plo1d/8251578 to your computer and use it in GitHub Desktop.
# vim: ai:et:sts=2:ts=2:sw=2
require "sugar"
exports.config =
# See http://brunch.readthedocs.org/en/latest/config.html for documentation.
modules:
definition: false
wrapper: false
paths:
public: "_public/"
files:
javascripts:
joinTo:
'js/app.js': /^app/
'js/vendor.js': /^(vendor|bower_components)/
'test/javascripts/test.js': /^test(\/|\\)(?!vendor)/
'test/javascripts/test-vendor.js': /^test(\/|\\)(?=vendor)/
order:
before: [
'app/scripts/init.coffee'
'app/scripts/routes.coffee'
'app/scripts/controllers/*'
'app/scripts/directives/*'
'app/scripts/factories/*'
]
after: []
stylesheets:
joinTo:
'css/app.css': /app\/styles\/app.styl/
# (f) ->
# console.log f
# 'app/styles/app.styl'
'test/stylesheets/test.css': /^test/
order:
after: []
templates:
joinTo:
'js/templates.js': /^(app\/partials\/|vendor\/)/
'index.html': /^app\/index/
plugins:
jade:
pretty: yes
stylus:
enabled: true
{
"author": "Przemysław Kamiński",
"name": "brunch-on-asteroids",
"description": "Brunch with AngularJS, Twitter Bootstrap + Bootswatch, SASS and CoffeeScript/LiveScript enabled and optional modules",
"version": "0.0.1",
"homepage": "https://github.com/exlee/brunch-on-asteroids",
"repository": {
"type": "git",
"url": "https://github.com/exlee/brunch-on-asteroids"
},
"engines": {
"node": "~0.6.10 || 0.8 || 0.9"
},
"scripts": {
"start": "brunch watch --server",
"build": "brunch build --optimize",
"test": "brunch test"
},
"dependencies": {
"sugar": "*",
"jade-brunch": ">= 1.0 < 1.5",
"static-jade-brunch": ">= 1.0 < 1.5",
"javascript-brunch": ">= 1.0 < 1.5",
"LiveScript-brunch": ">= 1.0 < 1.5",
"coffee-script-brunch": "=> 1.0 < 1.5",
"coffeelint-brunch": ">= 1.0 < 1.5",
"auto-reload-brunch": "~1.4.0",
"css-brunch": ">= 1.0 < 1.5",
"sass-brunch": ">= 1.0 < 1.5",
"less-brunch": ">= 1.0 < 1.5",
"uglify-js-brunch": ">= 1.0 < 1.5",
"clean-css-brunch": ">= 1.0 < 1.5",
"stylus-brunch": "1.*"
},
"devDependencies": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment