-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81bb1b0
commit ce137c0
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Maintaining brotli | ||
|
||
The [brotli](https://github.com/google/brotli) dependency is used for | ||
the homonym generic-purpose lossless compression algorithm. | ||
|
||
## Updating brotli | ||
|
||
The `tools/dep_updaters/update-brotli.sh` script automates the update of the | ||
brotli source files. | ||
|
||
Check that Node.js still builds and tests. | ||
|
||
## Committing postject | ||
|
||
1. Add brotli: | ||
```console | ||
$ git add deps/brotli | ||
``` | ||
2. Commit the changes: `git commit`. | ||
3. Add a message like: | ||
|
||
```text | ||
deps,test: update brotli to <version> | ||
|
||
Updated as described in doc/contributing/maintaining-brotli.md. | ||
``` |