forked from Voog/wysihtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
107 lines (97 loc) · 2.79 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
107
module.exports = function(grunt) {
'use strict';
// List required source files that will be built into wysihtml.js
var base = [
'src/wysihtml.js',
'src/polyfills.js',
'lib/base/base.js',
'lib/rangy/rangy-core.js',
'lib/rangy/rangy-selectionsaverestore.js',
'lib/rangy/rangy-textrange.js',
'src/browser.js',
'src/lang/*.js',
'src/dom/*.js',
'src/quirks/*js',
'src/selection/selection.js',
'src/commands.js',
'src/core-commands/*.js',
'src/undo_manager.js',
'src/views/view.js',
'src/views/composer.js',
'src/views/composer.style.js',
'src/views/composer.observe.js',
'src/views/synchronizer.js',
'src/views/sourceview.js',
'src/views/textarea.js',
'src/editor.js'
];
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
options: {
process: function(src, filepath) {
return src.replace(/@VERSION/g, grunt.config.get('pkg.version'));
}
},
dist: {
src: base,
dest: 'dist/<%= pkg.name %>.js'
},
extraCommands: {
src: 'src/extra-commands/*.js',
dest: 'dist/<%= pkg.name %>.all-commands.js'
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd") %>) */\n',
sourceMap: true
},
build: {
files: {
'dist/minified/<%= pkg.name %>.min.js': 'dist/<%= pkg.name %>.js',
'dist/minified/<%= pkg.name %>.all-commands.min.js': 'dist/<%= pkg.name %>.all-commands.js'
}
}
},
open: {
test: {
path: 'test/index.html'
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-open');
grunt.registerTask('build-modules', 'Builds all extension files', function() {
var concat = {},
uglify = {};
grunt.file.expand('./src/extensions/*').forEach(function (d) {
var dir = d.split('/').pop();
if (!grunt.file.isDir(d)) {
var fnameArr = dir.split('.');
fnameArr.pop();
dir = fnameArr.join('.');
}
concat[dir] = {
src: grunt.file.isDir(d) ? [d + '/*.js'] : [d],
dest: 'dist/wysihtml.' + dir + '.js'
};
uglify[dir] = {
options: {
sourceMap: true
},
files: {
['dist/minified/wysihtml.' + dir + '.min.js']: 'dist/wysihtml.' + dir + '.js'
}
};
});
grunt.config.set('concat', concat);
grunt.task.run('concat');
grunt.config.set('uglify', uglify);
grunt.task.run('uglify');
});
grunt.registerTask('default', ['concat', 'uglify', 'build-modules']);
grunt.registerTask('test', ['open:test']);
};