-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.6.0 - stopSyncingWith, subscribable dispose, and various clean-up
- Loading branch information
Showing
9 changed files
with
384 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = "utf8" | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,24 @@ | ||
{ | ||
"name": "knockout-postbox", | ||
"version": "0.5.2", | ||
"version": "0.6.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/rniemeyer/knockout-postbox.git" | ||
}, | ||
"main": "build/knockout-postbox.js", | ||
"scripts": { | ||
"test": "grunt jasmine", | ||
"watch": "grunt watch", | ||
"build": "grunt" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.1", | ||
"grunt-contrib-uglify": "0.x.x", | ||
"grunt-contrib-jshint": "0.x.x", | ||
"grunt-contrib-watch": "0.x.x", | ||
"grunt-cli": "^1.2.0", | ||
"grunt-contrib-concat": "0.x.x", | ||
"grunt-contrib-jasmine": "0.x.x", | ||
"grunt-template-jasmine-istanbul": "0.x.x" | ||
"grunt-contrib-jshint": "0.x.x", | ||
"grunt-contrib-uglify": "0.x.x", | ||
"grunt-contrib-watch": "0.x.x", | ||
"grunt-template-jasmine-istanbul": "^0.4.0" | ||
} | ||
} |
Oops, something went wrong.