@trebired/bundler 3.6.0 → 3.6.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to `@trebired/bundler` will be documented here.
4
4
 
5
5
  This project follows semantic versioning once published.
6
6
 
7
+ ## 3.6.1
8
+
9
+ - Added pack verification for published entrypoints and executable CLI output.
10
+ - Ensured the built `trebired-bundler` CLI file is executable after dist preparation.
11
+
7
12
  ## 3.6.0
8
13
 
9
14
  - Added opt-in generic support for `@trebired/i18n` colocated local translators.
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trebired/bundler",
3
- "version": "3.6.0",
3
+ "version": "3.6.1",
4
4
  "description": "Discover-only esbuild bundler wrapper with SCSS support, watch mode, and runtime asset manifests.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -35,9 +35,10 @@
35
35
  "scripts": {
36
36
  "build": "rm -rf dist && tsc -p tsconfig.build.json && node ./scripts/prepare-dist.mjs",
37
37
  "demo": "bun run examples/dummy.ts",
38
- "prepublishOnly": "bun run typecheck && bun run build && bun run verify:i18n",
38
+ "prepublishOnly": "bun run typecheck && bun run build && bun run verify:pack && bun run verify:i18n",
39
39
  "typecheck": "tsc --noEmit",
40
- "verify:i18n": "node ./scripts/verify/i18n.mjs"
40
+ "verify:i18n": "node ./scripts/verify/i18n.mjs",
41
+ "verify:pack": "node ./scripts/verify/pack.mjs"
41
42
  },
42
43
  "dependencies": {
43
44
  "@package/logger-adapter": "npm:@trebired/logger-adapter@^0.2.5",