Skip to content

Commit 90893f6

Browse files
committed
fix: dev-dependencies, test semantic-release auto git tag release
1 parent e8c15fb commit 90893f6

16 files changed

Lines changed: 12014 additions & 5578 deletions

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
language: node_js
22
node_js:
3-
- "8"
4-
before_script:
5-
npm run build
6-
after_success:
3+
- "stable"
4+
script:
75
- npm run lint
6+
after_success:
87
- echo "All jobs succeeded! PUBLISHING..."
98
- npm run travis-deploy-once "npm run semantic-release"

CHANGELOG.md

Whitespace-only changes.

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,16 @@ Demo
5656
============
5757
https://jmfrancois.github.io/react-drawer/
5858

59+
Development
60+
============
61+
``` bash
62+
// 1. keep monitor changes to /src/*
63+
npm run build:watch
64+
// 2. open dev server
65+
npm start
66+
// 3. visit http://localhost:3000/example/
67+
```
68+
5969
Example
6070
=====
6171

example/app.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
* all right reserved by @author Tony Li
55
*
66
*/
7+
78
import React from 'react';
89
import ReactDOM from 'react-dom';
9-
import ReactDrawer from '../src/ReactDrawer';
10+
import ReactDrawer from '../lib/react-drawer';
1011

1112
class Main extends React.Component {
1213
constructor() {

0 commit comments

Comments
 (0)