A CLI tool to generate hashes for the workspaces of your monorepo
π Fast : Runs in huge monorepos in no time, processes workspaces in parallel, powered by Go/Rust
π― Accurate : Generates hashes based on every tracked file
π No config : Drop-in and instantly usable
π€ΉββοΈ Versatile : Works with PNPM, Bun, Yarn, NPM and Deno
π» Cross-platform : Works on Windows, Linux and macOS
#οΈβ£ Deterministic : Same input, same output
π¦ Lightweight : No bloat, just the essentials
When you're working with monorepos, there's often a lot of workspaces (packages) that end up being created.
And as your project grows, so does the number of workspaces (and so does your build times...).
If you ever worked with stuff like Next.js, you know what I'm talking about. And since every workspace requires another, you need everything to be built to test your changes.
Although there are tools that allow your scripts to run only when files have changed (ex turbo), the complete CI step cannot benefit from this. For example with turbo again, they allow you to prune just the right workspaces and dependencies when building in a Docker, but this requires copying the entire monorepo into the container so we can't benefit from Docker's layers caching.
If only there could be a way to determine if a workspace hasn't changed to not rebuild it for nothing...
Well lucky you, monorepo-hash is here to help with that !
Note
monorepo-hash was created when I was doing my internship at Nexelec.
I really put a lot of energy in this script so I decided to release monorepo-hash as a standalone CLI tool to help anyone struggling with this problem !
You can install monorepo-hash globally, but it's best to add it as a dev dependency at the root of your monorepo :
pnpm add -D monorepo-hash --allow-build=monorepo-hash
# or bun, yarn, npm, deno
# monorepo-hash was originally made with only PNPM in mind, open an issue if you encounter any problem
bun add -D monorepo-hash --trust
yarn add -D monorepo-hash
npm install -D monorepo-hash
# add "nodeModulesDir": "auto" to your deno.json(c) config file first
deno install -D npm:monorepo-hash --allow-scripts=npm:monorepo-hashTo install it globally, use your package manager's global installation command, for example with PNPM : pnpm add -g monorepo-hash --allow-build=monorepo-hash.
On Windows only, you can also install it globally using WinGet :
winget install EDM115.monorepo-hashImportant
Since v2.0.0, the monorepo-hash cli command is a direct binary that cut the Node overhead and allows for faster I/O. To enable this, the postinstall script needs to be run, which is disabled by default in PNPM/Bun/Deno for security reasons.
You can totally refuse to use it (whether it is for security reasons or size constraints). In such case, either run the older Node + plain JS version (monorepo-hash-js) or use the programmatic API.
If you added monorepo-hash without allowing the postinstall script to run, you can do it later at anytime with pnpm approve-scripts, bun pm trust monorepo-hash or deno approve-scripts.
From v1.8.0 up to v2.2.0 the binary have been made with Bun. Starting with v2.3.0 onwards, it is made with ^(?:Go|Rust) \?$
Version 2.2.0 exposes the monorepo-hash-go & monorepo-hash-rust binaries to gather feedback on speed execution and consistency across environments before taking a decision on the default binary for v2.3.0.
Tip
Make sure that your workspace configuration is set up correctly (pnpm-workspace.yaml, package.json workspaces or deno.json(c) workspace) as monorepo-hash will use it to find your workspaces. Globs are supported.
Make sure that your lockfiles are present as well since they are used to detect the used package manager. To skip this resolution step, use the --packagemanager argument to force one.
To detect internal transitive dependencies, monorepo-hash will check the deps of each of the packages included in the workspaces configs. This allows it to work regardless of the package manager's standard (simple version, workspace: protocol or direct file: links).
Finally, it will generate a single root .hash file that you would need to keep in your VCS in order for it to be efficient (ex : to be reused in your CI). This is made to not clutter your filesystem and VCS, especially if you have a lot of packages, however if you prefer to have per-workspace .hash files, use the --workspaces mode.
pnpm monorepo-hash --help
# or bun, yarn, npm, deno
bunx monorepo-hash --help
yarn run monorepo-hash --help
npx monorepo-hash --help
dx monorepo-hash --helpTip
Short versions of all arguments are also available.
pnpm monorepo-hash --generateSpecify them in quotes, separated by commas, no spaces, and with no leading or trailing slashes.
The target name is the path to the workspace relative to the root of your monorepo, and uses forward slashes no matter your platform.
We use the paths here to not have to compute the entire dependency graph only for few of them to be processed.
pnpm monorepo-hash --generate --target="packages/example,services/ui"pnpm monorepo-hash --compareSame rules apply.
pnpm monorepo-hash --compare --target="packages/example"This will suppress all output. This can be useful for example in CI where only the exit code matters.
pnpm monorepo-hash --compare --silentYou can also use monorepo-hash programmatically in your own scripts.
Whether it's because there's some utilities that are interesting or because you prefer to integrate it in your scripts, you can just import about any function or type from monorepo-hash.
The main functionality stems from runCli(), check the autocomplete of your IDE to see the available functions/types, all with some documentation associated with them.
import monorepoHash, { exists } from "monorepo-hash"
// runCli is a default export as well
import { download, detectLibcFamily } from "monorepo-hash/install-binary"
// additional functions live here
// tip : if you only need the `exists` function, import it from here instead to reduce bundle size
// ...
async function checkFiles() {
// logic...
for (file in files) {
const existsResult = await exists(file)
if (existsResult) {
// do something...
}
}
}
// ...
async function dlThings() {
const url = "https://example.com/somefile"
const dest = "./somefile"
await download(url, dest)
const libc = await detectLibcFamily()
// do something with it...
}
// ...
async function checkHashes() {
const compareResult = await monorepoHash(["--compare", "--target=packages/example"])
// do something with it...
}The debug mode will :
- in generate mode, output a root
.debug-hashfile which will contain the hashes of each individual file in the workspace as a JSON object (or per-workspace files when using--workspaces) - in compare mode, read those
.debug-hashfile(s) and tell you exactly which files have changed in each workspace, and what their hashes are
This can be useful to check why the hashes appear to be different, or to debug issues with the hashes generation.
pnpm monorepo-hash --generate --debug
# later on...
pnpm monorepo-hash --compare --debugDon't forget to delete these files afterwards !
0: No changes detected (or you wanted to get the help/version)1: Changes detected in the hashes2: Error with the arguments (both--generateand--comparewere provided or an unsupported--packagemanagerwas forced)3: Unknown arguments provided4: No workspaces found or unsupported package manager5: Package manager forced with--packagemanagernot present in the repo6: Circular dependency detected in the workspace packages99: An unexpected error occurred, please open an issue with the logs
Tested in the small monorepo, with the following directory structure :
.
βββ database
βββ packages
β βββ cli-tools
β βββ linter
βββ services
β βββ backend
β βββ frontend
βββ pnpm-workspace.yaml
$ pnpm monorepo-hash --generate
βΉοΈ Generating hashes for all workspaces...
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (5)
β
database (34e5c3bb9a1545fcc7eab03d439bfe79abe1b12ebb0d2c7cdacb1744e58ab22a written to .hash)
β
packages/cli-tools (b0b7271f403749b906dec2405e6127c58c2d267695a6d84bc96f1a2918fb0d07 written to .hash)
β
packages/linter (aa37077b2c0034ce44a074d8a46778153cf51b1125e2623364de272d1b640bd6 written to .hash)
β
services/backend (1aa3f39996e526e3f530943f2d0081cde30efabc643af64ba95d157b0072c463 written to .hash)
β
services/frontend (7251bacb2abaec585b7faa4ea56c9c74a8b7ed20422255a72442bfa7ce7dbb71 written to .hash)$ pnpm monorepo-hash --compare
βΉοΈ Comparing hashes for all workspaces...
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (5)
β
Unchanged (5) :
β’ database
β’ packages/cli-tools
β’ packages/linter
β’ services/backend
β’ services/frontend$ pnpm monorepo-hash --compare
βΉοΈ Comparing hashes for all workspaces...
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (5)
β οΈ Changed (5) :
β’ database
old : 34e5c3bb9a1545fcc7eab03d439bfe79abe1b12ebb0d2c7cdacb1744e58ab22a
new : b10e0b4af3f4d25033e3116ffed89a6d73873b4238d27bcf48cf87318b701cf6
π§ changed dependency(s) :
β’ packages/linter
β’ packages/cli-tools
old : b0b7271f403749b906dec2405e6127c58c2d267695a6d84bc96f1a2918fb0d07
new : 0b42cd27826f37213e54535ff9f32808fc673b256a4bec1ce0288d8c02886f73
π§ changed dependency(s) :
β’ packages/linter
β’ packages/linter
old : aa37077b2c0034ce44a074d8a46778153cf51b1125e2623364de272d1b640bd6
new : 9ad670319943d97c8ffa11e2428f4fa9d91c63e826e2f5f8509ffa9d460c45f8
β’ services/backend
old : 1aa3f39996e526e3f530943f2d0081cde30efabc643af64ba95d157b0072c463
new : 3fcf8f991bfe7d69db962a29d56010877072ba42dfd6fb0b3b64f3e1fc30bed3
π§ changed dependency(s) :
β’ database
β’ packages/cli-tools
β’ packages/linter
β’ services/frontend
old : 7251bacb2abaec585b7faa4ea56c9c74a8b7ed20422255a72442bfa7ce7dbb71
new : 5c2b81df00712306f0eaff7021808dd5efdbbcfb93e77d730d9812f4fd6194c8
π§ changed dependency(s) :
β’ packages/linter$ pnpm monorepo-hash --compare
βΉοΈ Comparing hashes for all workspaces...
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (5)
β
Unchanged (4) :
β’ packages/cli-tools
β’ packages/linter
β’ services/backend
β’ services/frontend
β Missing .hash files (1) :
β’ database (would be 34e5c3bb9a1545fcc7eab03d439bfe79abe1b12ebb0d2c7cdacb1744e58ab22a)$ pnpm monorepo-hash --generate --target="packages/cli-tools,services/frontend"
βΉοΈ Generating hashes for specified targets... (packages/cli-tools, services/frontend)
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (3)
β
packages/cli-tools (b0b7271f403749b906dec2405e6127c58c2d267695a6d84bc96f1a2918fb0d07 written to .hash)
β
services/frontend (7251bacb2abaec585b7faa4ea56c9c74a8b7ed20422255a72442bfa7ce7dbb71 written to .hash)$ pnpm monorepo-hash --compare --target="packages/cli-tools,services/frontend"
βΉοΈ Comparing hashes for specified targets... (packages/cli-tools, services/frontend)
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (3)
β
Unchanged (2) :
β’ packages/cli-tools
β’ services/frontend$ pnpm monorepo-hash --compare --target="services/backend"
βΉοΈ Comparing hashes for specified targets... (services/backend)
βΉοΈ Using pnpm workspaces from C:\Users\EDM115\Desktop\test\small-monorepo
β
Computed all hashes (4)
β οΈ Changed (1) :
β’ services/backend
old : 36be1199988004d364bbe3ec945eb653beef7457d336cc4e3a12a0ce6ad845c1
new : 1aa3f39996e526e3f530943f2d0081cde30efabc643af64ba95d157b0072c463
π§ changed dependency(s) :
β’ packages/cli-toolsThis is a recommended way to use monorepo-hash, as with this you won't need to generate and add the files manually everytime you make a change.
This works with any git hooks manager since we have guards in place to not overwrite output in non-TTY environments (ex VS Code's Source Control tab). You can use simple-git-hooks, prek, husky, lefthook or even the native githooks. Here's an example with simple-git-hooks :
pnpm add -D simple-git-hooks --allow-build=simple-git-hooks- Add this in your root
package.json:"simple-git-hooks": { "pre-commit": "pnpm monorepo-hash --generate && git add **/*.hash" }
- Run once
pnpm simple-git-hooksto install the hooks
This was the main reason I created this tool, and whether it's in GitHub Actions or locally through act, it can help you to reduce drastically CI times.
name: Build and test
jobs:
build-and-test:
runs-on: ubuntu-24.04
defaults:
run:
shell: bash
env:
IMAGE_TAG: "demo-${{ github.sha }}"
strategy:
fail-fast: false
matrix:
node-version: [25]
steps:
- name: "Checkout code"
uses: actions/checkout@v6
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v4
- name: "Setup PNPM"
uses: pnpm/action-setup@v5
- name: "Use Node ${{ matrix.node-version }}"
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: "Install dependencies"
run: pnpm i --frozen-lockfile
- name: "Restore .hash cache"
id: restore-hash-cache
uses: actions/cache/restore@v5
with:
path: |
**/.hash
key: hash-files-${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
hash-files-${{ runner.os }}-pnpm-
- name: "Force rebuild if no cache has been found"
if: steps.restore-hash-cache.outputs.cache-hit == ''
run: rm -fr **/.hash
- name: "Check if workspace-name is unchanged"
id: check-workspace-name
run: |
# These 2 lines are useful only if you use act, as a way to ensure the images are built if not present
# WORKSPACENAME_DOCKER_EXISTS=$(docker images -q username/workspace-name:${{ env.IMAGE_TAG }} | wc -l)
# echo "WORKSPACENAME_DOCKER_EXISTS=$WORKSPACENAME_DOCKER_EXISTS" >> ${GITHUB_OUTPUT}
set +e
pnpm monorepo-hash --compare --target="services/workspace-name"
EXIT_CODE=$?
echo "WORKSPACENAME_HASH_EXIT_CODE=$EXIT_CODE" >> ${GITHUB_OUTPUT}
# Do this as much as needed for your workspaces
- name: "Build the workspace-name Docker image"
if: steps.check-workspace-name.outputs.WORKSPACENAME_HASH_EXIT_CODE != '0'
# act version :
# if: (steps.check-workspace-name.outputs.WORKSPACENAME_HASH_EXIT_CODE != '0' || steps.check-workspace-name.outputs.WORKSPACENAME_DOCKER_EXISTS == '0')
uses: docker/build-push-action@v7
with:
context: .
file: services/workspace-name/Dockerfile
tags: username/workspace-name:${{ env.IMAGE_TAG }}
load: true
# Build things and test them
# Don't do that if you delete/add files during the action !
- name: "Ensure hash files are up to date"
run: |
pnpm monorepo-hash --generate
- name: "Save .hash cache"
uses: actions/cache/save@v5
with:
path: |
**/.hash
key: hash-files-${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
hash-files-${{ runner.os }}-pnpm-Here we use the actions cache to store the .hash files, so that we can reuse them in the next runs.
This is especially useful because when you generate hashes, the action will pick them up from the latest commit and not the latest run.
- If you use another Version Control System than
git, we can't ignore your files correctly for the hashes generation (note : any VCS that uses.gitignorefiles, such asJujutsuwill work just fine) - Your EOL (End of Line) should be consistent across your monorepo's files and the different environments it's being used in. Since Docker containers and GitHub Actions runners are based on Linux, it's recommended to use
LFas EOL.
I recommend to set this up in your IDE and formatter config.
Caution
Those benchmarks aim to representing overall how the CLI performs across versions, runtimes and monorepo sizes, but they are not to be taken as absolute truth.
The performance can vary a lot based on the machine, the disk, the CPU load and many other factors.
Minor variations are to be expected between runs as GitHub Actions aren't an isolated environment and the servers are shared between multiple users.
These benchmarks have been realised on Standard GitHub-hosted runner (ubuntu-24.04) that you can get by running any Action.
The specs as I'm writing this are an AMD EPYC 7763 64-Core (4) @ 3.25 GHz CPU, 15.61 GiB of RAM and 144.26 GiB of SSD storage. Keep in mind that since the servers are shared between multiple users, the performance may vary slightly between runs.
They have been reproduced 10 times with a cold and warm disk cache thanks to hyperfine.
Cold cache results are more representative of a first run in CI or on a fresh boot. The script run speed doesn't really change, the only performance overhead on a cold cache is the time it takes to run Node/Bun/Go/Rust (and reading files from the disk). You can expect warm cache runs to be at least 1/3 faster than cold cache ones.
The versions denoted with (bun) are using the Bun binary build of monorepo-hash, which removes the Node overhead, uses Bun internal replacements and is generally faster. This build is the default one since v2.0.0.
The versions denoted with (go) are using the Go binary build of monorepo-hash, which is even faster than the Bun version and 95% smaller. This build might be the default one since v2.3.0.
The versions denoted with (rust) are using the Rust binary build of monorepo-hash, which is on-par with the Go version in terms of performance and is twice as small. This build might be the default one since v2.3.0.
Starting with v2.0.0, the benchmark methodology has changed : we re-runned them for all versions in the same runner and script to avoid noisy neighbor effects and massive drifts in perf for no reason, and we also started to measure warm cache runs, noted in parenthesis. As a consequence, previous results that you could find in the releases aren't comparable with these new ones. More info here : [INFO] π£ A change in the benchmarks methodology (#20)
Note
Here are the details of each demo monorepo used for the benchmarks :
- Small monorepo : 5 workspaces of 100 files each, files composed of 1 line of text
- Medium monorepo : 5 workspaces of 100 folders each, with each folder containing 100 files, files composed of 10 lines of text
- Large monorepo : 5 workspaces of 100 folders each, with each folder containing 10 files and 10 folders, and each of these folders containing 100 files, files composed of 100 lines of text
- Wide monorepo : 50 workspaces of 10 folders each, with each folder containing 100 files, files composed of 10 lines of text (the most representative of a real-world monorepo with many packages)
In order to not clunk up Git, these demo repos are 7z ultra compressed.
Symbols (comparing Node with Node, Bun with Bun, Go with Go, Rust with Rust, the first Bun/Go/Rust version is compared with the same version's Node, wide > small > medium > large, warm > cold) :
- π : Faster than the previous version
- π : Slower than the previous version
- βοΈ : Negligible or no perceivable change in performance compared to the previous version
| Version | Small | Medium | Large | Wide |
|---|---|---|---|---|
v2.2.0 (rust) π |
63.9 ms (4.3 ms) | 4.083 s (243.4 ms) | 60.727 s (3.784 s) | 2.942 s (190.9 ms) |
v2.2.0 (go) π |
55.2 ms (5.1 ms) | 3.007 s (279.9 ms) | 33.513 s (4.246 s) | 3.053 s (283.9 ms) |
v2.2.0 (bun) π |
161 ms (56.1 ms) | 3.472 s (857.1 ms) | 42.653 s (13.104 s) | 3.328 s (852.4 ms) |
v2.2.0 π |
189.2 ms (118.2 ms) | 3.749 s (3.859 s) | 45.269 s (38.096 s) | 4.615 s (3.956 s) |
v2.1.1 (bun) π |
155.8 ms (58 ms) | 3.474 s (839.7 ms) | 47.196 s (12.960 s) | 3.462 s (846.7 ms) |
v2.1.1 π |
191.3 ms (118.1 ms) | 3.713 s (3.722 s) | 49.062 s (38.028 s) | 4.936 s (3.863 s) |
v2.1.0 (bun) π |
156.8 ms (56.9 ms) | 3.502 s (821.8 ms) | 47.464 s (12.921 s) | 3.254 s (824.9 ms) |
v2.1.0 π |
197 ms (117.9 ms) | 3.777 s (3.680 s) | 48.900 s (36.678 s) | 4.567 s (3.822 s) |
v2.0.0 (bun) π |
231 ms (69.33 ms) | 3.295 s (802.3 ms) | 41.083 s (17.319 s) | 3.081 s (761.9 ms) |
v2.0.0 π |
282.6 ms (124.1 ms) | 3.853 s (3.532 s) | 36.773 s (35.706 s) | 4.447 s (3.599 s) |
v1.9.0 (bun) βοΈ |
224.3 ms (67.45 ms) | 3.347 s (719.9 ms) | 35.774 s (10.268 s) | 3.546 s (1.405 s) |
v1.9.0 π |
284.5 ms (129.3 ms) | 4.140 s (3.548 s) | 42.666 s (36.751 s) | 4.063 s (3.617 s) |
v1.8.0 (bun) π |
216.5 ms (73.16 ms) | 3.285 s (752.5 ms) | 35.464 s (10.382 s) | 3.536 s (1.444 s) |
v1.8.0 π |
276.2 ms (124 ms) | 4.057 s (3.534 s) | 42.178 s (36.731 s) | 4.051 s (3.637 s) |
v1.7.0 βοΈ |
285.2 ms (124.5 ms) | 4.117 s (3.535 s) | 42.534 s (37.125 s) | 3.924 s (3.643 s) |
v1.6.0 π |
285.3 ms (126.6 ms) | 4.191 s (3.556 s) | 42.940 s (37.045 s) | 4.174 s (3.636 s) |
v1.5.1 π |
290.6 ms (128 ms) | 4.225 s (3.593 s) | 42.419 s (36.959 s) | 4.062 s (3.644 s) |
v1.5.0 π |
265.9 ms (125.8 ms) | 4.068 s (3.573 s) | 42.245 s (36.998 s) | 4.083 s (3.606 s) |
v1.4.2 π |
274.3 ms (130 ms) | 4.227 s (3.574 s) | 42.901 s (36.902 s) | 4.007 s (3.625 s) |
v1.4.1 π |
280.6 ms (123.1 ms) | 4.067 s (3.532 s) | 42.309 s (36.820 s) | 4.038 s (3.623 s) |
v1.4.0 π |
264.1 ms (119.3 ms) | 4.150 s (3.535 s) | 42.384 s (37.046 s) | 3.894 s (3.640 s) |
v1.3.1 π |
274 ms (136.5 ms) | 4.366 s (4.012 s) | 89.512 s (87.311 s) | 4.152 s (3.886 s) |
v1.3.0 π |
273.4 ms (137.9 ms) | 4.417 s (4.098 s) | 89.956 s (88.009 s) | 4.152 s (3.898 s) |
v1.2.0 π |
280.4 ms (137.4 ms) | 4.387 s (3.965 s) | 92.195 s (87.312 s) | 4.266 s (4.050 s) |
v1.1.0 π |
263.1 ms (122.9 ms) | 3.894 s (3.586 s) | 56.071 s (37.309 s) | 4.299 s (4.021 s) |
v1.0.0 βοΈ |
247.9 ms (119.1 ms) | 3.752 s (3.576 s) | 56.198 s (37.479 s) | 4.370 s (4.048 s) |
It would be foolish to pretend that monorepo-hash is the only player in the space, so here are some comparisons with other tools that have similar goals.
Some of you might say "Why not just use Turborepo since you mention it at the beginning ?" and you could but usage differs.
You can run turbo ls --affected to check which workspaces are affected by changes, and it does take in consideration transitive dependencies. But it isn't aware of "is the root included in the workspaces list ?", it doesn't give reusable hashes for other tools and doesn't have a programmatic API. However since it's written in Rust, it's very fast.
Overall Turborepo is mainly a task runner, and its caching mechanism is centered around tasks and not packages themselves, although it is a byproduct of the way it works. It also compares against your VCS's branch and not a specified snapshot.
Other task runners like Nx, moonrepo, Lerna or Rush have similar limitations (centered around tasks and not workspaces, based on VCS, no exposed hashes, ...), and usually require their own configuration files (who doesn't love having one more file on the repo root ? π₯°). On top of that, they might actually be quite slower than monorepo-hash since they have so much more features.
A second category is package managers themselves. For example, PNPM offers --filter "[<since>]" to only run commands on packages that have changed since the specified branch/commit, and it does take in consideration transitive dependencies. However, it is mainly here for task running (again...) and is tied again to your VCS.
Lastly there are specialized tools (like us !), such as bazel-diff (specific to Bazel), Yanice, traf and @rushstack/package-deps-hash (specific to Rush), to name a few. They all have their advantages and drawbacks, but overall they either work only with specific tooling, require some manual configuration, are language-specific or don't even expose a CLI.
If you wish to read more about the comparison between monorepo-hash and other tools, check this issue : [INFO] π£ Alternatives comparison : a ChatGPT yap session (#26)
Here's a quick guide for contributing to monorepo-hash :
0. Requirements :
- Node v25+
- PNPM v10+
- Bun v1.3+
- Go 1.26+
- Rust 1.94+
- Fork the repository (and star it π)
- Clone your fork
git clone https://github.com/USERNAME/monorepo-hash.git
cd monorepo-hash
pnpm i --frozen-lockfile
cd src/go && go mod download && cd ../..
rustup toolchain install 1.94.1
rustup component add clippy --toolchain 1.94.1
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
cargo install cargo-binstall --locked
cargo binstall cargo-edit --locked
cargo binstall cargo-outdated --locked
cd src/rust && cargo fetch --locked && cd ../..- Do your changes
- Format, typecheck and lint your code
pnpm format
pnpm typecheck
pnpm lint- Test your changes (feel free to add tests to the
testsdirectory)
pnpm test- Commit your changes
- Open a pull request
# bump the version in package.json, src/rust/Cargo.toml, add changelog entry in CHANGELOG.md, & update for all `const CLI_VERSION`
git add -A && git status
pnpm typecheck
pnpm format
pnpm test
git commit -m "the message" && git push
pnpm build:node
# run the actions that build the binaries and download the artifacts
# create a draft release on GitHub with the artifacts
# run the benchmarks action and download the results, put in `bench-history-new`
pnpm cli:get-bench-times
pnpm cli:get-bench-graphs
# include them in the README
git commit -m "the message" && git push
# un-draft and publish the release on GitHub as latest
pnpm release
# create the new version's manifest, check the latest wingetcreate & manifest's versions (https://github.com/microsoft/winget-pkgs/tree/master/doc/manifest/schema)
wingetcreate submit --prtitle "New version: EDM115.monorepo-hash version x.x.x" .\manifests\e\EDM115\monorepo-hash\x.x.x\- Check :
pnpm outdated/cd src/go && go list -u -m all/cd src/rust && cargo outdated(requirescargo binstall cargo-outdated) - PNPM (Node/Bun) :
pnpm up && pnpm dedupe - Go :
cd src/go && go get -u && go get -u tool && go mod tidy && cd ../.. - Rust :
cd src/rust && cargo update && cd ../..
If you use monorepo-hash in your project(s), whether you're an individual or a company, please let me know by opening an issue or a pull request, and I'll add you to this list !
I'm a young developer from France. If you want to support me, here's how you can do it :
- Star this repository
- Follow me on GitHub
- Donate :
monorepo-hash is licensed under the MIT License




