├── .babelrc ├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .releaserc.json ├── README.md ├── _pocs ├── formatters.js ├── index.js ├── newFormatters.js └── test │ └── js_of_ocaml │ ├── .cache │ ├── 24 │ │ └── fc60afd07ee2706d6f92d7bf16ba6d.json │ ├── 71 │ │ └── 0d9ebd3d7b62e3db11763e0b3ec290.json │ ├── 72 │ │ └── 12ba1369eef64dc508f442711117af.json │ ├── 74 │ │ └── 1483449df5cc0739fbc55aff9cc0ab.json │ ├── 0f │ │ └── 5084c4a7a04546491c3631bd9808c2.json │ ├── 1a │ │ └── 8e79f6bf2eafc1fe960949655c6b43.json │ ├── 2e │ │ └── 51051e67e90ee0e4716d17f8a3fce2.json │ ├── 3a │ │ └── 9c306f3e890b40f07f3b2d66c988b6.json │ ├── 3c │ │ └── 21fb29743d73b0c1236ffc274d97aa.json │ ├── 5e │ │ └── 8e8a9c7faeac5ae13ef6b953059509.json │ ├── 5f │ │ └── a26fa2e86eeffa65e69810d4e298d6.json │ ├── b9 │ │ └── e25079c2f305d0b547acc1f108348d.json │ ├── d8 │ │ └── 455b5990865c48db78eb4359fee88a.json │ ├── df │ │ └── 707f30434a6ce525ecc32b8e782ce8.json │ ├── f2 │ │ └── 18387defcb474b712884994c7e8f4c.json │ └── f6 │ │ └── 4c43ffd130056682bba0399fc7e347.json │ ├── .gitignore │ ├── dune │ ├── dune-project │ ├── index.html │ ├── index.ml │ ├── package.json │ └── yarn.lock ├── docs ├── chrome-enable-custom-formatters.png ├── chrome-settings.png ├── demo.png └── future-demo.png ├── e2e ├── index.spec.js └── jest.config.js ├── extension ├── icon-128.png └── manifest.json ├── package.json ├── publish ├── demo-640x400.png └── icon-128.png ├── scripts ├── content-script-template.js └── post-build.js ├── src ├── flat.js ├── flat.spec.js ├── formatter.js ├── formatter.spec.js ├── icon-128.png ├── index.js ├── index.spec.js ├── load.js └── manifest.json ├── test └── BuckleScript │ ├── .gitignore │ ├── README.md │ ├── bsconfig.json │ ├── index.html │ ├── package.json │ ├── src │ ├── Demo.bs.js │ └── Demo.re │ └── yarn.lock ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/.releaserc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/README.md -------------------------------------------------------------------------------- /_pocs/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/formatters.js -------------------------------------------------------------------------------- /_pocs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/index.js -------------------------------------------------------------------------------- /_pocs/newFormatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/newFormatters.js -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/0f/5084c4a7a04546491c3631bd9808c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/0f/5084c4a7a04546491c3631bd9808c2.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/1a/8e79f6bf2eafc1fe960949655c6b43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/1a/8e79f6bf2eafc1fe960949655c6b43.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/24/fc60afd07ee2706d6f92d7bf16ba6d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/24/fc60afd07ee2706d6f92d7bf16ba6d.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/2e/51051e67e90ee0e4716d17f8a3fce2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/2e/51051e67e90ee0e4716d17f8a3fce2.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/3a/9c306f3e890b40f07f3b2d66c988b6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/3a/9c306f3e890b40f07f3b2d66c988b6.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/3c/21fb29743d73b0c1236ffc274d97aa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/3c/21fb29743d73b0c1236ffc274d97aa.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/5e/8e8a9c7faeac5ae13ef6b953059509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/5e/8e8a9c7faeac5ae13ef6b953059509.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/5f/a26fa2e86eeffa65e69810d4e298d6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/5f/a26fa2e86eeffa65e69810d4e298d6.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/71/0d9ebd3d7b62e3db11763e0b3ec290.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/71/0d9ebd3d7b62e3db11763e0b3ec290.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/72/12ba1369eef64dc508f442711117af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/72/12ba1369eef64dc508f442711117af.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/74/1483449df5cc0739fbc55aff9cc0ab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/74/1483449df5cc0739fbc55aff9cc0ab.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/b9/e25079c2f305d0b547acc1f108348d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/b9/e25079c2f305d0b547acc1f108348d.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/d8/455b5990865c48db78eb4359fee88a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/d8/455b5990865c48db78eb4359fee88a.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/df/707f30434a6ce525ecc32b8e782ce8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/df/707f30434a6ce525ecc32b8e782ce8.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/f2/18387defcb474b712884994c7e8f4c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/f2/18387defcb474b712884994c7e8f4c.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.cache/f6/4c43ffd130056682bba0399fc7e347.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.cache/f6/4c43ffd130056682bba0399fc7e347.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/.gitignore -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/dune -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/index.html -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/index.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/index.ml -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/package.json -------------------------------------------------------------------------------- /_pocs/test/js_of_ocaml/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/_pocs/test/js_of_ocaml/yarn.lock -------------------------------------------------------------------------------- /docs/chrome-enable-custom-formatters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/docs/chrome-enable-custom-formatters.png -------------------------------------------------------------------------------- /docs/chrome-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/docs/chrome-settings.png -------------------------------------------------------------------------------- /docs/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/docs/demo.png -------------------------------------------------------------------------------- /docs/future-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/docs/future-demo.png -------------------------------------------------------------------------------- /e2e/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/e2e/index.spec.js -------------------------------------------------------------------------------- /e2e/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | verbose: true, 3 | preset: 'jest-puppeteer' 4 | } 5 | -------------------------------------------------------------------------------- /extension/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/extension/icon-128.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/package.json -------------------------------------------------------------------------------- /publish/demo-640x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/publish/demo-640x400.png -------------------------------------------------------------------------------- /publish/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/publish/icon-128.png -------------------------------------------------------------------------------- /scripts/content-script-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/scripts/content-script-template.js -------------------------------------------------------------------------------- /scripts/post-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/scripts/post-build.js -------------------------------------------------------------------------------- /src/flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/flat.js -------------------------------------------------------------------------------- /src/flat.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/flat.spec.js -------------------------------------------------------------------------------- /src/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/formatter.js -------------------------------------------------------------------------------- /src/formatter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/formatter.spec.js -------------------------------------------------------------------------------- /src/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/icon-128.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/index.spec.js -------------------------------------------------------------------------------- /src/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/load.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/src/manifest.json -------------------------------------------------------------------------------- /test/BuckleScript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/.gitignore -------------------------------------------------------------------------------- /test/BuckleScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/README.md -------------------------------------------------------------------------------- /test/BuckleScript/bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/bsconfig.json -------------------------------------------------------------------------------- /test/BuckleScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/index.html -------------------------------------------------------------------------------- /test/BuckleScript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/package.json -------------------------------------------------------------------------------- /test/BuckleScript/src/Demo.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/src/Demo.bs.js -------------------------------------------------------------------------------- /test/BuckleScript/src/Demo.re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/src/Demo.re -------------------------------------------------------------------------------- /test/BuckleScript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/test/BuckleScript/yarn.lock -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesnx/reason-console-formatter/HEAD/yarn.lock --------------------------------------------------------------------------------