├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── after.png ├── before.png ├── index.html ├── package.json ├── src ├── createFormatters.js └── index.js ├── test.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | 4 | .DS_Store 5 | 6 | *.swp 7 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | src/ 3 | 4 | .DS_Store 5 | 6 | *.swp 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/README.md -------------------------------------------------------------------------------- /after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/after.png -------------------------------------------------------------------------------- /before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/before.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/package.json -------------------------------------------------------------------------------- /src/createFormatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/src/createFormatters.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewdavey/immutable-devtools/HEAD/webpack.config.js --------------------------------------------------------------------------------