This repository has been archived by the owner on Jul 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
224 lines (204 loc) · 7.19 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/**
* 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™
*/
/* jshint maxlen: 150 */
'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 %>'))
];
}
}
}
},
eslint: {
nodeFiles: {
options: {
configFile: 'app/config/eslint-node.json'
},
src: ['<%= appConfig.app.src %>/app.js', '<%= appConfig.app.src %>/routes/**/*.js']
},
browserFiles: {
options: {
configFile: 'app/config/eslint-browser.json'
},
src: ['<%= appConfig.app.src %>/public/js/*.js']
}
},
babel: {
options: {
sourceMap: true,
presets: ['babel-preset-es2015']
}
},
// uglify: {
// options: {
// mangle: {
// }
// },
// app: {
// files: {
// 'dist/app/public/js/app.min.js':'dist/app/public/js/*.js'
// }
// }
// },
// cssmin: {
// // options: {
// // shorthandCompacting: false,
// // roundingPrecision: -1
// // },
// target: {
// files: [{
// expand: true,
// cwd: 'app/public/css',
// dest: 'dist/app/public/css',
// ext: '.min.css',
// src: ['*.css', '!*.min.css']
// }]
// }
// },
jadeUsemin: {
scripts: {
options: {
prefix: 'app/public',
targetPrefix: 'dist/app/public',
failOnMissingSource: true, // optional
tasks: {
concat: ['concat'],
js: ['concat', 'babel', 'uglify'],
css: ['concat', 'cssmin']
}
},
files: {
'dist/app/views/one.jade': 'app/views/one.jade',
'dist/app/views/online-scan.jade': 'app/views/online-scan.jade',
'dist/app/views/carousel.jade': 'app/views/carousel.jade',
'dist/app/views/about.jade': 'app/views/about.jade',
'dist/app/views/layout.jade': 'app/views/layout.jade'
}
}
},
copy: {
dist: {
files: [
// includes files within path
{expand: true, src: ['Dockerfile','package.json','docker-*.yml'], dest: 'dist/', filter: 'isFile'},
{expand: true, src: [
'app/app.js', //FIXME optimize
'app/config/**/*',
'app/routes/**/*',
'app/views/**/*',
'app/public/fonts/**/*',
'app/public/media/**/*',
'app/public/images/**/*',
'app/public/img/**/*',
'app/public/css/*.min.css',
'app/public/css/bootstrap/**/*',
'app/public/css/fonts/**/*',
'app/public/js/assets/**/*',
'app/public/bootstrap-3.3.1/**/*',
'app/public/bower_components/**/*',
], dest: 'dist/'}
]
}
},
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: {
options: {
spawn: false,
},
//every time a file is changed, a task is performed
// gruntfile: {
// files: ['<%= eslint.app.src %>', '<%= eslint.gruntfile.src %>'],
// tasks: ['eslint:gruntfile', 'eslint: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 %>'
}
}
}
});
grunt.loadNpmTasks("gruntify-eslint");
grunt.loadNpmTasks("grunt-babel");
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-jade-usemin');
// Start local server and watch for changes in files.
grunt.registerTask('src', [
'eslint',
'nodemon:src',
'watch'
]);
grunt.registerTask('dist', [
'clean',
'copy',
'jadeUsemin'
]);
// Available tasks
grunt.registerTask('default', ['eslint', 'src']);
};