sonda 0.12.1 → 0.13.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 24825cd: Replace the `open` dependency with `tiny-open`, removing 11 transitive dependencies from the published package.
8
+
9
+ ### Patch Changes
10
+
11
+ - 6ddc13c: Restore npm provenance publishing in the release workflow.
12
+
3
13
  ## 0.12.1
4
14
 
5
15
  ### Patch Changes
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@ import { styleText } from "util";
2
2
  import { access, mkdir, readFile, readdir, writeFile } from "fs/promises";
3
3
  import { basename, dirname, extname, format, isAbsolute, join, parse, posix, relative, resolve, win32 } from "path";
4
4
  import { isBuiltin } from "module";
5
- import open from "open";
5
+ import open from "tiny-open";
6
6
  import { fileURLToPath } from "url";
7
7
  import { brotliCompressSync, gzipSync } from "zlib";
8
8
  import { existsSync, readFileSync, statSync } from "fs";
@@ -168,7 +168,7 @@ function hasIgnoredExtension(name) {
168
168
  }
169
169
  //#endregion
170
170
  //#region package.json
171
- var version = "0.12.1";
171
+ var version = "0.13.0";
172
172
  //#endregion
173
173
  //#region src/report/formatters/Formatter.ts
174
174
  var Formatter = class {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sonda",
3
- "version": "0.12.1",
3
+ "version": "0.13.0",
4
4
  "description": "Universal bundle analyzer and visualizer that works with most popular bundlers and frameworks.",
5
5
  "keywords": [
6
6
  "analyzer",
@@ -91,7 +91,7 @@
91
91
  },
92
92
  "dependencies": {
93
93
  "@jridgewell/remapping": "^2.3.5",
94
- "open": "^11.0.0"
94
+ "tiny-open": "^1.3.0"
95
95
  },
96
96
  "engines": {
97
97
  "node": ">=22.12"