Skip to content

Commit 6acfb8f

Browse files
committed
Updated travis, updated readme
1 parent b3dddad commit 6acfb8f

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ install:
88
- npm install
99
- npm rebuild node-sass
1010
script:
11-
- npm run prod
11+
- npm run build:library:prod
1212
- npm test
1313
- npm run coveralls

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# react-notifications-component
44

5-
Highly configurable and easy to use React Component to notify your users!
5+
Highly configurable and easy to use React component to notify your users!
66

77
## Demo
88

@@ -12,20 +12,20 @@ https://teodosii.github.io/react-notifications-component/
1212

1313
## Features
1414

15-
- Touch support
16-
- Responsive notifications
17-
- Predefined standard notification types (`default`, `success`, `info`, `danger`, `warning`)
18-
- Custom notification types
19-
- Custom notification content (`images`, `icons` etc)
20-
- Dismiss after number of seconds
21-
- Dismissable by swiping
22-
- Dismissable by clicking
23-
- Dismissable by custom X icon
24-
- Custom animations on show
25-
- Custom animations on exit
26-
- Custom transitions on sliding
27-
- Custom transitions on swiping
28-
- Top/bottom notification insertion
15+
- Touch support :heavy_check_mark:
16+
- Responsive notifications :heavy_check_mark:
17+
- Standard notification types (`default`, `success`, `info`, `danger`, `warning`) :heavy_check_mark:
18+
- Custom notification types :heavy_check_mark:
19+
- Custom notification content (`images`, `icons` etc) :heavy_check_mark:
20+
- Dismiss after timeout :heavy_check_mark:
21+
- Dismissable by swiping :heavy_check_mark:
22+
- Dismissable by clicking :heavy_check_mark:
23+
- Dismissable by custom X icon :heavy_check_mark:
24+
- Custom animations on show :heavy_check_mark:
25+
- Custom animations on exit :heavy_check_mark:
26+
- Custom transitions on sliding :heavy_check_mark:
27+
- Custom transitions on swiping :heavy_check_mark:
28+
- Notification insertion at both ends of container :heavy_check_mark:
2929

3030
## Install
3131

@@ -37,7 +37,7 @@ npm install react-notifications-component
3737

3838
You must place `ReactNotificationsComponent` component at the root level of the application in order to work properly, otherwise it might conflict with other DOM elements due to the positioning.
3939

40-
Use ref arrow syntax when declaring `ReactNotificationsComponent` in order to have access to internal method `addNotification`. All API methods provided must be called like this.
40+
Use ref syntax when declaring `ReactNotificationsComponent` in order to have access to internal method `addNotification`. All API methods provided must be called like this.
4141

4242
For further information on supported options, check documentation.
4343

@@ -85,7 +85,7 @@ class App extends React.Component {
8585

8686
First build the library
8787
```
88-
npm run build:library
88+
npm run build:library:dev
8989
```
9090
then run the webpack server to see the app running
9191
```

0 commit comments

Comments
 (0)