├── .editorconfig ├── .eslintrc ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .publishrc ├── LICENSE ├── bin └── redux-generators.js ├── package.json ├── readme.md ├── src ├── commands │ ├── make-action.js │ ├── make-container.js │ ├── make-reducer.js │ ├── make-selector.js │ └── make.js ├── config.js ├── index.js ├── paths.js └── utils.js └── templates ├── actions.stub ├── container.stub ├── reducer.stub └── selectors.stub /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base" 3 | } 4 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.publishrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/.publishrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/LICENSE -------------------------------------------------------------------------------- /bin/redux-generators.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../src/'); 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/readme.md -------------------------------------------------------------------------------- /src/commands/make-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/commands/make-action.js -------------------------------------------------------------------------------- /src/commands/make-container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/commands/make-container.js -------------------------------------------------------------------------------- /src/commands/make-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/commands/make-reducer.js -------------------------------------------------------------------------------- /src/commands/make-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/commands/make-selector.js -------------------------------------------------------------------------------- /src/commands/make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/commands/make.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/index.js -------------------------------------------------------------------------------- /src/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/paths.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/src/utils.js -------------------------------------------------------------------------------- /templates/actions.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/templates/actions.stub -------------------------------------------------------------------------------- /templates/container.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/templates/container.stub -------------------------------------------------------------------------------- /templates/reducer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/templates/reducer.stub -------------------------------------------------------------------------------- /templates/selectors.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gohypergiant/redux-generators/HEAD/templates/selectors.stub --------------------------------------------------------------------------------