@k-int/bruno-shared-scripts 2.0.2 → 2.0.4

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/CHANGELOG.md +14 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [2.0.4](https://gitlab.com/knowledge-integration/bruno/bruno-shared-scripts/compare/v2.0.3...v2.0.4) (2026-02-23)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Bruno shared scripts do not use type: module ([0d89320](https://gitlab.com/knowledge-integration/bruno/bruno-shared-scripts/commit/0d8932072f5b5491ce507321d4132e7aa466a644))
7
+
8
+ ## [2.0.3](https://gitlab.com/knowledge-integration/bruno/bruno-shared-scripts/compare/v2.0.2...v2.0.3) (2026-02-23)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Whoops, build is still es ([0aef436](https://gitlab.com/knowledge-integration/bruno/bruno-shared-scripts/commit/0aef436040b1e8a6d73dfef9551d2eb39c50b128))
14
+
1
15
  ## [2.0.2](https://gitlab.com/knowledge-integration/bruno/bruno-shared-scripts/compare/v2.0.1...v2.0.2) (2026-02-23)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@k-int/bruno-shared-scripts",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "exports": "./cjs/index.cjs",
5
5
  "main": "src/index.js",
6
- "type": "module",
6
+ "//": "type: module needs to be in place when we swap this back to ESM. I'm not sure why this has broken now, it was ESM and working for a while",
7
7
  "scripts": {
8
8
  "test": "echo \"Error: no test specified\" && exit 1",
9
9
  "build-es": "esbuild ./src/index.js --bundle --format=esm --outdir=es --external:axios --allow-overwrite",
10
10
  "build-cjs": "esbuild ./src/index.js --bundle --format=cjs --outdir=cjs --external:axios --out-extension:.js=.cjs --allow-overwrite",
11
11
  "__esm_build": "npm run build-es",
12
- "build": "npm run build-es",
12
+ "build": "npm run build-cjs",
13
13
  "semantic-release": "semantic-release"
14
14
  },
15
15
  "devDependencies": {