[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.

chore: rename to tools

Nate Moore (Mar 30, 2025, 9:27 PM -0500) 404bd297 772e324c

+22 -20
+11 -8
README.md
··· 1 - # `@bomb.sh/nucleus` 1 + # `@bomb.sh/tools` 2 + 3 + This package is an internal CLI intended to standardize tooling across all Bombshell projects. It helps us dogfood our own libraries, but it also makes it easier to keep our shared dependencies in sync. 2 4 3 - This package is the internal CLI for our org. It provides: 4 - - standardized `dev` command (`node --strip-types`) 5 - - standardized `build` command with `esbuild` 6 - - standardized `test` command 7 - - standardized `lint` and `format` commands 8 - - standardized `tsconfig` settings 9 - - an opportunity to dogfood our packages 5 + If you'd like to use this package for your own projects, please consider forking. We are not accepting issues on this repo. 6 + 7 + - `init` command for scaffolding new projects, which clones [our `template` repo](https://github.com/bombshell-dev/template) 8 + - `bsh dev` command, using `node --experimental-strip-types --watch-path=./src/` 9 + - `bsh build` command, using [`esbuild`](https://esbuild.github.io/) 10 + - `bsh test` command, unfinished 11 + - `bsh lint` and `bsh format` commands, using [`@biomejs/biome`](https://biomejs.dev/) 12 + - shared `tsconfig.json` file
+11 -12
package.json
··· 1 1 { 2 - "name": "@bomb.sh/nucleus", 3 - "private": true, 2 + "name": "@bomb.sh/tools", 4 3 "version": "0.0.0", 5 4 "type": "module", 6 5 "license": "MIT", 7 6 "bin": { 8 - "nucleus": "./index.ts" 7 + "bsh": "./index.ts" 9 8 }, 10 9 "description": "The internal dev, build, and lint CLI for Bombshell projects", 11 10 "keywords": [ 12 11 "cli", 13 12 "bombshell", 14 - "nucleus" 13 + "internal" 15 14 ], 16 15 "homepage": "https://bomb.sh", 17 16 "author": { ··· 21 20 }, 22 21 "repository": { 23 22 "type": "git", 24 - "url": "git+https://github.com/bombshell-dev/nucleus.git" 23 + "url": "git+https://github.com/bombshell-dev/tools.git" 25 24 }, 26 25 "exports": { 27 26 ".": { ··· 31 30 "./tsconfig.json": "./tsconfig.json" 32 31 }, 33 32 "scripts": { 34 - "nucleus": "node --experimental-strip-types --no-warnings ./src/bin.ts", 35 - "dev": "pnpm run nucleus dev", 36 - "build": "pnpm run nucleus build", 37 - "format": "pnpm run nucleus format", 38 - "init": "pnpm run nucleus init", 39 - "lint": "pnpm run nucleus lint", 40 - "test": "pnpm run nucleus test" 33 + "bsh": "node --experimental-strip-types --no-warnings ./src/bin.ts", 34 + "dev": "pnpm run bsh dev", 35 + "build": "pnpm run bsh build", 36 + "format": "pnpm run bsh format", 37 + "init": "pnpm run bsh init", 38 + "lint": "pnpm run bsh lint", 39 + "test": "pnpm run bsh test" 41 40 }, 42 41 "devDependencies": { 43 42 "@types/node": "^22.13.14"