├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── source ├── ImmutableStore.js ├── ImmutableStore.test.js └── index.js └── webpack.config.dist.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/package.json -------------------------------------------------------------------------------- /source/ImmutableStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/source/ImmutableStore.js -------------------------------------------------------------------------------- /source/ImmutableStore.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/source/ImmutableStore.test.js -------------------------------------------------------------------------------- /source/index.js: -------------------------------------------------------------------------------- 1 | export default from './ImmutableStore' 2 | -------------------------------------------------------------------------------- /webpack.config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bvaughn/immutable-js-store/HEAD/webpack.config.dist.js --------------------------------------------------------------------------------