├── .editorconfig ├── .gitattributes ├── .gitignore ├── .yo-rc.json ├── LICENSE ├── README.md ├── app ├── index.js └── templates │ ├── _bower.json │ ├── _gulpfile.js │ ├── _package.json │ ├── _readme.md │ ├── editorconfig │ ├── eslintignore │ ├── eslintrc │ ├── example │ ├── _example.js │ ├── _index.html │ ├── example.less │ └── gitignore │ ├── gitignore │ └── src │ └── _Component.js ├── package.json ├── test └── test-app.js └── travis.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/_gulpfile.js -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/_readme.md -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/eslintignore -------------------------------------------------------------------------------- /app/templates/eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/eslintrc -------------------------------------------------------------------------------- /app/templates/example/_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/example/_example.js -------------------------------------------------------------------------------- /app/templates/example/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/example/_index.html -------------------------------------------------------------------------------- /app/templates/example/example.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/example/example.less -------------------------------------------------------------------------------- /app/templates/example/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/example/gitignore -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/src/_Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/app/templates/src/_Component.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/package.json -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/test/test-app.js -------------------------------------------------------------------------------- /travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JedWatson/generator-react-component/HEAD/travis.yml --------------------------------------------------------------------------------