-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
81 lines (68 loc) · 1.55 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*jshint camelcase:false */
/*
* Mantri • ember.js • TodoMVC
* https://github.com/thanpolas/todoAppMantri
*
* Copyright (c) 2013 Tom Dale, Стас Сушков, Thanasis Polychronakis
* Licensed under the MIT license.
*/
module.exports = function( grunt ) {
'use strict';
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
grunt.loadNpmTasks('mantri');
//
// Grunt configuration:
//
//
grunt.initConfig({
mantriDeps: {
options: {
root: './'
},
todoApp: {
src: 'js',
dest: './deps.js'
}
},
mantriBuild: {
options: {
debug: true
},
todoApp: {
// src can be omitted as this is also the default value.
src: 'mantriConf.json',
dest: 'dist/build.js'
}
},
watch: {
todo: {
files: ['js/**/*.js', 'mantriConf.json'],
tasks: ['mantriDeps:todoApp']
}
},
connect: {
todoApp: {
options: {
port: 4242,
base: './',
keepalive: true
}
}
},
open: {
server: {
path: 'http://localhost:<%= connect.todoApp.options.port %>'
}
},
});
// Create shortcuts to main operations.
grunt.registerTask('deps', ['mantriDeps:todoApp']);
grunt.registerTask('build', ['mantriBuild:todoApp']);
grunt.registerTask('server', [
'open:server',
'connect:todoApp'
]);
// the default task, when 'grunt' is executed with no options.
grunt.registerTask('default', 'server');
};