├── .gitignore ├── .nojekyll ├── .travis.yml ├── LICENSE ├── README.md ├── bin └── flamebearer ├── examples └── rollup.html ├── index.html ├── index.js ├── package.json ├── viz.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | samples 2 | *.log 3 | flamegraph.html 4 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/README.md -------------------------------------------------------------------------------- /bin/flamebearer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/bin/flamebearer -------------------------------------------------------------------------------- /examples/rollup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/examples/rollup.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/package.json -------------------------------------------------------------------------------- /viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/viz.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/flamebearer/HEAD/yarn.lock --------------------------------------------------------------------------------