Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Latest commit

 

History

History

plugin-unpack

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

🗜 plugin-unpack

npm linux windows coverage deps

Unpack .tar/.tar.bz2/.tar.gz/.zip archives archives.

Install

$ yarn add --dev @start/plugin-unpack
# or
$ npm install --save-dev @start/plugin-unpack

Usage

Signature

unpack(outDir: string)

Example

import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import unpack from '@start/plugin-unpack'

export const task = () =>
  sequence(
    find('packed/*.tar'),
    unpack('unpacked/')
  )