├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | 3 | .DS_Store 4 | .project 5 | .vscode 6 | node_modules 7 | npm-debug.log* 8 | yarn-error.log* 9 | /package-lock.json 10 | .nyc_output 11 | 12 | coverage 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | trace-pkg 📦 2 | ============ 3 | 4 | This project has moved to our new [tracing monorepo](https://github.com/FormidableLabs/tracing) and can be found at: https://github.com/FormidableLabs/tracing/tree/main/packages/trace-pkg 5 | --------------------------------------------------------------------------------