Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
needim committed Apr 13, 2017
1 parent 65b790a commit d118db6
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
25 changes: 24 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,29 @@ Documentation and examples are here: <http://ned.im/noty>

***

##### Basic Usage

```js
import Noty from 'noty';

new Noty({
text: 'Notification text'
}).show();

// or

const Noty = require('noty');

new Noty({
text: 'Notification text'
}).show();

```

##### Development

npm run dev
```console
$ npm run dev
$ npm run build
$ npm test
```
2 changes: 1 addition & 1 deletion lib/noty.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/noty.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/noty.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/noty.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "noty",
"version": "3.0.0",
"version": "3.0.1",
"title": "Noty - Notification Plugin",
"description": "Noty is a plugin that makes it easy to create alert - success - error - warning - information - confirmation messages as an alternative the standard alert dialog. Each notification is added to a queue. (Optional)",
"homepage": "http://ned.im/noty",
Expand Down

0 comments on commit d118db6

Please sign in to comment.