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
{ | |
"author": "", | |
"name": "app", | |
"version": "0.1.0", | |
"dependencies": { | |
"grunt": "~0.4.0a", | |
"grunt-contrib-clean": "~0.3.0", | |
"grunt-contrib-concat": "~0.1.0", | |
"grunt-contrib-connect": "~0.1.0", | |
"grunt-contrib-handlebars": "~0.3.0", |
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
/*global module:false*/ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
sass: { | |
dist: { | |
options: { | |
compass: true | |
}, | |
files: { | |
'dist/build/main.css': 'app/styles/sass/main.scss' |
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
{ | |
"author": "Matt Dawson <[email protected]>", | |
"name": "app", | |
"version": "0.1.0", | |
"dependencies": { | |
"grunt": "~0.4.0a", | |
"grunt-contrib-clean": "~0.4.0a", | |
"grunt-contrib-compass": "~0.1.0", | |
"grunt-contrib-concat": "~0.1.0", | |
"grunt-contrib-connect": "~0.1.0", |
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
jasmine: { | |
requirejs: { | |
//src: 'app/scripts/**/*.js', | |
src: [], | |
options: { | |
//specs: 'test/spec/**/*.js', | |
specs: [], | |
host: 'http://127.0.0.1:<%= connect.port %>', | |
template: 'requirejs', | |
templateOptions: { |
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
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('package.json'), | |
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + | |
'<%= grunt.template.today("yyyy-mm-dd") %>\n' + | |
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + |
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
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('package.json'), | |
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + | |
'<%= grunt.template.today("yyyy-mm-dd") %>\n' + | |
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + |
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
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('package.json'), | |
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + | |
'<%= grunt.template.today("yyyy-mm-dd") %>\n' + | |
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + |
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
{ | |
"author": { | |
"name": "WillowTree Apps" | |
}, | |
"name": "app", | |
"version": "0.1.0", | |
"dependencies": { | |
"grunt": "~0.4.0a", | |
"grunt-contrib-clean": "~0.4.0a", | |
"grunt-contrib-compass": "~0.1.0", |
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
define([ | |
'vent', | |
'marionette', | |
'collections/widget', | |
'layouts/index', | |
'views/widget/collection' | |
], function ( | |
vent, | |
Marionette, | |
WidgetCollection, |
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
define([ | |
'marionette', | |
'routers/index', | |
'controllers/index' | |
], function (Marionette, IndexRouter, IndexController) { | |
"use strict"; | |
var app = new Marionette.Application(); | |
app.addRegions({ |