├── .babelrc ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── index.js └── lib │ └── validate-action.js ├── test ├── index.test.js └── lib │ └── validate-action.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage 3 | dist 4 | node_modules 5 | *.log 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lib/validate-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/src/lib/validate-action.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/lib/validate-action.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/test/lib/validate-action.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghoshnirmalya/building-redux-from-scratch/HEAD/yarn.lock --------------------------------------------------------------------------------