mirror of
https://github.com/0x5eal/luau-unzip.git
synced 2025-04-19 05:03:46 +01:00
style: apply stylua formatter
This commit is contained in:
parent
792682e46d
commit
c2e638cbec
6 changed files with 911 additions and 774 deletions
|
@ -23,7 +23,8 @@ end
|
||||||
|
|
||||||
-- Get archive statistics
|
-- Get archive statistics
|
||||||
local stats = reader:getStats()
|
local stats = reader:getStats()
|
||||||
print(string.format([[
|
print(string.format(
|
||||||
|
[[
|
||||||
|
|
||||||
Archive stats:
|
Archive stats:
|
||||||
Files: %d
|
Files: %d
|
||||||
|
|
|
@ -270,8 +270,10 @@ function ZipReader.extract(self: ZipReader, entry: ZipEntry, options: Extraction
|
||||||
local optionsOrDefault: {
|
local optionsOrDefault: {
|
||||||
decompress: boolean,
|
decompress: boolean,
|
||||||
isString: boolean,
|
isString: boolean,
|
||||||
skipValidation: boolean
|
skipValidation: boolean,
|
||||||
} = if options then setmetatable(options, { __index = defaultOptions }) :: any else defaultOptions
|
} = if options
|
||||||
|
then setmetatable(options, { __index = defaultOptions }) :: any
|
||||||
|
else defaultOptions
|
||||||
|
|
||||||
local pos = entry.offset
|
local pos = entry.offset
|
||||||
if buffer.readu32(self.data, pos) ~= SIGNATURES.LOCAL_FILE then
|
if buffer.readu32(self.data, pos) ~= SIGNATURES.LOCAL_FILE then
|
||||||
|
|
131
pesde.lock
131
pesde.lock
|
@ -2,6 +2,80 @@ name = "0x5eal/unzip"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
target = "luau"
|
target = "luau"
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune"]
|
||||||
|
resolved_ty = "standard"
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "src/init.luau"
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune".dependencies]
|
||||||
|
"jiwonz/pathfs" = ["0.1.0 lune", "pathfs"]
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "jiwonz/dirs"
|
||||||
|
version = "0.1.2"
|
||||||
|
index_url = "https://github.com/daimond113/pesde-index"
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune".pkg_ref.dependencies]
|
||||||
|
pathfs = [{ name = "jiwonz/pathfs", version = "^0.1.0", index = "https://github.com/daimond113/pesde-index" }, "standard"]
|
||||||
|
|
||||||
|
[graph."jiwonz/dirs"."0.1.2 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "src/init.luau"
|
||||||
|
|
||||||
|
[graph."jiwonz/pathfs"."0.1.0 lune"]
|
||||||
|
resolved_ty = "standard"
|
||||||
|
|
||||||
|
[graph."jiwonz/pathfs"."0.1.0 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "init.luau"
|
||||||
|
|
||||||
|
[graph."jiwonz/pathfs"."0.1.0 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "jiwonz/pathfs"
|
||||||
|
version = "0.1.0"
|
||||||
|
index_url = "https://github.com/daimond113/pesde-index"
|
||||||
|
|
||||||
|
[graph."jiwonz/pathfs"."0.1.0 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "init.luau"
|
||||||
|
|
||||||
|
[graph."lukadev_0/option"."1.2.0 lune"]
|
||||||
|
resolved_ty = "standard"
|
||||||
|
|
||||||
|
[graph."lukadev_0/option"."1.2.0 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "lib/init.luau"
|
||||||
|
|
||||||
|
[graph."lukadev_0/option"."1.2.0 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "lukadev_0/option"
|
||||||
|
version = "1.2.0"
|
||||||
|
index_url = "https://github.com/daimond113/pesde-index"
|
||||||
|
|
||||||
|
[graph."lukadev_0/option"."1.2.0 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "lib/init.luau"
|
||||||
|
|
||||||
|
[graph."lukadev_0/result"."1.2.0 lune"]
|
||||||
|
resolved_ty = "standard"
|
||||||
|
|
||||||
|
[graph."lukadev_0/result"."1.2.0 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "lib/init.luau"
|
||||||
|
|
||||||
|
[graph."lukadev_0/result"."1.2.0 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "lukadev_0/result"
|
||||||
|
version = "1.2.0"
|
||||||
|
index_url = "https://github.com/daimond113/pesde-index"
|
||||||
|
|
||||||
|
[graph."lukadev_0/result"."1.2.0 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "lib/init.luau"
|
||||||
|
|
||||||
[graph."lukadev_0/result"."1.2.0 luau"]
|
[graph."lukadev_0/result"."1.2.0 luau"]
|
||||||
direct = ["result", { name = "lukadev_0/result", version = "^1.2.0" }, "standard"]
|
direct = ["result", { name = "lukadev_0/result", version = "^1.2.0" }, "standard"]
|
||||||
resolved_ty = "standard"
|
resolved_ty = "standard"
|
||||||
|
@ -19,3 +93,60 @@ index_url = "https://github.com/pesde-pkg/index"
|
||||||
[graph."lukadev_0/result"."1.2.0 luau".pkg_ref.target]
|
[graph."lukadev_0/result"."1.2.0 luau".pkg_ref.target]
|
||||||
environment = "luau"
|
environment = "luau"
|
||||||
lib = "lib/init.luau"
|
lib = "lib/init.luau"
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune"]
|
||||||
|
direct = ["stylua", { name = "pesde/stylua", version = "^2.0.2", target = "lune" }, "dev"]
|
||||||
|
resolved_ty = "dev"
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
bin = "init.luau"
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune".dependencies]
|
||||||
|
"lukadev_0/option" = ["1.2.0 lune", "option"]
|
||||||
|
"lukadev_0/result" = ["1.2.0 lune", "result"]
|
||||||
|
"pesde/toolchainlib" = ["0.1.7 lune", "core"]
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "pesde/stylua"
|
||||||
|
version = "2.0.2"
|
||||||
|
index_url = "https://github.com/pesde-pkg/index"
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune".pkg_ref.dependencies]
|
||||||
|
core = [{ name = "pesde/toolchainlib", version = "^0.1.3", index = "https://github.com/daimond113/pesde-index", target = "lune" }, "standard"]
|
||||||
|
option = [{ name = "lukadev_0/option", version = "^1.2.0", index = "https://github.com/daimond113/pesde-index" }, "standard"]
|
||||||
|
result = [{ name = "lukadev_0/result", version = "^1.2.0", index = "https://github.com/daimond113/pesde-index" }, "standard"]
|
||||||
|
|
||||||
|
[graph."pesde/stylua"."2.0.2 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
bin = "init.luau"
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune"]
|
||||||
|
resolved_ty = "standard"
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune".target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "src/init.luau"
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune".dependencies]
|
||||||
|
"jiwonz/dirs" = ["0.1.2 lune", "dirs"]
|
||||||
|
"jiwonz/pathfs" = ["0.1.0 lune", "pathfs"]
|
||||||
|
"lukadev_0/option" = ["1.2.0 lune", "option"]
|
||||||
|
"lukadev_0/result" = ["1.2.0 lune", "result"]
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune".pkg_ref]
|
||||||
|
ref_ty = "pesde"
|
||||||
|
name = "pesde/toolchainlib"
|
||||||
|
version = "0.1.7"
|
||||||
|
index_url = "https://github.com/daimond113/pesde-index"
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune".pkg_ref.dependencies]
|
||||||
|
dirs = [{ name = "jiwonz/dirs", version = "^0.1.1", index = "https://github.com/daimond113/pesde-index" }, "standard"]
|
||||||
|
option = [{ name = "lukadev_0/option", version = "^1.2.0", index = "https://github.com/daimond113/pesde-index" }, "peer"]
|
||||||
|
pathfs = [{ name = "jiwonz/pathfs", version = "^0.1.0", index = "https://github.com/daimond113/pesde-index" }, "standard"]
|
||||||
|
result = [{ name = "lukadev_0/result", version = "^1.2.0", index = "https://github.com/daimond113/pesde-index" }, "peer"]
|
||||||
|
|
||||||
|
[graph."pesde/toolchainlib"."0.1.7 lune".pkg_ref.target]
|
||||||
|
environment = "lune"
|
||||||
|
lib = "src/init.luau"
|
||||||
|
|
|
@ -13,3 +13,6 @@ default = "https://github.com/pesde-pkg/index"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
result = { name = "lukadev_0/result", version = "^1.2.0" }
|
result = { name = "lukadev_0/result", version = "^1.2.0" }
|
||||||
|
|
||||||
|
[dev_dependencies]
|
||||||
|
stylua = { name = "pesde/stylua", version = "^2.0.2", target = "lune" }
|
||||||
|
|
Loading…
Add table
Reference in a new issue