forked from blockchain/bc-phone-number
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
39 lines (36 loc) · 952 Bytes
/
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
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
browserify: {
dist: {
files: {'dist/js/bc-phone-number.js': ['src/bc-phone-number.js']},
options: {
browserifyOptions: {bundleExternal: false, standalone: 'bcPhoneNumber'}
}
}
},
karma: {
options: {configFile: 'test/karma.conf.js'},
unit: {
browsers: ['PhantomJS']
},
e2e: {
browsers: ['Chrome']
}
},
git_changelog: {
default: {
options: {
file: 'Changelog.md',
grep_commits: '^fix|^feat|^docs|^style|^refactor|^chore|^test|BREAKING',
repo_url: 'https://github.com/blockchain/bc-phone-number',
branch_name: 'master'
}
}
}
});
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('git-changelog');
};