├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .nvmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── .nvmrc ├── next-js │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── components │ │ └── nav.js │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _document.js │ │ └── index.js │ └── public │ │ └── favicon.ico └── react │ ├── .babelrc │ ├── .env.example │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── server │ └── index.js │ ├── src │ ├── components │ │ └── App.js │ ├── index.html │ ├── index.js │ └── rollbar.js │ └── webpack.config.js ├── jest.config.js ├── package.json ├── src ├── RollbarSourceMapPlugin.js ├── constants.js └── helpers.js └── test ├── RollbarSourceMapPlugin.test.js └── helpers.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /examples/.nvmrc: -------------------------------------------------------------------------------- 1 | 12.14.0 2 | -------------------------------------------------------------------------------- /examples/next-js/.env.example: -------------------------------------------------------------------------------- 1 | ROLLBAR_SERVER_TOKEN= 2 | -------------------------------------------------------------------------------- /examples/next-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/.gitignore -------------------------------------------------------------------------------- /examples/next-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/README.md -------------------------------------------------------------------------------- /examples/next-js/components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/components/nav.js -------------------------------------------------------------------------------- /examples/next-js/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/next.config.js -------------------------------------------------------------------------------- /examples/next-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/package-lock.json -------------------------------------------------------------------------------- /examples/next-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/package.json -------------------------------------------------------------------------------- /examples/next-js/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/pages/_document.js -------------------------------------------------------------------------------- /examples/next-js/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/pages/index.js -------------------------------------------------------------------------------- /examples/next-js/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/next-js/public/favicon.ico -------------------------------------------------------------------------------- /examples/react/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/.babelrc -------------------------------------------------------------------------------- /examples/react/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/.env.example -------------------------------------------------------------------------------- /examples/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/README.md -------------------------------------------------------------------------------- /examples/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/index.js -------------------------------------------------------------------------------- /examples/react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/package-lock.json -------------------------------------------------------------------------------- /examples/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/package.json -------------------------------------------------------------------------------- /examples/react/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/server/index.js -------------------------------------------------------------------------------- /examples/react/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/src/components/App.js -------------------------------------------------------------------------------- /examples/react/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/src/index.html -------------------------------------------------------------------------------- /examples/react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/src/index.js -------------------------------------------------------------------------------- /examples/react/src/rollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/src/rollbar.js -------------------------------------------------------------------------------- /examples/react/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/examples/react/webpack.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/RollbarSourceMapPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/src/RollbarSourceMapPlugin.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/src/helpers.js -------------------------------------------------------------------------------- /test/RollbarSourceMapPlugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/test/RollbarSourceMapPlugin.test.js -------------------------------------------------------------------------------- /test/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thredup/rollbar-sourcemap-webpack-plugin/HEAD/test/helpers.test.js --------------------------------------------------------------------------------