bare-script 3.8.3 → 3.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/include/args.bare +2 -2
- package/package.json +1 -1
package/lib/include/args.bare
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Licensed under the MIT License
|
|
2
2
|
# https://github.com/craigahobbs/bare-script/blob/main/LICENSE
|
|
3
3
|
|
|
4
|
+
include <dataTable.bare>
|
|
5
|
+
|
|
4
6
|
|
|
5
7
|
# The URL arguments model
|
|
6
8
|
argsTypes = schemaParse( \
|
|
@@ -179,8 +181,6 @@ endfunction
|
|
|
179
181
|
# $function: argsHelp
|
|
180
182
|
# $group: args.bare
|
|
181
183
|
# $doc: Generate the [arguments model's](model.html#var.vName='ArgsArguments') help content
|
|
182
|
-
# $doc:
|
|
183
|
-
# $doc: **NOTE:** Calling this function requires `include <dataTable.bare>`
|
|
184
184
|
# $arg arguments: The [arguments model](model.html#var.vName='ArgsArguments')
|
|
185
185
|
# $return: The array of help Markdown line strings
|
|
186
186
|
function argsHelp(arguments):
|