1.0.6-td.1.0.6 • Published 1 year ago
@iqtech84/capacitor-zip v1.0.6-td.1.0.6
Capacitor Zip
Installation
npm i capacitor-zip
Usage
import { Zip } from "capacitor-zip";
const zip = new Zip();
await zip.zip(
{
source: source,
destination: destination,
keepParent: true, // Optional default true
password: "password", // Optional
},
(progress) => {}
);
await zip.unZip(
{
source: source,
destination: destination,
overwrite: true, // Optional default true
password: "password", // Optional
},
(progress) => {}
);
Transmission Dynamics Publishing
This package is published on AWS CodeArtifact. To publish the new version you will need CODEARTIFACT_AUTH_TOKEN and proper registry in .npmrc
file. More thorough instructions are included in the details of the AWS CodeArtifact repository you want to publish this package to.