Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
psychobolt committed Dec 2, 2017
2 parents ed9cfcf + b7b3b4d commit fb9201b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 17 deletions.
5 changes: 3 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/dist/*
/flow-typed/npm/*
/dist
/stories/node_modules
/flow-typed/npm
2 changes: 1 addition & 1 deletion .eslintrc → .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"rules": {
"import/no-extraneous-dependencies": 0,
"no-confusing-arrow": ["error", {"allowParens": true}],
"arrow-parens": 0,
"arrow-parens": ["error", "as-needed"],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/prefer-default-export": 0,
"object-curly-newline": ["error", { "consistent": true }]
Expand Down
5 changes: 2 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ __mocks__
.vscode
coverage
stories
!dist/*
!dist
flow-typed
.babelrc
.eslintignore
.eslintrc
.eslintrc.json
.flowconfig
.travis.yml
jsconfig.json
rollup.config.*.js
test-config.js
yarn.lock
package-lock.json
*.log
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@

[![npm](https://img.shields.io/npm/v/react-pie-menu.svg)](https://www.npmjs.com/package/react-pie-menu)
[![Build Status](https://travis-ci.org/psychobolt/react-pie-menu.svg?branch=master)](https://travis-ci.org/psychobolt/react-pie-menu)
[![Dependencies Status](https://david-dm.org/psychobolt/react-pie-menu.svg)](https://david-dm.org/psychobolt/react-pie-menu)
[![codecov](https://codecov.io/gh/psychobolt/react-pie-menu/branch/master/graph/badge.svg)](https://codecov.io/gh/psychobolt/react-pie-menu)

[![Dependencies Status](https://david-dm.org/psychobolt/react-pie-menu.svg)](https://david-dm.org/psychobolt/react-pie-menu)
[![Dev Dependencies Status](https://david-dm.org/psychobolt/react-pie-menu/dev-status.svg)](https://david-dm.org/psychobolt/react-pie-menu?type=dev)
[![Peer Dependencies Status](https://david-dm.org/psychobolt/react-pie-menu/peer-status.svg)](https://david-dm.org/psychobolt/react-pie-menu?type=peer)

A configurable radial menu for React.

## Install
Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "rimraf dist/index.*.* dist/*.css && npm run build:dev && npm run build:prod",
"start": "npm run build:dev -- -w",
"test": "cross-env BABEL_ENV=commonjs jest",
"lint": "eslint src stories",
"lint": "eslint src stories *.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
Expand Down Expand Up @@ -68,6 +68,8 @@
"flow-typed": "2.2.3",
"jest": "^21.2.1",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.51.5",
"rollup-plugin-babel": "^3.0.2",
Expand All @@ -77,8 +79,9 @@
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.9"
},
"dependencies": {
"react": "^16.1.1",
"react-dom": "^16.1.1"
"dependencies": {},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5860,9 +5860,9 @@ react-docgen@^2.15.0:
node-dir "^0.1.10"
recast "^0.12.6"

react-dom@^16.1.1:
version "16.1.1"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.1.1.tgz#b2e331b6d752faf1a2d31399969399a41d8d45f8"
react-dom@^16.2.0:
version "16.2.0"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.2.0.tgz#69003178601c0ca19b709b33a83369fe6124c044"
dependencies:
fbjs "^0.8.16"
loose-envify "^1.1.0"
Expand Down Expand Up @@ -5976,9 +5976,9 @@ react-treebeard@^2.0.3:
shallowequal "^0.2.2"
velocity-react "^1.3.1"

react@^16.1.1:
version "16.1.1"
resolved "https://registry.yarnpkg.com/react/-/react-16.1.1.tgz#d5c4ef795507e3012282dd51261ff9c0e824fe1f"
react@^16.2.0:
version "16.2.0"
resolved "https://registry.yarnpkg.com/react/-/react-16.2.0.tgz#a31bd2dab89bff65d42134fa187f24d054c273ba"
dependencies:
fbjs "^0.8.16"
loose-envify "^1.1.0"
Expand Down

0 comments on commit fb9201b

Please sign in to comment.