forked from Reactive-Extensions/rx.angular.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
162 lines (151 loc) · 4.72 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
meta: {
banner:
'/*'+
'Copyright (c) Microsoft. All rights reserved.\r\n' +
'Microsoft Open Technologies would like to thank its contributors, a list.\r\n' +
'of whom are at http://aspnetwebstack.codeplex.com/wikipage?title=Contributors..\r\n' +
'Licensed under the Apache License, Version 2.0 (the "License"); you.\r\n' +
'may not use this file except in compliance with the License. You may.\r\n' +
'obtain a copy of the License at.\r\n\r\n' +
'http://www.apache.org/licenses/LICENSE-2.0.\r\n\r\n' +
'Unless required by applicable law or agreed to in writing, software.\r\n' +
'distributed under the License is distributed on an "AS IS" BASIS,.\r\n' +
'WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or.\r\n' +
'implied. See the License for the specific language governing permissions.\r\n' +
'and limitations under the License..\r\n' +
'*/'
},
ngAnnotate: {
options: {
add: true,
singleQuotes: true
},
'rx.angular': {
files: [{
expand: true,
src: 'dist/rx.angular.js'
}]
}
},
concat: {
basic: {
src: [
'src/headers/license.js',
'src/headers/intro.js',
'src/internal/trycatch.js',
'src/module.js',
'src/factory.js',
'src/observeonscope.js',
'src/safeApply.js',
'src/$rootScopeExtensions.js',
'src/observableRuntimeExtensions.js',
'src/scopescheduler.js',
'src/headers/outro.js'
],
dest: 'dist/rx.angular.js'
},
lite: {
src: [
'src/headers/license.js',
'src/headers/intro.lite.js',
'src/internal/trycatch.js',
'src/module.js',
'src/factory.js',
'src/observeonscope.js',
'src/safeApply.js',
'src/$rootScopeExtensions.js',
'src/observableRuntimeExtensions.js',
'src/scopescheduler.js',
'src/headers/outro.js'
],
dest: 'modules/rx.lite.angular/rx.lite.angular.js'
},
'lite-compat': {
src: [
'src/headers/license.js',
'src/headers/intro.lite.compat.js',
'src/internal/trycatch.js',
'src/module.js',
'src/factory.js',
'src/observeonscope.js',
'src/safeApply.js',
'src/$rootScopeExtensions.js',
'src/observableRuntimeExtensions.js',
'src/scopescheduler.js',
'src/headers/outro.js'
],
dest: 'modules/rx.lite.angular.compat/rx.lite.angular.compat.js'
}
},
uglify: {
options: {
banner:
'/* Copyright (c) Microsoft. All rights reserved. See License.txt in the project root for license information.*/'
},
basic: {
options: {
sourceMap: true,
sourceMapName: 'dist/rx.angular.map'
},
files: {'dist/rx.angular.min.js': ['dist/rx.angular.js'] }
},
lite: {
options: {
sourceMap: true,
sourceMapName: 'modules/rx.lite.angular/rx.lite.angular.map'
},
files: {'modules/rx.lite.angular/rx.lite.angular.min.js': ['modules/rx.lite.angular/rx.lite.angular.js'] }
},
'lite-compat': {
options: {
sourceMap: true,
sourceMapName: 'modules/rx.lite.angular.compat/rx.lite.angular.compat.map'
},
files: {'modules/rx.lite.angular.compat/rx.lite.angular.compat.min.js': ['modules/rx.lite.angular.compat/rx.lite.angular.compat.js'] }
}
},
qunit: {
all: ['tests/*.html']
}
});
require('load-grunt-tasks')(grunt);
grunt.registerTask('nuget', 'Register NuGet-RxJS-Angular', function () {
var done = this.async();
//invoke nuget.exe
grunt.util.spawn({
cmd: ".nuget/nuget.exe",
args: [
//specify the .nuspec file
"pack",
"nuget/RxJS-Bridges-Angular/RxJS-Bridges-Angular.nuspec",
//specify where we want the package to be created
"-OutputDirectory",
"nuget",
//override the version with whatever is currently defined in package.json
"-Version",
grunt.config.get("pkg").version
]
}, function (error, result) {
if (error) {
grunt.log.error(error);
} else {
grunt.log.write(result);
}
done();
});
});
// Default task(s).
grunt.registerTask('default', [
'concat:basic',
'concat:lite',
'concat:lite-compat',
'ngAnnotate',
'uglify:basic',
'uglify:lite',
'uglify:lite-compat',
'qunit'
]);
};