Skip to content

Commit 7c4625a

Browse files
committed
chore: added david-dm integration
1 parent bbc77e5 commit 7c4625a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# babel-plugin-transform-react-remove-prop
2-
[![npm version](https://img.shields.io/npm/v/babel-plugin-transform-react-remove-prop.svg?style=flat-square)](https://www.npmjs.com/package/babel-plugin-transform-react-remove-prop) [![build status](https://travis-ci.org/maxsbelt/babel-plugin-transform-react-remove-prop.svg?branch=master)](https://travis-ci.org/maxsbelt/babel-plugin-transform-react-remove-prop) [![Coverage Status](https://coveralls.io/repos/github/maxsbelt/babel-plugin-transform-react-remove-prop/badge.svg?branch=coveralls)](https://coveralls.io/github/maxsbelt/babel-plugin-transform-react-remove-prop?branch=coveralls) [![license](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest)
32

43
> Remove selected attributes in each react element by selected conditions
54
5+
[![npm version](https://img.shields.io/npm/v/babel-plugin-transform-react-remove-prop.svg?style=flat-square)](https://www.npmjs.com/package/babel-plugin-transform-react-remove-prop) [![build status](https://travis-ci.org/maxsbelt/babel-plugin-transform-react-remove-prop.svg?branch=master)](https://travis-ci.org/maxsbelt/babel-plugin-transform-react-remove-prop) [![tested with jest](https://img.shields.io/badge/tested_with-jest-99424f.svg)](https://github.com/facebook/jest) [![Coverage Status](https://coveralls.io/repos/github/maxsbelt/babel-plugin-transform-react-remove-prop/badge.svg?branch=master)](https://coveralls.io/github/maxsbelt/babel-plugin-transform-react-remove-prop?branch=master)
6+
[![Dependencies](https://img.shields.io/david/maxsbelt/babel-plugin-transform-react-remove-prop.svg)](https://david-dm.org/maxsbelt/babel-plugin-transform-react-remove-prop) [![DevDependencies](https://img.shields.io/david/dev/maxsbelt/babel-plugin-transform-react-remove-prop.svg)](https://david-dm.org/maxsbelt/babel-plugin-transform-react-remove-prop?type=dev)
7+
68
## Install
79

810
Using npm:
@@ -75,5 +77,5 @@ React.createElement('div', { ...props, 'data-test-id': 'id' })
7577
<div data-test-id='id' />
7678

7779
// Object spread
78-
<div {...{ 'data-test-id: 'id' }} />
80+
<div {...{ 'data-test-id': 'id' }} />
7981
```

0 commit comments

Comments
 (0)