We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9aaf7 commit 05f176fCopy full SHA for 05f176f
3 files changed
mods.rockspec.template
@@ -14,8 +14,8 @@ description = {
14
license = "MIT",
15
detailed = [[
16
Mods provides small, focused Lua modules:
17
-is, keyword, List, operator, repr, runtime, Set, str, stringcase, tbl,
18
-template, and validate.
+is, keyword, List, ntpath, operator, path, posixpath, repr, runtime, Set, str,
+stringcase, tbl, template, and validate.
19
]],
20
}
21
@@ -30,7 +30,10 @@ build = {
30
["mods.is"] = "src/mods/is.lua",
31
["mods.keyword"] = "src/mods/keyword.lua",
32
["mods.List"] = "src/mods/List.lua",
33
+ ["mods.ntpath"] = "src/mods/ntpath.lua",
34
["mods.operator"] = "src/mods/operator.lua",
35
+ ["mods.path"] = "src/mods/path.lua",
36
+ ["mods.posixpath"] = "src/mods/posixpath.lua",
37
["mods.repr"] = "src/mods/repr.lua",
38
["mods.runtime"] = "src/mods/runtime.lua",
39
["mods.Set"] = "src/mods/Set.lua",
src/mods/init.lua
@@ -4,7 +4,10 @@ local module_names = {
4
"is",
5
"keyword",
6
"List",
7
+ "ntpath",
8
"operator",
9
+ "path",
10
+ "posixpath",
11
"repr",
12
"runtime",
13
"Set",
types/mods.lua
@@ -3,12 +3,17 @@
3
local repr ---@module "mods.repr"
local template ---@module "mods.template"
----Entry point that exposes all modules under one table.
+---
+---Entry point that exposes all modules under one 💤 lazily loaded table.
---@class mods
---@field is mods.is
---@field keyword mods.keyword
---@field List mods.List
+---@field ntpath mods.ntpath
---@field operator mods.operator
+---@field path mods.path
+---@field posixpath mods.posixpath
---@field runtime mods.runtime
---@field Set mods.Set
---@field str mods.str
0 commit comments