mirror of
https://github.com/goreleaser/goreleaser-action
synced 2026-07-09 16:37:33 +00:00
Initial commit
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
# decompress-tarbz2 [](https://travis-ci.org/kevva/decompress-tarbz2)
|
||||
|
||||
> tar.bz2 decompress plugin
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install decompress-tarbz2
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const decompress = require('decompress');
|
||||
const decompressTarbz = require('decompress-tarbz2');
|
||||
|
||||
decompress('unicorn.tar.gz', 'dist', {
|
||||
plugins: [
|
||||
decompressTarbz()
|
||||
]
|
||||
}).then(() => {
|
||||
console.log('Files decompressed');
|
||||
});
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### decompressTarbz()(input)
|
||||
|
||||
Returns both a `Promise` for a `Buffer` and a [`Duplex stream`](https://nodejs.org/api/stream.html#stream_class_stream_duplex).
|
||||
|
||||
#### input
|
||||
|
||||
Type: `Buffer` `Stream`
|
||||
|
||||
Buffer to decompress.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Kevin Mårtensson](https://github.com/kevva)
|
||||
Reference in New Issue
Block a user