-
Notifications
You must be signed in to change notification settings - Fork 459
/
Gruntfile.js
121 lines (112 loc) · 3.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
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';
const ClosureCompiler = require('google-closure-compiler').compiler;
grunt.initConfig({
concurrent: {
tasks: ['watch'],
options: {
logConcurrentOutput: true,
},
},
watch: {
test: {
files: ['test/**/*.js'],
tasks: ['karma'],
},
js: {
files: ['src/**'],
tasks: ['closureCompiler:targetName', 'karma', 'jshint', 'less'],
},
},
less: {
options: {
compress: false,
},
development: {
files: {
'dist/entry.css': 'src/css/*.less',
},
},
},
jshint: {
all: ['src/**/*.js'],
options: {
jshintrc: true,
ignores: ['src/blocks/*.js'],
},
},
karma: {
options: {
frameworks: ['mocha', 'chai'],
files: [
'http://ajax.aspnetcdn.com/ajax/jshint/r07/jshint.js',
'test_util/*.js',
'extern/lang/ko.js',
'extern/blockly/blockly_compressed.js',
'extern/util/static.js',
'extern/util/filbert.js',
'extern/util/bignumber.min.js',
'node_modules/jquery/jquery.js',
'node_modules/createjs-easeljs/lib/easeljs-0.8.2.min.js',
'node_modules/createjs-soundjs/lib/soundjs-0.6.2.min.js',
'node_modules/createjs-preloadjs/lib/preloadjs-0.6.2.min.js',
'dist/entry.js',
'src/workspace/block_entry.js',
],
},
unit: {
configFile: 'karma.conf.js',
files: [{ src: ['test/**/*.js'] }],
},
},
closureCompiler: {
options: {
compilerFile: ClosureCompiler.COMPILER_PATH,
checkModified: true,
compilerOpts: {
create_source_map: 'entry.js.map',
compilation_level: 'SIMPLE_OPTIMIZATIONS',
language_in: 'ECMASCRIPT5',
language_out: 'ECMASCRIPT5',
formatting: 'pretty_print',
},
},
targetName: {
src: ['src/entry.js', 'src/**/*.js', '!src/workspace/block_entry.js'],
dest: 'dist/entry.js',
},
dist: {
options: {
compilerOpts: {
compilation_level: 'SIMPLE_OPTIMIZATIONS',
language_in: 'ECMASCRIPT5',
language_out: 'ECMASCRIPT5',
},
},
expand: false,
src: ['src/entry.js', 'src/**/*.js'],
dest: 'dist/entry.min.js',
ext: '.min.js',
},
},
});
// Load NPM tasks
grunt.loadNpmTasks('grunt-closure-tools');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-concurrent');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.option('force', true);
// Default tasks.
grunt.registerTask('default', ['closureCompiler', 'karma', 'jshint', 'less']);
grunt.registerTask('development', [
'watch',
'closureCompiler:targetName',
'karma',
'concurrent',
]);
grunt.registerTask('test', ['karma']);
grunt.registerTask('closure', ['closureCompiler']);
grunt.registerTask('build', ['closureCompiler', 'less']);
};