Skip to content

Add keywords to package json files #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Examples can be found - [here](https://github.com/kenshoo/react-tree/blob/master
| `forwardIconRenderer` | `Component` | | `Component to replace the default ForwardIcon component. ` |
| `treeContainerRenderer`| `Component` | `tree_container.js` | `Component to replace the default TreeContainer component. ` |
| `customItemsRenderer ` | `Component` | | `Component to replace the default Items && inner Item component.`|
| `markSelectedItem` | `boolean` | `false` | `Toggle to mark selected item. ` |
| `selectedItem` | `Object` | | `Optional - enables managing selected item. The Object should contain 2 fields: item and leaf, for example: { item: ["a","b","c"], leaf: "c" }` |
<!-- props-table-end -->
<br/>

Expand Down
21 changes: 20 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,25 @@
"prettier": "prettier --check ./packages/**/*.js --ignore-path .gitignore",
"prettier:fix": "prettier --check ./packages/**/*.js --ignore-path .gitignore --write",
"release": "auto shipit"
}
},
"keywords": [
"react",
"components",
"select",
"search",
"find",
"ui",
"component",
"frontend",
"tree" ,
"searchintree",
"findintree",
"hierarchical",
"structure",
"form",
"input",
"items",
"list"
]
}

21 changes: 20 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,24 @@
"dependencies": {
"@emotion/core": "^10.0.28",
"classnames": "^2.2.6"
}
},
"keywords": [
"react",
"components",
"select",
"search",
"find",
"ui",
"component",
"frontend",
"tree" ,
"searchintree",
"findintree",
"hierarchical",
"structure",
"form",
"input",
"items",
"list"
]
}
24 changes: 23 additions & 1 deletion packages/material_tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,27 @@
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"react": "^16.12.0"
}
},
"keywords": [
"react",
"components",
"select",
"search",
"find",
"ui",
"component",
"frontend",
"tree" ,
"searchintree",
"findintree",
"hierarchical",
"structure",
"form",
"input",
"items",
"list",
"material",
"material-tree",
"material-ui"
]
}