Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
* It seems i have introduced a bug here by passing an object, whenever you would run ember install ember-toastr it would try to npm install [object Object]

* up with patch version number
  • Loading branch information
zomarg authored and knownasilya committed May 9, 2017
1 parent 5b327b5 commit 8f730f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blueprints/ember-toastr/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ module.exports = {
// }

afterInstall: function() {
return this.addPackageToProject({name: 'toastr'});
return this.addPackageToProject('toastr');
}
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-toastr",
"version": "1.6.0",
"version": "1.6.1",
"description": "Ember wrapper for Toastr.js notifications",
"directories": {
"doc": "doc",
Expand Down

0 comments on commit 8f730f9

Please sign in to comment.