Skip to content

Commit ad5047b

Browse files
committed
Fixes #95.
1 parent 41c58da commit ad5047b

File tree

14 files changed

+1206
-994
lines changed

14 files changed

+1206
-994
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 0.10.1 - xx July 2014
2+
3+
###### Backwards compatible bug fixes
4+
- #95 - observe-js outdated
5+
16
##### 0.10.0 - 18 July 2014
27

38
Official Release

Gruntfile.js

-10
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,6 @@ module.exports = function (grunt) {
7272
dist: {
7373
files: {
7474
'dist/angular-data.js': ['src/index.js']
75-
},
76-
options: {
77-
// TODO: There's got to be a better way to consume observe-js without it polluting the global space
78-
postBundleCB: function (err, src, next) {
79-
if (err) {
80-
next(err);
81-
}
82-
src = src.replace('(typeof global !== \'undefined\' && global ? global : window)', '((exports.Number = { isNaN: window.isNaN }) ? exports : exports)');
83-
next(err, src);
84-
}
8575
}
8676
}
8777
},

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Jason Dobry",
33
"name": "angular-data",
44
"description": "Data store for Angular.js.",
5-
"version": "0.10.0",
5+
"version": "0.10.1",
66
"homepage": "http://angular-data.pseudobry.com/",
77
"repository": {
88
"type": "git",
@@ -29,7 +29,7 @@
2929
"angular": "~1.2.16",
3030
"angular-mocks": "~1.2.16",
3131
"angular-cache": "~3.1.0",
32-
"observe-js": "~0.2.0",
32+
"observe-js": "0.3.4",
3333
"angular-data-mocks": "~0.3.1"
3434
}
3535
}

0 commit comments

Comments
 (0)