├── .eslintrc ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .npmignore ├── README.md ├── package.json ├── src └── react-patch.js └── webpack.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/package.json -------------------------------------------------------------------------------- /src/react-patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/src/react-patch.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmamt/react-with-tap-events/HEAD/webpack.config.js --------------------------------------------------------------------------------