-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gruntfile.js
56 lines (53 loc) · 1.17 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
'use strict';
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-clean' );
grunt.loadNpmTasks( 'grunt-contrib-concat' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-stylelint' );
grunt.initConfig( {
eslint: {
options: {
cache: true,
fix: grunt.option( 'fix' )
},
all: '.'
},
stylelint: {
all: '**/*.{css,less}'
},
clean: {
dist: [ 'dist', 'demo/dist' ]
},
concat: {
options: {
sourceMap: true
},
dist: {
files: {
'dist/treeDiffer-dist.js': [
'build/intro.js.txt',
'src/treeDiffer.js',
'src/treeDiffer.TreeNode.js',
'src/treeDiffer.Tree.js',
'src/treeDiffer.Differ.js',
'build/export.js',
'build/outro.js.txt'
]
}
}
},
copy: {
dist: {
files: {
'demo/': 'dist/*',
'demo/dist/oojs.min.js': 'node_modules/oojs/dist/oojs.min.js'
}
}
}
} );
grunt.registerTask( 'build', [ 'clean', 'concat', 'copy' ] );
grunt.registerTask( 'lint', [ 'eslint', 'stylelint' ] );
grunt.registerTask( 'fix', 'eslint:fix' );
grunt.registerTask( 'default', [ 'lint', 'build' ] );
};