-
Notifications
You must be signed in to change notification settings - Fork 33
/
Gruntfile.js
100 lines (90 loc) · 2.46 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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
concat: {
node: {
src: ['src/intro.js',
'src/exports.js',
'src/middle.js',
'src/noam.util.js',
'src/require-structure.js',
'src/noam.fsm.js',
'src/noam.grammar.js',
'src/noam.re.js',
'src/outro.js'],
dest: 'lib/node/noam.js'
},
browser: {
src: ['src/intro.js',
'src/exports.js',
'src/middle.js',
'src/noam.util.js',
'node_modules/structure.js/lib/inline-hashtable.js',
'src/after-inline-hashtable.js',
'src/noam.fsm.js',
'src/noam.grammar.js',
'src/noam.re.js',
'src/outro.js'],
dest: 'lib/browser/noam.js'
}
},
jshint: {
all: ['src/exports.js', 'src/noam.util.js', 'src/noam.fsm.js', 'src/noam.grammar.js', 'src/noam.re.js', 'test/*.js', 'benchmarks/*.js']
},
uglify: {
node: {
src: ['lib/node/noam.js'],
dest: 'lib/node/noam.min.js'
},
browser: {
src: ['lib/browser/noam.js'],
dest: 'lib/browser/noam.min.js'
}
},
jasmine_node: {
specFolderName: "",
projectRoot: "./test",
requirejs: false,
forceExit: true,
matchall: true,
verbose: false
},
jsvalidate: {
files: ['src/exports.js', 'src/noam.util.js', 'src/noam.fsm.js', 'src/noam.grammar.js', 'src/noam.re.js', 'test/*.js', 'benchmarks/*.js']
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
indent: 2,
newcap: true,
noarg: true,
noempty: true,
nonew: true,
quotmark: "single",
undef: true,
unused: true,
trailing: true,
maxlen: 100
},
globals: {
console: true,
require: true,
define: true,
requirejs: true,
describe: true,
expect: true,
it: true
}
},
});
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.loadNpmTasks('grunt-jsvalidate');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
// Default task.
grunt.registerTask('default', ['jsvalidate', 'jshint', 'concat', 'uglify', 'jasmine_node']);
};