├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .npmrc ├── .nvmrc ├── .travis.yml ├── Makefile ├── README.md ├── package.json └── src ├── __tests__ ├── createAction-test.js └── init.js ├── createAction.js └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | *.log 4 | lib 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/.npmrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/createAction-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/src/__tests__/createAction-test.js -------------------------------------------------------------------------------- /src/__tests__/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/src/__tests__/init.js -------------------------------------------------------------------------------- /src/createAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/src/createAction.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstuven/fsa-creator/HEAD/src/index.js --------------------------------------------------------------------------------