You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -27,10 +27,10 @@ Pluggable components to add a trello-like kanban board to your application
27
27
28
28
## Getting Started
29
29
30
-
Install using npm or yarn
30
+
Install using yarn or yarn
31
31
32
32
```bash
33
-
$ npm install --save react-trello
33
+
$ yarn install --save react-trello
34
34
```
35
35
36
36
or
@@ -312,12 +312,6 @@ Tested to work with following browsers using [Browserling](https://www.browserli
312
312
* Safari 4.0 or above
313
313
* Microsoft Edge 15 or above
314
314
315
-
## Feature Wishlist
316
-
317
-
* the prop `onDataChange` is a catch all callback that returns the entire board data when anything changes on the board. Micro-events like when a card is added or re-arranged should be possible too
318
-
319
-
Check the Milestones for this project to track when the above features will be implemented.
320
-
321
315
## Logging
322
316
323
317
Pass environment variable `REDUX_LOGGING` as true to enable Redux logging in any environment
@@ -332,16 +326,16 @@ yarn run storybook
332
326
333
327
### Scripts
334
328
335
-
1. `npm run lint` : Lint all js files
336
-
2. `npm run lintfix` : fix linting errors of all js files
337
-
3. `npm run semantic-release` : make a release. Leave it for CI to do.
338
-
4. `npm run storybook`: Start developing by using storybook
339
-
5. `npm run test` : Run tests. tests file should be written as `*.test.js` and using ES2015
340
-
6. `npm run test:watch` : Watch tests while writing
341
-
7. `npm run test:cover` : Show coverage report of your tests
342
-
8. `npm run test:report` : Report test coverage to codecov.io. Leave this for CI
343
-
9. `npm run build`: transpile all ES6 component files into ES5(commonjs) and put it in `dist` directory
344
-
10. `npm run docs`: create static build of storybook in `docs` directory that can be used for github pages
329
+
1. `yarn run lint` : Lint all js files
330
+
2. `yarn run lintfix` : fix linting errors of all js files
331
+
3. `yarn run semantic-release` : make a release. Leave it for CI to do.
332
+
4. `yarn run storybook`: Start developing by using storybook
333
+
5. `yarn run test` : Run tests. tests file should be written as `*.test.js` and using ES2015
334
+
6. `yarn run test:watch` : Watch tests while writing
335
+
7. `yarn run test:cover` : Show coverage report of your tests
336
+
8. `yarn run test:report` : Report test coverage to codecov.io. Leave this for CI
337
+
9. `yarn run build`: transpile all ES6 component files into ES5(commonjs) and put it in `dist` directory
338
+
10. `yarn run docs`: create static build of storybook in `docs` directory that can be used for github pages
345
339
346
340
Learn how to write stories [here](https://storybook.js.org/basics/writing-stories/)
0 commit comments