forked from tymondesigns/angular-locker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
39 lines (37 loc) · 855 Bytes
/
config.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
'use strict';
var banner = [
'/*! ',
'<%= pkg.name %> ',
'v<%= pkg.version %> | ',
'(c) ' + new Date().getFullYear() + ' <%= pkg.author %> |',
' <%= pkg.homepage %>',
' */',
'\n'
].join('');
module.exports = {
paths: {
output : 'dist',
vendor: [
'vendor/angular/angular.js',
'vendor/angular-mocks/angular-mocks.js'
],
scripts : [
'src/angular-locker.js'
],
test: [
'test/mock/storageMock.js',
'test/spec/**/*.js'
],
versions: [
'./bower.json',
'./package.json'
],
karma: 'test/karma.conf.js',
gitdown: {
src: '.gitdown/README.md',
dest: 'README.md',
glob: '.gitdown/**/*.md'
}
},
banner: banner
};