-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
106 lines (94 loc) · 2.18 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
module.exports = function(grunt) {
grunt.initConfig({
watch: {
js: {
files: ['src/**/*.js'],
tasks: ['concat:app', 'babel', 'browserify', 'concat:lib', 'concat:dist'],
options: {
spawn: false,
},
},
css: {
files: ['src/main.scss'],
tasks: ['sass', 'concat:css'],
options: {
spawn: false,
},
}
},
sass: {
dist: {
options: {
style: 'expanded',
sourcemap: 'none'
},
files: {
'dist/app.css': 'src/main.scss'
}
}
},
babel: {
options: {
sourceMap: true,
presets: ['@babel/preset-env']
},
app: {
files: {
'dist/app.js': ['dist/app.js']
}
}
},
browserify: {
dist: {
files: {
'dist/app.js': 'dist/app.js'
}
}
},
concat: {
options: {
separator: ';',
},
app: {
src: [
'src/**/*.js',
],
dest: 'dist/app.js',
},
lib: {
src: [
'node_modules/codemirror/lib/codemirror.js',
'node_modules/sn-components-api/dist/dist.js',
'vendor/mark-selection.js'
],
dest: 'dist/lib.js',
},
dist: {
src: ['dist/lib.js', 'dist/app.js'],
dest: 'dist/dist.js',
},
css: {
options: {
separator: '',
},
src: ['node_modules/codemirror/lib/codemirror.css', 'node_modules/sn-stylekit/dist/stylekit.css', 'dist/app.css'],
dest: 'dist/dist.css',
}
},
copy: {
main: {
files: [
{expand: true, cwd: 'node_modules/', src: ['sn-codemirror-search/**'], dest: 'dist/'},
],
},
},
});
grunt.loadNpmTasks('grunt-newer');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['concat:app', 'babel', 'browserify', 'concat:lib', 'concat:dist', 'sass', 'concat:css', 'copy']);
};