-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathGruntfile.js
118 lines (107 loc) · 2.94 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
113
114
115
116
117
118
module.exports = function(grunt) {
grunt.initConfig({
// AMD definitions
autowrap: {
amd: {
options: {
wrapType:'amd'
},
files: {
'dist/phone-format-amd.js': ['dist/phone-format-amd.js']
}
},
exports: {
options: {
wrapType:'exports'
},
files: {
'dist/phone-format-exports.js': ['dist/phone-format-exports.js']
}
}
},
// Use replace workaround to avoid the following error when running autowrap task
// Warning: Parse error on line 48:
// ...g.SINGLE_QUOTE_RE_=/'/g;goog.string.NULL...
// -----------------------^
// Expecting 'REGEXP_BODY', got 'STRING' Use --force to continue.
replace: {
addWorkaround: {
src: ['dist/phone-format-amd.js', 'dist/phone-format-exports.js'],
overwrite: true,
replacements: [{
from: "/'/g",
to: "/(')/g"
}]
},
removeWorkaround: {
src: ['dist/phone-format-amd.js', 'dist/phone-format-exports.js'],
overwrite: true,
replacements: [{
from: "/(')/g",
to: "/'/g"
}]
}
},
// Concat definitions
concat: {
amd: {
src: ['lib/google-libraries.js', 'lib/phone-format-interface.js'],
dest: 'dist/phone-format-amd.js'
},
exports: {
src: ['lib/google-libraries.js', 'lib/phone-format-interface.js'],
dest: 'dist/phone-format-exports.js'
},
global: {
src: ['lib/global-wrap-start.js', 'dist/phone-format.js', 'lib/global-wrap-end.js'],
dest: 'dist/phone-format-global.js'
},
original: {
src: ['lib/google-libraries.js', 'lib/phone-format-interface.js'],
dest: 'dist/phone-format.js'
}
},
// Minify definitions
uglify: {
options: {
mangle: false,
sourceMap: true
},
amd: {
src: ['dist/phone-format-amd.js'],
dest: 'dist/phone-format-amd.min.js'
},
exports: {
src: ['dist/phone-format-exports.js'],
dest: 'dist/phone-format-exports.min.js'
},
global: {
src: ['dist/phone-format-global.js'],
dest: 'dist/phone-format-global.min.js'
},
original: {
src: ['dist/phone-format.js'],
dest: 'dist/phone-format.min.js'
}
},
copy: {
main: {
src: 'dist/phone-format-amd.js',
dest: 'tests/phone-format-amd.js',
}
}
});
grunt.loadNpmTasks('grunt-autowrap');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', [
'concat',
'replace:addWorkaround', // Workaroung to avoid autowrap Parse error
'autowrap',
'replace:removeWorkaround', // Workaroung to avoid autowrap Parse error
'uglify',
'copy'
]);
};