{"id":19604608,"url":"https://github.com/long-woo/sentry-sourcemap-plugin","last_synced_at":"2026-03-09T05:31:26.168Z","repository":{"id":56747005,"uuid":"381399329","full_name":"long-woo/sentry-sourcemap-plugin","owner":"long-woo","description":"🐻 Sentry automatically deletes the SourceMap file after uploading it Map file.(Sentry 上传 SourceMap 文件后，自动删除 .map 文件。)","archived":false,"fork":false,"pushed_at":"2026-03-05T20:43:15.000Z","size":218,"stargazers_count":2,"open_issues_count":12,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-05T23:38:31.887Z","etag":null,"topics":["plugin","sentry","webpack","webpack-plugin"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/long-woo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-06-29T14:45:09.000Z","updated_at":"2023-06-29T03:37:17.000Z","dependencies_parsed_at":"2026-02-12T17:07:11.836Z","dependency_job_id":null,"html_url":"https://github.com/long-woo/sentry-sourcemap-plugin","commit_stats":{"total_commits":33,"total_committers":3,"mean_commits":11.0,"dds":0.303030303030303,"last_synced_commit":"8971c23f89851b3a1ae9eeacc7a45a05c85a68be"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/long-woo/sentry-sourcemap-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/long-woo%2Fsentry-sourcemap-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/long-woo%2Fsentry-sourcemap-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/long-woo%2Fsentry-sourcemap-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/long-woo%2Fsentry-sourcemap-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/long-woo","download_url":"https://codeload.github.com/long-woo/sentry-sourcemap-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/long-woo%2Fsentry-sourcemap-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30283892,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["plugin","sentry","webpack","webpack-plugin"],"created_at":"2024-11-11T09:37:29.544Z","updated_at":"2026-03-09T05:31:26.148Z","avatar_url":"https://github.com/long-woo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sentry-sourcemap-plugin\n\n\u003e `@sentry/webpack-plugin` extended webpack plugin.\n\n![npm (scoped)](https://img.shields.io/npm/v/@longwoo/sentry-sourcemap-plugin?color=%23be3031\u0026style=flat-square)\n![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/long-woo/sentry-sourcemap-plugin?include_prereleases\u0026style=flat-square)\n![npm download](https://img.shields.io/npm/dm/@longwoo/sentry-sourcemap-plugin?style=flat-square)\n![GitHub license](https://img.shields.io/github/license/long-woo/sentry-sourcemap-plugin?style=flat-square)\n\n[中文](https://github.com/long-woo/sentry-sourcemap-plugin/blob/master/README_ZH.md)\n\nSentry automatically deletes the SourceMap file after uploading it Map file.\n\n⚠️ This plugin is configured with some initial values by default:：\n\n- release: '1.0.0', automatically read the `version` in the current project `package.json`。\n- include: './dist'。\n- configFile: '.sentryclirc'。\n\n## Use\n\n### Install\n\n\u003e 💡 `@longwoo/sentry-sourcemap-plugin` already contains `@sentry/webpack-plugin` plugin, no need to install it.\nThe configuration is consistent with [`@sentry/webpack-plugin`](https://www.npmjs.com/package/@sentry/webpack-plugin).\n\n```sh\nnpm install @longwoo/sentry-sourcemap-plugin --save-dev\n# or\nyarn add @longwoo/sentry-sourcemap-plugin -D\n```\n\n### Vue project\n\nAdd the following configuration in the `vue.config.js` file:\n\n```js\nconst { SentrySourcemapPlugin } = require('@longwoo/sentry-sourcemap-plugin')\n\nmodule.exports = {\n  configureWebpack: config =\u003e {\n    config.plugins.push(new SentrySourcemapPlugin())\n  }\n}\n```\n\n### Webpack\n\nAdded in the `plugins` option of the `webpack.config.js` file:\n\n```js\nconst { SentrySourcemapPlugin } = require('@longwoo/sentry-sourcemap-plugin')\n\nmodule.exports = {\n  plugins: [\n    new SentrySourcemapPlugin()\n  ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flong-woo%2Fsentry-sourcemap-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flong-woo%2Fsentry-sourcemap-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flong-woo%2Fsentry-sourcemap-plugin/lists"}