forked from entrylabs/entryjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
123 lines (117 loc) · 3.37 KB
/
Copy pathGruntfile.js
File metadata and controls
123 lines (117 loc) · 3.37 KB
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
122
123
module.exports = function(grunt) {
'use strict';
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: [
'test_util/*.js',
'extern/jquery/jquery.js',
'extern/blockly/blockly_compressed.js',
'dist/entry.js'
]
},
unit: {
configFile: 'karma.conf.js',
logLevel: 'ERROR',
files: [
{ src : ['test/**/*.js'] }
]
}
},
closureCompiler: {
options: {
compilerFile: 'node_modules/closurecompiler/compiler/compiler.jar',
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('closure', ['closureCompiler']);
};