forked from paralleldrive/cuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrunt.js
51 lines (51 loc) · 1.24 KB
/
grunt.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
/*global module*/
module.exports = function(grunt) {
'use strict';
grunt.initConfig({
pkg: '<json:package.json>',
lint: {
all: ['./grunt.js', './dist/*.js', './test/test.js']
},
jshint: {
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
nonew: true,
noarg: true,
sub: true,
undef: true,
unused: true,
eqnull: true,
browser: true,
strict: true,
boss: false
}
},
concat: {
applitude: {
src: ['node_modules/applitude/dist/applitude.bundle.js'],
dest: 'lib/applitude.bundle.js'
},
browser: {
src: ['src/head.js', 'src/browser-fingerprint.js', 'src/footer.js'],
dest: 'dist/browser-cuid.js'
},
node: {
src: ['src/head.js', 'src/node-fingerprint.js', 'src/footer.js'],
dest: 'dist/node-cuid.js'
}
},
qunit: {
applitude: ['test/applitude-cuid-test.html'],
browser: ['test/browser-cuid-test.html']
},
test: {
"node-cuid": ['test/node-cuid-test.js']
}
});
grunt.registerTask('default', 'concat lint qunit test');
grunt.registerTask('install', 'concat');
};