-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathGruntfile.js
133 lines (112 loc) · 4.03 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/**
* Created with JetBrains WebStorm.
* User: abdelkrim
* Date: 2013-08-21
* Time: 00:00
* Copyright (c) 2013 ALT-F1, We believe in the projects we work on™
*/
'use strict';
// Mount folder to connect.
var mountFolder = function (connect, dir) {
return connect.static(require('path').resolve(dir));
};
module.exports = function (grunt) {
// Load all Grunt tasks
require('matchdep').filterDev('*').forEach(grunt.loadNpmTasks);
// Project configuration.
grunt.initConfig({
appConfig: grunt.file.readJSON('./app/config/appConfig.json'),
// Task configuration.
// Clean folders before compile assets.
clean: {
dev: '<%= appConfig.app.dev %>',
options: {
force: true
}
},
// Start local server.
connect: {
dev: {
options: {
port: '<%= appConfig.app.devPort %>',
hostname: 'localhost',
middleware: function (connect) {
return [
//livereloadSnippet,
mountFolder(connect, grunt.template.process('<%= appConfig.app.dev %>')),
mountFolder(connect, grunt.template.process('<%= appConfig.app.src %>'))
];
}
}
}
},
jshint: {
options: {
jshintrc: '.jshintrc'
},
gruntfile: {
src: 'Gruntfile.js'
},
app: {
src: ['<%= appConfig.app.src %>/<%= appConfig.directories.src %>/*.js', '<%= appConfig.app.src %>/routes/**/*.js']
}
},
nodemon: {
src: {
options: {
file: '<%= appConfig.app.src %>/<%= appConfig.app.rootPage %>',
args: ['development'],
nodeArgs: ['--debug'],
ignoredFiles: ['*.md', 'node_modules/**'],
watchedExtensions: ['js', 'jade', 'css'],
watchedFolders: ['<%= appConfig.app.src %>', '<%= appConfig.app.src %>/routes/**', '<%= appConfig.app.src %>/views/**'],
delayTime: 1,
env: {
PORT: '<%= appConfig.app.srcPort %>'
},
cwd: __dirname
}
}
},
// Open a web server with a given URL.
open: {
server: {
path: 'http://localhost:<%= appConfig.app.devPort %>'
}
},
server: {
port: '<%= appConfig.app.devPort %>',
base: './'
},
watch: {
//every time a file is changed, a task is performed
gruntfile: {
files: ['<%= jshint.app.src %>', '<%= jshint.gruntfile.src %>'],
tasks: ['jshint:gruntfile', 'jshint:app' ]
},
app: {
files: '{<%= appConfig.app.dev %>,<%= appConfig.app.src %>}/**/*.{css,html,js,jpg,jpeg,png}',
options: {
livereload: '<%= appConfig.app.livereloadPort %>'
}
},
jade: {
files: '<%= appConfig.app.src %>/**/*.jade',
tasks: 'compile:jade',
options: {
livereload: '<%= appConfig.app.livereloadPort %>'
}
}
}
}
)
;
// Start local server and watch for changes in files.
grunt.registerTask('src', [
'jshint',
'nodemon:src'
]);
// Available tasks
grunt.registerTask('default', ['src']);
}
;