Skip to content

Commit 5e0dc8c

Browse files
committed
A couple more things I forgot: Updated README for codecs package. Updated github workflow for modern versions of Node.
1 parent d5971c0 commit 5e0dc8c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [12.x, 14.x, 15.x]
19+
node-version: [17.x, 18.x]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
steps:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
tests/archive.spec.notready.js

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
A set of dependency-free JavaScript modules to handle binary data in JS (using Typed Arrays). Includes:
88

99
* bitjs/archive: Unarchiving files (unzip, unrar, untar) in the browser, implemented as Web Workers and allowing progressively unarchiving while streaming.
10+
* bitjs/codecs: Get the codec info of media containers in a ISO RFC6381 MIME type string
1011
* bitjs/file: Detect the type of file from its binary signature.
1112
* bitjs/image: Conversion of WebP images to PNG or JPEG.
1213
* bitjs/io: Low-level classes for interpreting binary data (BitStream, ByteStream). For example, reading or peeking at N bits at a time.

0 commit comments

Comments
 (0)