@yarnpkg/libzip
Advanced tools
Comparing version 3.0.0-rc.21 to 3.0.0-rc.22
/// <reference types="emscripten" /> | ||
import type { LibzipEmscriptenModule } from './emscripten'; | ||
export declare type Libzip = ReturnType<typeof makeInterface>; | ||
export type Libzip = ReturnType<typeof makeInterface>; | ||
export declare enum Errors { | ||
@@ -5,0 +5,0 @@ ZIP_ER_OK = 0, |
@@ -10,5 +10,5 @@ /// <reference types="node" /> | ||
import { ReadStream, WriteStream } from 'fs'; | ||
export declare type ZipCompression = `mixed` | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9; | ||
export type ZipCompression = `mixed` | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9; | ||
export declare const DEFAULT_COMPRESSION_LEVEL: ZipCompression; | ||
export declare type ZipBufferOptions = { | ||
export type ZipBufferOptions = { | ||
readOnly?: boolean; | ||
@@ -18,3 +18,3 @@ stats?: Stats; | ||
}; | ||
export declare type ZipPathOptions = ZipBufferOptions & { | ||
export type ZipPathOptions = ZipBufferOptions & { | ||
baseFs?: FakeFS<PortablePath>; | ||
@@ -21,0 +21,0 @@ create?: boolean; |
@@ -11,3 +11,3 @@ import { MountFS, MountFSOptions } from '@yarnpkg/fslib'; | ||
export declare function getArchivePart(path: string, extension: string): PortablePath | null; | ||
export declare type ZipOpenFSOptions = Omit<MountFSOptions<ZipFS>, `factoryPromise` | `factorySync` | `getMountPoint`> & { | ||
export type ZipOpenFSOptions = Omit<MountFSOptions<ZipFS>, `factoryPromise` | `factorySync` | `getMountPoint`> & { | ||
libzip?: Libzip | (() => Libzip); | ||
@@ -14,0 +14,0 @@ readOnlyArchives?: boolean; |
{ | ||
"name": "@yarnpkg/libzip", | ||
"version": "3.0.0-rc.21", | ||
"version": "3.0.0-rc.22", | ||
"license": "BSD-2-Clause", | ||
@@ -45,7 +45,7 @@ "main": "./lib/sync.js", | ||
"@types/emscripten": "^1.39.6", | ||
"@yarnpkg/fslib": "^3.0.0-rc.21", | ||
"@yarnpkg/fslib": "^3.0.0-rc.22", | ||
"tslib": "^2.4.0" | ||
}, | ||
"peerDependencies": { | ||
"@yarnpkg/fslib": "^3.0.0-rc.21" | ||
"@yarnpkg/fslib": "^3.0.0-rc.22" | ||
}, | ||
@@ -52,0 +52,0 @@ "engines": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
861447
Updated@yarnpkg/fslib@^3.0.0-rc.22