forked from Meisaka/trillek-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
100 lines (97 loc) · 1.9 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
var packageFilePath = './package.json';
var packageFile = require(packageFilePath);
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON(packageFilePath),
copy: {
main: {
expand: true,
src: './assets/images/raw/**',
dest: './build/'
}
},
compass: {
dist: {
options: {
config: './config.rb',
environment: 'production',
outputStyle: 'compressed',
noLineComments: true,
imagesDir: 'build/assets/images'
}
}
},
imagemin: {
dynamic: {
files: [
{
expand: true,
cwd: './build/assets/',
src: '**/*.{png,jpg,gif}',
dest: './build/assets'
}
]
}
},
jshint: {
all: './assets/js/**/*.js'
},
jsdoc: {
dist: {
src: ['./assets/js/**/*.js'],
options: {
destination: 'doc'
}
}
},
requirejs: {
compile: {
options: {
name: 'almond',
baseUrl: './assets/js',
include: 'main',
mainConfigFile: './assets/js/require-config.js',
out: './build/assets/js/main.min.js',
optimize: 'uglify2',
wrap: true,
uglify2: {
mangle: true
}
}
}
},
compress: {
main: {
options: {
archive: ['dist/', packageFile.name, '-', packageFile.version, '.zip'].join(''),
mode: 'zip'
},
files: [
{
expand: true,
cwd: './build',
src: ['**']
}
]
}
},
clean: ['./build/assets/**', './doc']
});
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-imagemin');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-requirejs');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-jsdoc');
grunt.registerTask('default', [
'copy',
'compass',
'imagemin',
'jshint',
'jsdoc',
'requirejs',
'compress'
]);
};