@sentry/vite-plugin 4.1.1 → 4.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -396,9 +396,11 @@ Required if the `auto` option is not set to `true`.
396
396
 
397
397
  ### `release.deploy`
398
398
 
399
-
399
+ Type: `DeployOptions | false`
400
400
 
401
401
  Configuration for adding deployment information to the release in Sentry.
402
+
403
+ Set to `false` to disable automatic deployment detection and creation (e.g., when deploying on Vercel).
402
404
  ### `release.deploy.env`
403
405
 
404
406
  Type: `string`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/vite-plugin",
3
- "version": "4.1.1",
3
+ "version": "4.3.0",
4
4
  "description": "Official Sentry Vite plugin",
5
5
  "repository": "git://github.com/getsentry/sentry-javascript-bundler-plugins.git",
6
6
  "homepage": "https://github.com/getsentry/sentry-javascript-bundler-plugins/tree/main/packages/vite-plugin",
@@ -29,7 +29,7 @@
29
29
  "module": "dist/esm/index.mjs",
30
30
  "types": "dist/types/index.d.ts",
31
31
  "scripts": {
32
- "build": "rimraf ./out && run-p build:rollup build:types",
32
+ "build": "premove ./out && run-p build:rollup build:types",
33
33
  "build:watch": "run-p build:rollup:watch build:types:watch",
34
34
  "build:rollup": "rollup --config rollup.config.js",
35
35
  "build:rollup:watch": "rollup --config rollup.config.js --watch --no-watch.clearScreen",
@@ -41,14 +41,14 @@
41
41
  "check:types:test": "tsc --project ./test/tsconfig.json --noEmit",
42
42
  "clean": "run-s clean:build",
43
43
  "clean:all": "run-p clean clean:deps",
44
- "clean:build": "rimraf ./dist *.tgz",
45
- "clean:deps": "rimraf node_modules",
44
+ "clean:build": "premove ./dist *.tgz",
45
+ "clean:deps": "premove node_modules",
46
46
  "test": "jest",
47
47
  "lint": "eslint ./src ./test",
48
48
  "prepack": "ts-node ./src/prepack.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@sentry/bundler-plugin-core": "4.1.1",
51
+ "@sentry/bundler-plugin-core": "4.3.0",
52
52
  "unplugin": "1.0.1"
53
53
  },
54
54
  "devDependencies": {
@@ -57,15 +57,15 @@
57
57
  "@babel/preset-typescript": "7.17.12",
58
58
  "@rollup/plugin-babel": "5.3.1",
59
59
  "@rollup/plugin-node-resolve": "13.3.0",
60
- "@sentry-internal/eslint-config": "4.1.1",
61
- "@sentry-internal/sentry-bundler-plugin-tsconfig": "4.1.1",
60
+ "@sentry-internal/eslint-config": "4.3.0",
61
+ "@sentry-internal/sentry-bundler-plugin-tsconfig": "4.3.0",
62
62
  "@swc/core": "^1.2.205",
63
63
  "@swc/jest": "^0.2.21",
64
64
  "@types/jest": "^28.1.3",
65
65
  "@types/node": "^18.6.3",
66
66
  "eslint": "^8.18.0",
67
67
  "jest": "^28.1.1",
68
- "rimraf": "^3.0.2",
68
+ "premove": "^4.0.0",
69
69
  "rollup": "2.75.7",
70
70
  "ts-node": "^10.9.1",
71
71
  "typescript": "^4.7.4"