Skip to content

Commit

Permalink
Init Gruntfile.js
Browse files Browse the repository at this point in the history
  • Loading branch information
thanpolas committed Feb 15, 2013
1 parent 9d68e9c commit 432401a
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*jshint camelcase:false */
/*
* Mantri • ember.js • TodoMVC
* https://github.com/thanpolas/todoAppMantri
*
* Copyright (c) 2013 Thanasis Polychronakis,
* Tom Dale, Стас Сушков
* Licensed under the MIT license.
*/

module.exports = function( grunt ) {
'use strict';

grunt.loadNpmTasks('mantri');

//
// Grunt configuration:
//
//
grunt.initConfig({
// Project configuration
// ---------------------
//
mantriDeps: {
options: {

},
todoApp: {
src: './',
dest: './deps.js'
}

},

mantriBuild: {
options: {

},
todoApp: {
src: 'test/todoApp/mantriConf.json',
dest: 'test/todoApp/js/dist/build.js'
}
},

watch: {
todo: {
files: ['js/**/*.js', 'mantriConf.json'],
tasks: ['mantriDeps:todoApp']
}
}

});

grunt.registerTask('default', ['test']);

};

0 comments on commit 432401a

Please sign in to comment.