-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
121 lines (112 loc) · 4.2 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
module.exports = function(grunt){
'use strict';
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
all: ['Gruntfile.js', 'app/js/*.js'],
ignores: ['app/js/nunjucks.js'],
options: {
reporter: require('jshint-stylish')
}
},
connect: {
server: {
options: {
port: 9000,
base: 'app',
hostname: 'localhost',
livereload: 35729,
open: {
target: 'http://localhost:9000'
},
middleware: function (connect, options, middlewares) {
middlewares.push(function(req, res, next) {
if(req.url!='' && req.url!='/') {
var http = require('http');
var options = {
host: 'localhost',
port: '9000',
path: '/'
}
var request = http.request(options, function (result) {
// console.log(result);
var data = '';
result.on('data', function (chunk) {
data += chunk;
// // res.write(data);
// console.log(data);
});
result.on('end', function () {
// console.log(data);
res.write(data);
res.end();
return next();
});
});
request.on('error', function (e) {
console.log(e.message);
});
request.end();
// res.writeHead(302,
// {Location: 'http://localhost:9000/:lll'}
// );
// res.params = '?p=q'
}
});
return middlewares;
}
}
}
},
concat: {
options: {
separator: '/*file*/'
},
// js: {
// src: ['build/js/files/**/*.js'],
// // dest: 'build/js/<%= pkg.name %>.js'
// dest: '/home/adam/Server/js/robust.porter.js'
// },
css: {
src: ['app/css/scss/build/*.css',],
dest: 'app/css/<%= pkg.name %>.css'
}
},
sass: {
build: {
files: [{
expand: true,
cwd: 'app/css/scss/src',
src: ['*.scss'],
dest: 'app/css/scss/build',
ext: '.css'
}]
}
},
watch: {
lintingtasks: {
files: ['app/**/*.js'],
tasks: ['jshint']
},
reloadfiles: {
files: ['app/**/*'],
options: {
livereload: true
}
},
sass: {
//~ options: {
//~ livereload: false
//~ },
files: ['app/css/**/*.scss'],
tasks: ['buildcss']
},
}
});
// grunt.loadNpmTasks('grunt-contrib-jshint');
// grunt.loadNpmTasks('grunt-contrib-connect');
// grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['jshint', 'connect', 'watch']);
grunt.registerTask('buildcss', ['sass', 'concat:css']);
};