@sentry/craft 2.25.1 → 2.25.2

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/dist/craft +13 -5
  2. package/package.json +1 -1
package/dist/craft CHANGED
@@ -28167,7 +28167,7 @@ var init_esm6 = __esm({
28167
28167
  }
28168
28168
  });
28169
28169
 
28170
- // node_modules/.pnpm/brace-expansion@5.0.4/node_modules/brace-expansion/dist/esm/index.js
28170
+ // node_modules/.pnpm/brace-expansion@5.0.5/node_modules/brace-expansion/dist/esm/index.js
28171
28171
  function numeric(str2) {
28172
28172
  return !isNaN(str2) ? parseInt(str2, 10) : str2.charCodeAt(0);
28173
28173
  }
@@ -28261,7 +28261,7 @@ function expand_(str2, max, isTop) {
28261
28261
  const x5 = numeric(n4[0]);
28262
28262
  const y4 = numeric(n4[1]);
28263
28263
  const width = Math.max(n4[0].length, n4[1].length);
28264
- let incr = n4.length === 3 && n4[2] !== void 0 ? Math.abs(numeric(n4[2])) : 1;
28264
+ let incr = n4.length === 3 && n4[2] !== void 0 ? Math.max(Math.abs(numeric(n4[2])), 1) : 1;
28265
28265
  let test = lte;
28266
28266
  const reverse = y4 < x5;
28267
28267
  if (reverse) {
@@ -28312,7 +28312,7 @@ function expand_(str2, max, isTop) {
28312
28312
  }
28313
28313
  var escSlash, escOpen, escClose, escComma, escPeriod, escSlashPattern, escOpenPattern, escClosePattern, escCommaPattern, escPeriodPattern, slashPattern, openPattern, closePattern, commaPattern, periodPattern, EXPANSION_MAX;
28314
28314
  var init_esm7 = __esm({
28315
- "node_modules/.pnpm/brace-expansion@5.0.4/node_modules/brace-expansion/dist/esm/index.js"() {
28315
+ "node_modules/.pnpm/brace-expansion@5.0.5/node_modules/brace-expansion/dist/esm/index.js"() {
28316
28316
  init_import_meta_url();
28317
28317
  init_esm6();
28318
28318
  escSlash = "\0SLASH" + Math.random() + "\0";
@@ -116574,6 +116574,14 @@ function parseTokensToEntries(tokens) {
116574
116574
  prev.nestedContent = prev.nestedContent ? `${prev.nestedContent}
116575
116575
  ${codeBlock}` : codeBlock;
116576
116576
  }
116577
+ } else if (token.type === "html") {
116578
+ const htmlContent = token.raw.trim();
116579
+ if (htmlContent && entries.length > 0) {
116580
+ const indented = htmlContent.split("\n").map((line) => ` ${line}`).join("\n");
116581
+ const prev = entries[entries.length - 1];
116582
+ prev.nestedContent = prev.nestedContent ? `${prev.nestedContent}
116583
+ ${indented}` : indented;
116584
+ }
116577
116585
  }
116578
116586
  }
116579
116587
  return entries.length > 0 ? entries : null;
@@ -159069,7 +159077,7 @@ var require_package6 = __commonJS({
159069
159077
  "package.json"(exports2, module2) {
159070
159078
  module2.exports = {
159071
159079
  name: "@sentry/craft",
159072
- version: "2.25.1",
159080
+ version: "2.25.2",
159073
159081
  description: "The universal sentry workflow CLI",
159074
159082
  main: "dist/craft",
159075
159083
  repository: "https://github.com/getsentry/craft",
@@ -159240,7 +159248,7 @@ function getPackage() {
159240
159248
  }
159241
159249
  function getPackageVersion() {
159242
159250
  const { version: version2 } = getPackage();
159243
- const buildInfo = "14aca37e23aa6d8239a4013cae86d3bae4b4e0cd";
159251
+ const buildInfo = "ba01e596c4a4c07692f0de10b0d4fe05f3dd0292";
159244
159252
  return buildInfo ? `${version2} (${buildInfo})` : version2;
159245
159253
  }
159246
159254
  function semVerToString(s6) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/craft",
3
- "version": "2.25.1",
3
+ "version": "2.25.2",
4
4
  "description": "The universal sentry workflow CLI",
5
5
  "main": "dist/craft",
6
6
  "repository": "https://github.com/getsentry/craft",