├── .gitignore ├── LICENSE ├── README.md ├── dist └── index.js ├── package.json ├── scripts └── production ├── src └── index.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/package.json -------------------------------------------------------------------------------- /scripts/production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/scripts/production -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgarvis/react-vendor-prefix/HEAD/webpack.config.js --------------------------------------------------------------------------------