forked from passy/angular-masonry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
99 lines (94 loc) · 2.02 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
module.exports = function (grunt) {
'use strict';
var liveReloadPort = 35729;
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('bower.json'),
// Files to watch for changes in order to make the browser reload
watch: {
options: {
livereload: liveReloadPort
},
livereload: {
files: [
'index.html',
'src/**/*.js'
]
},
},
// Fires up a simple connect server - useful for development
connect: {
options: {
port: 9999,
hostname: 'localhost',
livereload: liveReloadPort
},
livereload: {
options: {
open: true,
base: [
// Directories to serve static files from
'.',
'app',
'src',
]
}
}
},
uglify: {
options: {
preserveComments: 'some'
},
dist: {
src: '<%= pkg.name %>.js',
dest: '<%= pkg.name %>.min.js'
}
},
concat: {
options: {
process: true
},
dist: {
src: 'src/<%= pkg.name %>.js',
dest: '<%= pkg.name %>.js'
}
},
karma: {
dist: {
configFile: 'karma.conf.js',
browsers: ['PhantomJS']
},
watch: {
configFile: 'karma.conf.js',
singleRun: false,
autoWatch: true
}
},
conventionalChangelog: {
options: {
changelogOpts: {
// conventional-changelog options go here
preset: 'angular'
},
},
release: {
src: 'CHANGELOG.md'
}
},
ngAnnotate: {
app: {
options: {
singleQuotes: true,
},
files: [
{
'<%= pkg.name %>.js': ['<%= pkg.name %>.js']
}
]
}
}
});
grunt.registerTask('default', ['concat', 'ngAnnotate', 'uglify']);
grunt.registerTask('server', ['default', 'connect:livereload', 'watch']);
grunt.registerTask('test', ['karma:dist']);
};