Skip to content

Commit 7e20197

Browse files
committed
Fixes #91.
1 parent ad5047b commit 7e20197

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
##### 0.10.1 - xx July 2014
22

33
###### Backwards compatible bug fixes
4+
- #91 - dist/angular-data(.min).js doesn't end with a semicolon
45
- #95 - observe-js outdated
56

67
##### 0.10.0 - 18 July 2014

dist/angular-data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5479,4 +5479,4 @@ module.exports = [function () {
54795479
};
54805480
}];
54815481

5482-
},{"mout/array/contains":2,"mout/array/filter":3,"mout/array/slice":7,"mout/array/sort":8,"mout/array/toLookup":9,"mout/lang/isBoolean":14,"mout/lang/isEmpty":15,"mout/object/deepMixIn":22,"mout/object/forOwn":24,"mout/object/pick":27,"mout/object/set":28,"mout/string/makePath":29,"mout/string/upperCase":30}]},{},[61])
5482+
},{"mout/array/contains":2,"mout/array/filter":3,"mout/array/slice":7,"mout/array/sort":8,"mout/array/toLookup":9,"mout/lang/isBoolean":14,"mout/lang/isEmpty":15,"mout/object/deepMixIn":22,"mout/object/forOwn":24,"mout/object/pick":27,"mout/object/set":28,"mout/string/makePath":29,"mout/string/upperCase":30}]},{},[61]);

package.json

+11-12
Original file line numberDiff line numberDiff line change
@@ -22,29 +22,28 @@
2222
"grunt": "0.4.5",
2323
"grunt-cli": "0.1.13",
2424
"grunt-contrib-clean": "0.5.0",
25-
"load-grunt-tasks": "0.4.0",
25+
"load-grunt-tasks": "0.6.0",
2626
"grunt-docular": "0.1.2",
27-
"grunt-contrib-uglify": "0.4.0",
27+
"grunt-contrib-uglify": "0.5.0",
2828
"grunt-contrib-jshint": "0.10.0",
2929
"grunt-contrib-copy": "0.5.0",
3030
"grunt-contrib-concat": "0.4.0",
3131
"karma-script-launcher": "~0.1.0",
32-
"karma-chrome-launcher": "~0.1.3",
32+
"karma-chrome-launcher": "~0.1.4",
3333
"karma-firefox-launcher": "~0.1.3",
3434
"karma-phantomjs-launcher": "~0.1.4",
35-
"karma": "~0.12.16",
35+
"karma": "~0.12.17",
3636
"grunt-karma": "~0.8.3",
3737
"karma-chai": "0.1.0",
38-
"mocha": "~1.19.0",
39-
"karma-coverage": "~0.2.1",
38+
"mocha": "~1.20.1",
39+
"karma-coverage": "~0.2.4",
4040
"grunt-contrib-watch": "~0.6.1",
41-
"grunt-karma-coveralls": "~2.5.0",
42-
"karma-mocha": "~0.1.3",
41+
"grunt-karma-coveralls": "~2.5.1",
42+
"karma-mocha": "~0.1.6",
4343
"karma-sinon": "~1.0.3",
44-
"time-grunt": "~0.3.1",
45-
"browserify": "4.1.3",
46-
"grunt-browserify": "2.1.0",
47-
"karma-spec-reporter": "0.0.13"
44+
"time-grunt": "~0.4.0",
45+
"karma-spec-reporter": "0.0.13",
46+
"grunt-browserify": "^2.1.3"
4847
},
4948
"scripts": {
5049
"test": "node node_modules/grunt-cli/bin/grunt test"

0 commit comments

Comments
 (0)