-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
69 lines (65 loc) · 2.04 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
var request = require("request");
module.exports = function(grunt) {
grunt.initConfig({
pkg : grunt.file.readJSON('package.json'),
jshint: {
files: ['www/js/**/*.js','Gruntfile.js'],
options: {
ignores : ['www/js/less.js','www/js/text.js','www/js/require.js'],
},
},
copy : {
libs : {
cwd: 'bower_components/',
src: ['**'],
dest : 'static/libs/',
expand : true,
},
},
requirejs : {
compile : {
options : {
almond : true,
baseUrl : "static",
mainConfigFile : "static/app.js",
out : "build/release.min.js",
include : ["app"],
},
},
},
less : {
compile : {
files : {
"build/css/release.css" : "static/css/main.less",
},
},
},
watch: {
server: {
files: ['services/*', 'models/*', 'config/*', 'views/*', 'run.js'],
},
client: {
files: ['static/**/*', '!static/libs/**', 'views/*'],
},
options: {
debounceDelay: 1000,
}
},
});
grunt.event.on('watch', function(action, filepath, target) {
console.log(target);
if (target == 'client') {
request("http://www.formtopia.dev:35729/changed?files=" + filepath);
} else {
request("http://www.formtopia.dev:3000/" + filepath);
}
});
grunt.loadNpmTasks('grunt-requirejs');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['build']);
grunt.registerTask('build', ['jshint','requirejs', 'less']);
grunt.registerTask('libs',['copy:libs']);
};