This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
Gruntfile.js
75 lines (70 loc) · 1.71 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
module.exports = function(grunt) {
var port = 8000,
buildDir = './build',
lumbarFile = './lumbar.json',
hostname = 'localhost';
grunt.file.mkdir(buildDir);
grunt.initConfig({
lumbar: {
// performs an initial build so when tests
// and initial open are run, code is built
init: {
build: lumbarFile,
output: buildDir
},
// a long running process that will watch
// for updates, to include another long
// running task such as "watch", set
// background: true
watch: {
background: false,
watch: lumbarFile,
output: buildDir
}
},
'hapi-routes': {
map: {
options: {
package: 'web',
dest: buildDir + '/module-map.json'
}
}
},
// allows files to be opened when the
// Thorax Inspector Chrome extension
// is installed
thorax: {
inspector: {
background: true,
editor: "subl",
paths: {
views: "./js/views",
models: "./js/models",
collections: "./js/collections",
templates: "./templates"
}
}
}
});
grunt.registerTask('hapi-server', function() {
// Self running.
require('./server');
});
grunt.registerTask('open-browser', function() {
var open = require('open');
open('http://' + hostname + ':' + port);
});
grunt.loadTasks('tasks');
grunt.loadNpmTasks('thorax-inspector');
grunt.loadNpmTasks('lumbar');
grunt.loadNpmTasks('hula-hoop');
grunt.registerTask('default', [
'ensure-installed',
'thorax:inspector',
'hapi-routes',
'lumbar:init',
'hapi-server',
'open-browser',
'lumbar:watch'
]);
};