Skip to content

Commit 8d6a3ab

Browse files
Fixing for RxJS 4.0
1 parent f06db1c commit 8d6a3ab

25 files changed

+477
-578
lines changed

.travis.yml

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
language: node_js
22
node_js:
33
- "0.10"
4+
- "0.12"
5+
- 4
6+
- iojs
7+
notifications:
8+
slack: reactivex:e424dAgQ2W9kuRMe6ngxHQbv
9+
webhooks:
10+
urls:
11+
- https://webhooks.gitter.im/e/8f1482d7420d95b647ce
12+
on_success: change # options: [always|never|change] default: always
13+
on_failure: always # options: [always|never|change] default: always
14+
on_start: false # default: false

Gruntfile.js

+16-20
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = function (grunt) {
55
meta: {
66
banner:
77
'/*'+
8-
'Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.\r\n' +
8+
'Copyright (c) Microsoft. All rights reserved.\r\n' +
99
'Microsoft Open Technologies would like to thank its contributors, a list.\r\n' +
1010
'of whom are at http://aspnetwebstack.codeplex.com/wikipage?title=Contributors..\r\n' +
1111
'Licensed under the Apache License, Version 2.0 (the "License"); you.\r\n' +
@@ -20,42 +20,38 @@ module.exports = function (grunt) {
2020
'*/'
2121
},
2222
ngAnnotate: {
23-
options: {
24-
add: true,
25-
singleQuotes: true
26-
},
27-
'rx.angular': {
28-
files: [
29-
{
30-
expand: true,
31-
src: 'dist/rx.angular.js'
32-
}
33-
]
34-
}
23+
options: {
24+
add: true,
25+
singleQuotes: true
26+
},
27+
'rx.angular': {
28+
files: [{
29+
expand: true,
30+
src: 'dist/rx.angular.js'
31+
}]
32+
}
3533
},
3634
concat: {
3735
basic: {
3836
src: [
39-
'src/license.js',
40-
'src/intro.js',
41-
'src/basicheader.js',
37+
'src/headers/license.js',
38+
'src/headers/intro.js',
39+
'src/internal/trycatch.js',
4240
'src/module.js',
4341
'src/factory.js',
4442
'src/observeonscope.js',
4543
'src/safeApply.js',
4644
'src/$rootScopeExtensions.js',
4745
'src/observableRuntimeExtensions.js',
48-
'src/scopescheduler.js',
49-
'src/manageScope.js',
50-
'src/outro.js'
46+
'src/headers/outro.js'
5147
],
5248
dest: 'dist/rx.angular.js'
5349
}
5450
},
5551
uglify: {
5652
options: {
5753
banner:
58-
'/* Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.*/'
54+
'/* Copyright (c) Microsoft. All rights reserved. See License.txt in the project root for license information.*/'
5955
},
6056
basic: {
6157
options: {

0 commit comments

Comments
 (0)