forked from rstudio/leaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
74 lines (72 loc) · 2.1 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
module.exports = function (grunt) {
grunt.initConfig({
babel: {
options: {
sourceMap: true,
presets: ["es2015"],
plugins: ["transform-es2015-modules-commonjs"]
},
dist: {
files: [{
expand: true,
cwd: 'javascript/src',
src: ['**/*.js'],
dest: 'inst/htmlwidgets/sources',
ext:'.js'
}]
},
distSpecs: {
files: [{
expand: true,
cwd: 'javascript/tests',
src: ['**/*.js'],
dest: 'inst/htmlwidgets/sources',
ext:'.js'
}]
}
},
browserify: {
options: {
browserifyOptions: {
//debug: true
}
},
dist: {
files: {
// if the source file has an extension of es6 then
// we change the name of the source file accordingly.
// The result file's extension is always .js
"./inst/htmlwidgets/leaflet.js": ["./inst/htmlwidgets/sources/index.js"]
}
}
},
eslint: {
target: ["./javascript/src/*.js"]
},
mochaTest: {
test: {
options: {
reporter: "spec",
require: ["babel-register", "source-map-support/register"],
// captureFile: 'results.txt', // Optionally capture the reporter output to a file
quiet: false, // Optionally suppress output to standard out (defaults to false)
clearRequireCache: false // Optionally clear the require cache before running tests (defaults to false)
},
src: ["inst/htmlwidgets/sources/test-*.js"]
}
},
watch: {
scripts: {
files: ["./javascript/src/**/*.js", "javascript/tests/**/*.js"],
tasks: ["babel", "browserify", "eslint", "mochaTest"]
}
}
});
grunt.loadNpmTasks("grunt-babel");
grunt.loadNpmTasks("grunt-browserify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-eslint");
grunt.loadNpmTasks("grunt-mocha-test");
grunt.registerTask("default", ["watch"]);
grunt.registerTask("build", ["babel", "browserify", "eslint", "mochaTest"]);
};