├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── dist └── create-group.js ├── package.json ├── src └── create-group.js └── test └── create-group.spec.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/README.md -------------------------------------------------------------------------------- /dist/create-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/dist/create-group.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/package.json -------------------------------------------------------------------------------- /src/create-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/src/create-group.js -------------------------------------------------------------------------------- /test/create-group.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erykpiast/cyclejs-group/HEAD/test/create-group.spec.js --------------------------------------------------------------------------------