├── .babelrc ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── modules ├── index.js └── index.tape.js ├── package.json ├── scripts ├── run-build-commonjs.sh ├── run-build-es.sh ├── run-eslint.sh └── run-tape.sh └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["latest"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["coderesque/browser"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .eslintcache 3 | *.log 4 | es/ 5 | lib/ 6 | node_modules/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/README.md -------------------------------------------------------------------------------- /modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/modules/index.js -------------------------------------------------------------------------------- /modules/index.tape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/modules/index.tape.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/package.json -------------------------------------------------------------------------------- /scripts/run-build-commonjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/scripts/run-build-commonjs.sh -------------------------------------------------------------------------------- /scripts/run-build-es.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/scripts/run-build-es.sh -------------------------------------------------------------------------------- /scripts/run-eslint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | eslint --cache --fix ./modules 4 | -------------------------------------------------------------------------------- /scripts/run-tape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/scripts/run-tape.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gravplats/redux-batch-middleware/HEAD/yarn.lock --------------------------------------------------------------------------------