forked from revolunet/angular-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGruntfile.js
More file actions
116 lines (109 loc) · 3.24 KB
/
Gruntfile.js
File metadata and controls
116 lines (109 loc) · 3.24 KB
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
113
114
115
116
/* global require, module, process */
'use strict';
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner: '/**\n' +
' * <%= pkg.description %>\n' +
' * @version v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n' +
' * @link <%= pkg.homepage %>\n' +
' * @author <%= pkg.author %>\n' +
' * @license MIT License, http://www.opensource.org/licenses/MIT\n' +
' */\n'
},
connect: {
devserver: {
options: {
port: 9999,
hostname: '0.0.0.0',
base: '.',
keepalive: true
}
}
},
dirs: {
dest: '.'
},
// Copies remaining files to places other tasks can use
copy: {
styles: {
dest: '<%= dirs.dest %>/<%= pkg.name %>.css',
src: 'src/**/*.css'
}
},
concat: {
options: {
banner: '<%= meta.banner %>'
},
dist: {
src: ['src/*.js', 'src/**/*.js'],
dest: '<%= dirs.dest %>/<%= pkg.name %>.js'
}
},
cssmin: {
combine: {
files: {
'<%= dirs.dest %>/<%= pkg.name %>.min.css': ['src/css/*.css']
}
}
},
uglify: {
options: {
banner: '<%= meta.banner %>'
},
dist: {
src: ['<%= concat.dist.dest %>'],
dest: '<%= dirs.dest %>/<%= pkg.name %>.min.js'
}
},
jshint: {
files: ['Gruntfile.js', 'src/**/*.js'],
options: {
curly: false,
browser: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
expr: true,
node: true,
globals: {
exports: true,
angular: false,
$: false
}
}
},
watch: {
files: ['src/**'],
tasks: ['build']
}
});
//
// // Load the plugin that provides the "jshint" task.
// grunt.loadNpmTasks('grunt-contrib-jshint');
//
// // Load the plugin that provides the "concat" task.
// grunt.loadNpmTasks('grunt-contrib-concat');
//
// // Load the plugin that provides the "uglify" task.
// grunt.loadNpmTasks('grunt-contrib-uglify');
//
// grunt.loadNpmTasks('grunt-contrib-cssmin');
//
// grunt.loadNpmTasks('grunt-contrib-connect');
//
// // Load the plugin that provides the "watch" task.
// grunt.loadNpmTasks('grunt-contrib-watch');
// Build task.
grunt.registerTask('build', ['copy:styles', 'concat', 'uglify', 'cssmin']);
};