forked from stevenjh/advanced-draw-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
99 lines (91 loc) · 2.82 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
module.exports = function (grunt) {
// middleware for grunt.connect
var middleware = function (connect, options, middlewares) {
// inject a custom middleware into the array of default middlewares for proxy page
var proxypage = require('proxypage');
var proxyRe = /\/proxy\/proxy.ashx/i;
var enableCORS = function (req, res, next) {
res.setHeader('Access-Control-Allow-Origin', req.headers.origin);
res.setHeader('Access-Control-Allow-Credentials', true);
res.setHeader('Access-Control-Allow-Methods', 'GET,HEAD,PUT,PATCH,POST,DELETE');
res.setHeader('Access-Control-Allow-Headers', req.headers['access-control-request-headers']);
return next();
};
var proxyMiddleware = function (req, res, next) {
if (!proxyRe.test(req.url)) {
return next();
}
proxypage.proxy(req, res);
};
middlewares.unshift(proxyMiddleware);
middlewares.unshift(enableCORS);
middlewares.unshift(connect.json()); //body parser, see https://github.com/senchalabs/connect/wiki/Connect-3.0
middlewares.unshift(connect.urlencoded()); //body parser
return middlewares;
};
// grunt task config
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
build: {
src: ['src/**/*.js'],
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
}
}
},
intern: {
dev: {
options: {
runType: 'runner',
config: 'tests/intern'
}
}
},
esri_slurp: {
dev: {
options: {
version: '3.10',
packageLocation: 'esri',
beautify: true
}
}
},
watch: {
files: ['src/**'],
tasks: ['jshint']
},
connect: {
server: {
options: {
port: 3000,
base: './',
hostname: '*',
middleware: middleware
}
}
},
open: {
server: {
path: 'http://localhost:3000/index.html'
}
}
});
// load the tasks
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-open');
// Loading using a local copy
grunt.loadNpmTasks('intern');
grunt.loadNpmTasks('grunt-esri-slurp');
// download Esri JSAPI
grunt.registerTask('slurp', ['esri_slurp']);
// Register a test task
grunt.registerTask('test', ['intern']);
// define the tasks
grunt.registerTask('default', 'Watches the project for changes, automatically builds them and runs a web server and opens default browser to preview.', ['jshint', 'connect:server', 'open:server', 'watch']);
grunt.registerTask('hint', 'Run simple jshint.', ['jshint', 'watch']);
};