# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. fs = require 'fs' path = require 'path' # See docs at http://brunch.readthedocs.org/en/latest/config.html. exports.config = files: javascripts: joinTo: 'javascripts/app.js': /^app/ 'javascripts/vendor.js': /^vendor/ 'test/javascripts/test.js': /^test(\/|\\)(?!vendor)/ 'test/javascripts/test-vendor.js': /^test(\/|\\)(?=vendor)/ order: before: [ 'vendor/scripts/console-helper.js', 'vendor/scripts/jquery-1.7.2.min.js', 'vendor/scripts/jquery-ui-1.9.0.custom.js' 'vendor/scripts/handlebars-1.0.0.beta.6.js', 'vendor/scripts/ember-latest.js', 'vendor/scripts/ember-data-latest.js', 'vendor/scripts/ember-i18n-1.2.0.js', 'vendor/scripts/bootstrap.js', 'vendor/scripts/d3.v2.js', 'vendor/scripts/sinon-1.4.2.js' ] stylesheets: defaultExtension: 'css' joinTo: 'stylesheets/app.css' order: before: [ 'vendor/styles/bootstrap.css', 'vendor/styles/datepicker.css' 'vendor/styles/font-awesome.css' 'vendor/styles/font-awesome-ie7.css' ] templates: precompile: true defaultExtension: 'hbs' joinTo: 'javascripts/app.js' : /^app/ server: port: 3333 base: '/' run: no