[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: avoid bundling internals

Nate Moore (Mar 31, 2025, 6:39 PM -0500) 20ea4854 9b968f16

+8 -2
+6
CHANGELOG.md
··· 1 1 # @bomb.sh/tools 2 2 3 + ## 0.0.3 4 + 5 + ### Patch Changes 6 + 7 + - Updates bundling approach to avoid code duplication 8 + 3 9 ## 0.0.2 4 10 5 11 ### Patch Changes
+1 -1
package.json
··· 1 1 { 2 2 "name": "@bomb.sh/tools", 3 - "version": "0.0.2", 3 + "version": "0.0.3", 4 4 "type": "module", 5 5 "license": "MIT", 6 6 "bin": {
+1 -1
src/commands/build.ts
··· 16 16 target: "node20", 17 17 minify: true, 18 18 bundle: true, 19 - external: ["node:*", ...Object.keys(dependencies)], 19 + external: ["node:*", "../*", "./*", ...Object.keys(dependencies)], 20 20 }).catch(() => { 21 21 process.exit(1); 22 22 });