@sentry/craft 2.2.1 → 2.3.1

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 (3) hide show
  1. package/dist/craft +640 -513
  2. package/dist/craft.map +4 -4
  3. package/package.json +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/craft",
3
- "version": "2.2.1",
3
+ "version": "2.3.1",
4
4
  "description": "The universal sentry workflow CLI",
5
5
  "main": "dist/craft",
6
6
  "repository": "https://github.com/getsentry/craft",
@@ -38,7 +38,7 @@
38
38
  "@types/jest": "^29.5.2",
39
39
  "@types/js-yaml": "^4.0.5",
40
40
  "@types/mkdirp": "^1.0.0",
41
- "@types/node": "^12.11.1",
41
+ "@types/node": "^22.10.1",
42
42
  "@types/node-fetch": "^2.5.10",
43
43
  "@types/ora": "^1.3.4",
44
44
  "@types/prompts": "^2.0.11",
@@ -55,7 +55,7 @@
55
55
  "chalk": "4.1.1",
56
56
  "cli-table": "0.3.1",
57
57
  "consola": "2.15.3",
58
- "esbuild": "^0.11.6",
58
+ "esbuild": "^0.24.0",
59
59
  "eslint": "^7.2.0",
60
60
  "eslint-config-prettier": "^6.11.0",
61
61
  "eslint-formatter-github-annotations": "^0.1.0",
@@ -89,7 +89,7 @@
89
89
  "scripts": {
90
90
  "build:fat": "yarn run compile-config-schema && tsc -p tsconfig.build.json",
91
91
  "build:watch": "yarn run compile-config-schema && tsc -p tsconfig.build.json --watch",
92
- "build": "yarn compile-config-schema && esbuild src/index.ts --sourcemap --bundle --platform=node --target=node14.17 --outfile=dist/craft --minify",
92
+ "build": "yarn compile-config-schema && esbuild src/index.ts --sourcemap --bundle --platform=node --target=node20 --outfile=dist/craft --minify",
93
93
  "precli": "yarn build",
94
94
  "cli": "node -r source-map-support/register dist/craft",
95
95
  "clean": "rimraf dist coverage",
@@ -100,7 +100,7 @@
100
100
  "compile-config-schema": "node ./scripts/config-json-schema-to-ts.js"
101
101
  },
102
102
  "volta": {
103
- "node": "20.11.1",
103
+ "node": "22.12.0",
104
104
  "yarn": "1.22.19"
105
105
  }
106
106
  }