-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
executable file
·112 lines (102 loc) · 2.91 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
108
109
110
111
112
/*global module:false*/
module.exports = function(grunt) {
// Load all tasks
//require('load-grunt-tasks')(grunt);
// Show elapsed time
//require('time-grunt')(grunt);
// Project configuration.
grunt.initConfig({
assetsPath: 'assets/',
distPath: '_me/assets/',
componentPath: 'bower_components/',
less: {
me: {
options: {
//paths: ['<%= lessPath %>'],
cleancss: true
},
files: {
'<%= distPath %>css/me.min.css': ['<%= assetsPath %>less/me.less'],
'<%= distPath %>css/font-awesome.min.css': ['<%= assetsPath %>less/core/_fontawesome.less']
}
}
},
uglify: {
options: {
mangle: false,
preserveComments: false,
banner: '/*This is a personal project for "me". Copyright 2016 Ben Korody <[email protected]>*/'
},
me: {
files: {
'<%= distPath %>js/me.min.js': [
//'<%= bowerPath %>angular/angular.min.js',
//'<%= bowerPath %>mustache/mustache.min.js',
//'<%= bowerPath %>bootstrap/dist/js/bootstrap.min.js',
//'<%= bowerPath %>jquery.appear.js/jquery.appear.js',
//'<%= bowerPath %>jquery.easing/js/jquery.easing.min.js',
'<%= assetsPath %>js/core/respond.js',
'<%= assetsPath %>js/core/animate.js',
'<%= assetsPath %>js/lib/impress.js',
'<%= assetsPath %>js/me.js'
],
}
}
},
copy: {
me: {
files: [
{
flatten: true,
src: [
'<%= assetsPath %>font/**',
'<%= assetsPath %>img/**',
'<%= assetsPath %>js/lib/**',
'<%= assetsPath %>download/**'
],
dest: '_me/'
},
{
flatten: true,
expand: true,
//cwd: '<%= componentPath %>',
src: [
'<%= componentPath %>fontawesome/fonts/*',
],
dest: '<%= distPath %>font/fontawesome/'
},
{
flatten: true,
expand: true,
src: [
'<%= componentPath %>jquery/jquery.min.js',
'<%= componentPath %>jquery/jquery.min.map',
],
dest: '<%= distPath %>/js/lib/'
}
],
},
},
watch: {
options: {
//spawn: true,
//livereload: true,
},
css: {
files: ['<%= assetsPath %>**/*.less'],
tasks: ['less']
},
scripts: {
files: ['<%= assetsPath %>**/*.js'],
tasks: ['uglify'],
},
}
});
//
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
// Default task.
grunt.registerTask('default', ['less', 'uglify', 'copy']);
};