-
Notifications
You must be signed in to change notification settings - Fork 39
/
Gruntfile.js
67 lines (60 loc) · 1.88 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
module.exports = function(grunt) {
var BUNDLE_NAME = 'sulucommunity',
SOURCE_PATH = BUNDLE_NAME + '/js',
DIST_PATH = BUNDLE_NAME + '/dist',
replaceVariables = {},
min = {},
path = require('path'),
srcpath = 'Resources/public/js',
destpath = 'Resources/public/dist';
// Build config "min" object dynamically.
grunt.file.expand({cwd: srcpath}, '**/*.js').forEach(function(relpath) {
// Create a target Using the verbose "target: {src: src, dest: dest}" format.
min[relpath] = {
src: path.join(srcpath, relpath),
dest: path.join(destpath, relpath)
};
// The more compact "dest: src" format would work as well.
// min[path.join(destpath, relpath)] = path.join(srcpath, relpath);
});
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(function(name) {
if ('grunt-cli' !== name) {
grunt.loadNpmTasks(name);
}
});
replaceVariables[SOURCE_PATH] = DIST_PATH;
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: min,
copy: {
templates: {
files: [
{expand: true, cwd: srcpath, src: ['**/*.html'], dest: destpath}
]
}
},
replace: {
build: {
options: {
variables: replaceVariables,
prefix: ''
},
files: [
{src: ['Resources/public/dist/main.js'], dest: 'Resources/public/dist/main.js'}
]
}
}
});
grunt.registerTask('build:js', [
'uglify',
'copy:templates',
'replace:build'
]);
grunt.registerTask('build', [
'build:js'
]);
grunt.registerTask('default', [
'build'
]);
};