├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .idea ├── firebase-saga.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .jshintrc ├── .npmignore ├── CHANGELOG.md ├── README.md ├── dist └── ReactProxy.js ├── docs ├── ast │ └── source │ │ └── index.js.json ├── badge.svg ├── coverage.json ├── css │ ├── prettify-tomorrow.css │ └── style.css ├── dump.json ├── file │ └── src │ │ └── index.js.html ├── function │ └── index.html ├── identifiers.html ├── image │ ├── badge.svg │ ├── github.png │ └── search.png ├── index.html ├── manual │ ├── changelog.html │ ├── configuration.html │ ├── example.html │ ├── faq.html │ ├── index.html │ ├── installation.html │ ├── overview.html │ ├── tutorial.html │ └── usage.html ├── package.json ├── script │ ├── inherited-summary.js │ ├── inner-link.js │ ├── manual.js │ ├── patch-for-local.js │ ├── prettify │ │ ├── Apache-License-2.0.txt │ │ └── prettify.js │ ├── pretty-print.js │ ├── search.js │ ├── search_index.js │ └── test-summary.js └── source.html ├── esdoc.json ├── examples └── blog │ ├── .babelrc │ ├── .editorconfig │ ├── .gitignore │ ├── .idea │ ├── blog.iml │ ├── jsLibraryMappings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml │ ├── README.md │ ├── package.json │ └── src │ ├── actions │ └── index.js │ ├── components │ ├── Edit.js │ └── Post.js │ ├── containers │ ├── App.js │ ├── Blog.js │ └── New.js │ ├── index.html │ ├── main.js │ ├── reducers │ └── index.js │ └── sagas │ └── index.js ├── manual ├── configuration.md ├── example.md ├── faq.md ├── installation.md ├── overview.md ├── tutorial.md └── usage.md ├── modules └── index.js ├── package.json ├── src └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/firebase-saga.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.idea/firebase-saga.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # dev-only folders 2 | .babelrc 3 | .eslintrc 4 | test 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/README.md -------------------------------------------------------------------------------- /dist/ReactProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/dist/ReactProxy.js -------------------------------------------------------------------------------- /docs/ast/source/index.js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/ast/source/index.js.json -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/coverage.json -------------------------------------------------------------------------------- /docs/css/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/css/prettify-tomorrow.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/dump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/dump.json -------------------------------------------------------------------------------- /docs/file/src/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/file/src/index.js.html -------------------------------------------------------------------------------- /docs/function/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/function/index.html -------------------------------------------------------------------------------- /docs/identifiers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/identifiers.html -------------------------------------------------------------------------------- /docs/image/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/image/badge.svg -------------------------------------------------------------------------------- /docs/image/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/image/github.png -------------------------------------------------------------------------------- /docs/image/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/image/search.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manual/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/changelog.html -------------------------------------------------------------------------------- /docs/manual/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/configuration.html -------------------------------------------------------------------------------- /docs/manual/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/example.html -------------------------------------------------------------------------------- /docs/manual/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/faq.html -------------------------------------------------------------------------------- /docs/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/index.html -------------------------------------------------------------------------------- /docs/manual/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/installation.html -------------------------------------------------------------------------------- /docs/manual/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/overview.html -------------------------------------------------------------------------------- /docs/manual/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/tutorial.html -------------------------------------------------------------------------------- /docs/manual/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/manual/usage.html -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/script/inherited-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/inherited-summary.js -------------------------------------------------------------------------------- /docs/script/inner-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/inner-link.js -------------------------------------------------------------------------------- /docs/script/manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/manual.js -------------------------------------------------------------------------------- /docs/script/patch-for-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/patch-for-local.js -------------------------------------------------------------------------------- /docs/script/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /docs/script/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/prettify/prettify.js -------------------------------------------------------------------------------- /docs/script/pretty-print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/pretty-print.js -------------------------------------------------------------------------------- /docs/script/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/search.js -------------------------------------------------------------------------------- /docs/script/search_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/search_index.js -------------------------------------------------------------------------------- /docs/script/test-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/script/test-summary.js -------------------------------------------------------------------------------- /docs/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/docs/source.html -------------------------------------------------------------------------------- /esdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/esdoc.json -------------------------------------------------------------------------------- /examples/blog/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.babelrc -------------------------------------------------------------------------------- /examples/blog/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.editorconfig -------------------------------------------------------------------------------- /examples/blog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.gitignore -------------------------------------------------------------------------------- /examples/blog/.idea/blog.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.idea/blog.iml -------------------------------------------------------------------------------- /examples/blog/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /examples/blog/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.idea/misc.xml -------------------------------------------------------------------------------- /examples/blog/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.idea/modules.xml -------------------------------------------------------------------------------- /examples/blog/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/.idea/workspace.xml -------------------------------------------------------------------------------- /examples/blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/README.md -------------------------------------------------------------------------------- /examples/blog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/package.json -------------------------------------------------------------------------------- /examples/blog/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/actions/index.js -------------------------------------------------------------------------------- /examples/blog/src/components/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/components/Edit.js -------------------------------------------------------------------------------- /examples/blog/src/components/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/components/Post.js -------------------------------------------------------------------------------- /examples/blog/src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/containers/App.js -------------------------------------------------------------------------------- /examples/blog/src/containers/Blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/containers/Blog.js -------------------------------------------------------------------------------- /examples/blog/src/containers/New.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/containers/New.js -------------------------------------------------------------------------------- /examples/blog/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/index.html -------------------------------------------------------------------------------- /examples/blog/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/main.js -------------------------------------------------------------------------------- /examples/blog/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/reducers/index.js -------------------------------------------------------------------------------- /examples/blog/src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/examples/blog/src/sagas/index.js -------------------------------------------------------------------------------- /manual/configuration.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/example.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/faq.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/installation.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/overview.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/tutorial.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manual/usage.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/modules/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/szaranger/firebase-saga/HEAD/webpack.config.js --------------------------------------------------------------------------------