-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
82 lines (76 loc) · 2.23 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
/* eslint-env node */
const babel = require("rollup-plugin-babel");
const nodeResolve = require("rollup-plugin-node-resolve");
const commonjs = require("rollup-plugin-commonjs");
module.exports = (grunt) => {
"use strict";
grunt.initConfig({
jasmine: {
components: {
src: [
"components/*js"
],
options: {
specs: "tests/specs/*Spec.js"
}
}
},
rollup: {
options: {
plugins: () => {
return [
nodeResolve({ jsnext: true, main: true }),
commonjs(),
babel({
exclude: "node_modules/**",
presets: ["es2015-rollup"]
})
];
}
},
main: {
dest: "build/main.js",
src: "src/main.js" // Only one source file is permitted
}
},
concat: {
options: {
separator: ";\n"
},
dist: {
src: ["node_modules/webcomponents.js/CustomElements.min.js", "build/main.js"],
dest: "dist/x-div.js"
}
},
watch: {
demo: {
files: "demo/**/*.*",
tasks: ["dist"],
options: {
livereload: true
}
},
src: {
files: "src/**/*.*",
tasks: ["dist"],
options: {
livereload: true
}
}
},
open: {
demo: {
path: "demo/index.html",
app: "google-chrome"
}
}
});
grunt.registerTask("travis", ["jasmine"]);
grunt.loadNpmTasks("grunt-rollup");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-open");
grunt.registerTask("default", ["jshint"]);
grunt.registerTask("dev", ["dist", "open", "watch"]);
grunt.registerTask("dist", ["rollup", "concat"]);
};