-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
82 lines (77 loc) · 2.06 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
const babel = require('rollup-plugin-babel');
const serverPort = 5000;
module.exports = function (grunt) {
grunt.initConfig({
jasmine: {
pivotal: {
options: {
polyfills: ['tests/helpers/promise-polyfill.js'],
specs: 'tests/build/FlForm_Specs.js'
}
}
},
'http-server': {
dev: {
root: './',
port: serverPort,
showDir: true,
autoIndex: true,
ext: 'html',
runInBackground: true,
customPages: {
'/readme': 'README.md'
}
}
},
watch: {
js: {
files: 'src/**/*.js',
tasks: ['rollup'],
options: {
livereload: true
}
}
},
open: {
demo: {
path: `http://localhost:${serverPort}/demo/index.html`,
app: 'google-chrome'
}
},
rollup: {
options: {
banner: '"use strict";\n',
plugins: () => {
return [
babel({
// Function names leak to the global namespace. To avoid that,
// let's just put everything within an immediate function, this way variables
// are all beautifully namespaced.
banner: '(function () {',
footer: '}());',
exclude: './node_modules/**',
presets: ['es2015-rollup']
})
];
}
},
main: {
src: 'src/controller.js', // Only one source file is permitted
dest: 'dist/fl-form.js'
},
tests: {
src: 'tests/src/FlForm_Specs.js', // Only one source file is permitted
dest: 'tests/build/FlForm_Specs.js'
}
}
});
grunt.loadNpmTasks('grunt-rollup');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-http-server');
grunt.loadNpmTasks('grunt-open');
grunt.registerTask('default', []);
grunt.registerTask('test', ['rollup', 'jasmine']);
grunt.registerTask('dev', ['rollup', 'open', 'http-server', 'watch']);
grunt.registerTask('demo', ['dev']);
};