From 858249a2e6f6e00f53edccb02036305167c92c8b Mon Sep 17 00:00:00 2001 From: ryan_chu Date: Wed, 21 Sep 2022 14:10:15 +0800 Subject: [PATCH] fix: update pnp file to fix chore testing error --- .pnp.cjs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.pnp.cjs b/.pnp.cjs index 4c9017c4616b..e02e748a6f64 100755 --- a/.pnp.cjs +++ b/.pnp.cjs @@ -45884,13 +45884,6 @@ function EOPNOTSUPP(reason) { function ERR_DIR_CLOSED() { return makeError$1(`ERR_DIR_CLOSED`, `Directory handle was closed`); } -class LibzipError extends Error { - constructor(message, code) { - super(message); - this.name = `Libzip Error`; - this.code = code; - } -} const DEFAULT_MODE = S_IFREG | 420; class StatEntry { @@ -53348,6 +53341,13 @@ function makeEmptyArchive() { 0 ]); } +class LibzipError extends Error { + constructor(message, code) { + super(message); + this.name = `Libzip Error`; + this.code = code; + } +} class ZipFS extends BasePortableFakeFS { constructor(source, opts = {}) { super();