ventojs 0.9.1 → 0.9.2

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.
Files changed (337) hide show
  1. package/esm/deps/deno.land/{std@0.205.0/path/glob.d.ts → std@0.208.0/path/glob_to_regexp.d.ts} +1 -7
  2. package/esm/deps/deno.land/std@0.208.0/path/glob_to_regexp.js +65 -0
  3. package/esm/deps/deno.land/std@0.208.0/path/join_globs.d.ts +3 -0
  4. package/esm/deps/deno.land/std@0.208.0/path/join_globs.js +11 -0
  5. package/{script/deps/deno.land/std@0.205.0 → esm/deps/deno.land/std@0.208.0}/path/mod.d.ts +6 -3
  6. package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/mod.js +6 -3
  7. package/esm/deps/deno.land/std@0.208.0/path/normalize_glob.d.ts +3 -0
  8. package/esm/deps/deno.land/std@0.208.0/path/normalize_glob.js +11 -0
  9. package/esm/deps/deno.land/{std@0.205.0/path/posix/glob.d.ts → std@0.208.0/path/posix/glob_to_regexp.d.ts} +1 -6
  10. package/esm/deps/deno.land/std@0.208.0/path/posix/glob_to_regexp.js +69 -0
  11. package/esm/deps/deno.land/std@0.208.0/path/posix/is_glob.d.ts +1 -0
  12. package/esm/deps/deno.land/std@0.208.0/path/posix/is_glob.js +3 -0
  13. package/esm/deps/deno.land/std@0.208.0/path/posix/join_globs.d.ts +3 -0
  14. package/esm/deps/deno.land/std@0.208.0/path/posix/join_globs.js +26 -0
  15. package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/mod.d.ts +4 -1
  16. package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/mod.js +4 -1
  17. package/esm/deps/deno.land/std@0.208.0/path/posix/normalize_glob.d.ts +3 -0
  18. package/esm/deps/deno.land/std@0.208.0/path/posix/normalize_glob.js +16 -0
  19. package/{script/deps/deno.land/std@0.205.0/path/posix/glob.d.ts → esm/deps/deno.land/std@0.208.0/path/windows/glob_to_regexp.d.ts} +1 -6
  20. package/esm/deps/deno.land/std@0.208.0/path/windows/glob_to_regexp.js +69 -0
  21. package/esm/deps/deno.land/std@0.208.0/path/windows/is_glob.d.ts +1 -0
  22. package/esm/deps/deno.land/std@0.208.0/path/windows/is_glob.js +3 -0
  23. package/esm/deps/deno.land/std@0.208.0/path/windows/join_globs.d.ts +3 -0
  24. package/esm/deps/deno.land/std@0.208.0/path/windows/join_globs.js +26 -0
  25. package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/mod.d.ts +4 -1
  26. package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/mod.js +4 -1
  27. package/esm/deps/deno.land/std@0.208.0/path/windows/normalize_glob.d.ts +3 -0
  28. package/esm/deps/deno.land/std@0.208.0/path/windows/normalize_glob.js +16 -0
  29. package/esm/deps.d.ts +2 -2
  30. package/esm/deps.js +2 -2
  31. package/esm/mod.js +2 -2
  32. package/package.json +1 -1
  33. package/script/deps/deno.land/{std@0.205.0/path/glob.d.ts → std@0.208.0/path/glob_to_regexp.d.ts} +1 -7
  34. package/script/deps/deno.land/std@0.208.0/path/glob_to_regexp.js +69 -0
  35. package/script/deps/deno.land/std@0.208.0/path/join_globs.d.ts +3 -0
  36. package/script/deps/deno.land/std@0.208.0/path/join_globs.js +15 -0
  37. package/{esm/deps/deno.land/std@0.205.0 → script/deps/deno.land/std@0.208.0}/path/mod.d.ts +6 -3
  38. package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/mod.js +6 -3
  39. package/script/deps/deno.land/std@0.208.0/path/normalize_glob.d.ts +3 -0
  40. package/script/deps/deno.land/std@0.208.0/path/normalize_glob.js +15 -0
  41. package/script/deps/deno.land/{std@0.205.0/path/windows/glob.d.ts → std@0.208.0/path/posix/glob_to_regexp.d.ts} +1 -6
  42. package/script/deps/deno.land/std@0.208.0/path/posix/glob_to_regexp.js +73 -0
  43. package/script/deps/deno.land/std@0.208.0/path/posix/is_glob.d.ts +1 -0
  44. package/script/deps/deno.land/std@0.208.0/path/posix/is_glob.js +7 -0
  45. package/script/deps/deno.land/std@0.208.0/path/posix/join_globs.d.ts +3 -0
  46. package/script/deps/deno.land/std@0.208.0/path/posix/join_globs.js +30 -0
  47. package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/mod.d.ts +4 -1
  48. package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/mod.js +4 -1
  49. package/script/deps/deno.land/std@0.208.0/path/posix/normalize_glob.d.ts +3 -0
  50. package/script/deps/deno.land/std@0.208.0/path/posix/normalize_glob.js +20 -0
  51. package/{esm/deps/deno.land/std@0.205.0/path/windows/glob.d.ts → script/deps/deno.land/std@0.208.0/path/windows/glob_to_regexp.d.ts} +1 -6
  52. package/script/deps/deno.land/std@0.208.0/path/windows/glob_to_regexp.js +73 -0
  53. package/script/deps/deno.land/std@0.208.0/path/windows/is_glob.d.ts +1 -0
  54. package/script/deps/deno.land/std@0.208.0/path/windows/is_glob.js +7 -0
  55. package/script/deps/deno.land/std@0.208.0/path/windows/join_globs.d.ts +3 -0
  56. package/script/deps/deno.land/std@0.208.0/path/windows/join_globs.js +30 -0
  57. package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/mod.d.ts +4 -1
  58. package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/mod.js +4 -1
  59. package/script/deps/deno.land/std@0.208.0/path/windows/normalize_glob.d.ts +3 -0
  60. package/script/deps/deno.land/std@0.208.0/path/windows/normalize_glob.js +20 -0
  61. package/script/deps.d.ts +2 -2
  62. package/script/deps.js +2 -2
  63. package/script/mod.js +2 -2
  64. package/esm/deps/deno.land/std@0.205.0/path/glob.js +0 -78
  65. package/esm/deps/deno.land/std@0.205.0/path/posix/glob.js +0 -106
  66. package/esm/deps/deno.land/std@0.205.0/path/windows/glob.js +0 -106
  67. package/script/deps/deno.land/std@0.205.0/path/glob.js +0 -85
  68. package/script/deps/deno.land/std@0.205.0/path/posix/glob.js +0 -113
  69. package/script/deps/deno.land/std@0.205.0/path/windows/glob.js +0 -113
  70. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assert.d.ts +0 -0
  71. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assert.js +0 -0
  72. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assertion_error.d.ts +0 -0
  73. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assertion_error.js +0 -0
  74. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/entities.d.ts +0 -0
  75. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/entities.js +0 -0
  76. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/mod.d.ts +0 -0
  77. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/mod.js +0 -0
  78. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/assert_path.d.ts +0 -0
  79. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/assert_path.js +0 -0
  80. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/basename.d.ts +0 -0
  81. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/basename.js +0 -0
  82. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/common.d.ts +0 -0
  83. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/common.js +0 -0
  84. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/constants.d.ts +0 -0
  85. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/constants.js +0 -0
  86. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/dirname.d.ts +0 -0
  87. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/dirname.js +0 -0
  88. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/format.d.ts +0 -0
  89. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/format.js +0 -0
  90. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/from_file_url.d.ts +0 -0
  91. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/from_file_url.js +0 -0
  92. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
  93. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/glob_to_reg_exp.js +0 -0
  94. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize.d.ts +0 -0
  95. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize.js +0 -0
  96. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize_string.d.ts +0 -0
  97. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize_string.js +0 -0
  98. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/relative.d.ts +0 -0
  99. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/relative.js +0 -0
  100. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/strip_trailing_separators.d.ts +0 -0
  101. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/strip_trailing_separators.js +0 -0
  102. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/to_file_url.d.ts +0 -0
  103. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/to_file_url.js +0 -0
  104. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_interface.d.ts +0 -0
  105. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_interface.js +0 -0
  106. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_os.d.ts +0 -0
  107. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_os.js +0 -0
  108. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/basename.d.ts +0 -0
  109. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/basename.js +0 -0
  110. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/common.d.ts +0 -0
  111. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/common.js +0 -0
  112. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/dirname.d.ts +0 -0
  113. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/dirname.js +0 -0
  114. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/extname.d.ts +0 -0
  115. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/extname.js +0 -0
  116. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/format.d.ts +0 -0
  117. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/format.js +0 -0
  118. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/from_file_url.d.ts +0 -0
  119. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/from_file_url.js +0 -0
  120. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/is_absolute.d.ts +0 -0
  121. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/is_absolute.js +0 -0
  122. /package/esm/deps/deno.land/{std@0.205.0/path/_common → std@0.208.0/path}/is_glob.d.ts +0 -0
  123. /package/esm/deps/deno.land/{std@0.205.0/path/_common → std@0.208.0/path}/is_glob.js +0 -0
  124. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/join.d.ts +0 -0
  125. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/join.js +0 -0
  126. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/normalize.d.ts +0 -0
  127. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/normalize.js +0 -0
  128. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/parse.d.ts +0 -0
  129. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/parse.js +0 -0
  130. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/_util.d.ts +0 -0
  131. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/_util.js +0 -0
  132. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/basename.d.ts +0 -0
  133. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/basename.js +0 -0
  134. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/common.d.ts +0 -0
  135. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/common.js +0 -0
  136. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/dirname.d.ts +0 -0
  137. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/dirname.js +0 -0
  138. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/extname.d.ts +0 -0
  139. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/extname.js +0 -0
  140. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/format.d.ts +0 -0
  141. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/format.js +0 -0
  142. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/from_file_url.d.ts +0 -0
  143. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/from_file_url.js +0 -0
  144. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/is_absolute.d.ts +0 -0
  145. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/is_absolute.js +0 -0
  146. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/join.d.ts +0 -0
  147. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/join.js +0 -0
  148. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/normalize.d.ts +0 -0
  149. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/normalize.js +0 -0
  150. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/parse.d.ts +0 -0
  151. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/parse.js +0 -0
  152. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/relative.d.ts +0 -0
  153. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/relative.js +0 -0
  154. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/resolve.d.ts +0 -0
  155. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/resolve.js +0 -0
  156. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/separator.d.ts +0 -0
  157. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/separator.js +0 -0
  158. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_file_url.d.ts +0 -0
  159. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_file_url.js +0 -0
  160. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_namespaced_path.d.ts +0 -0
  161. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_namespaced_path.js +0 -0
  162. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/relative.d.ts +0 -0
  163. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/relative.js +0 -0
  164. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/resolve.d.ts +0 -0
  165. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/resolve.js +0 -0
  166. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/separator.d.ts +0 -0
  167. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/separator.js +0 -0
  168. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_file_url.d.ts +0 -0
  169. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_file_url.js +0 -0
  170. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_namespaced_path.d.ts +0 -0
  171. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_namespaced_path.js +0 -0
  172. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/_util.d.ts +0 -0
  173. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/_util.js +0 -0
  174. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/basename.d.ts +0 -0
  175. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/basename.js +0 -0
  176. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/common.d.ts +0 -0
  177. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/common.js +0 -0
  178. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/dirname.d.ts +0 -0
  179. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/dirname.js +0 -0
  180. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/extname.d.ts +0 -0
  181. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/extname.js +0 -0
  182. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/format.d.ts +0 -0
  183. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/format.js +0 -0
  184. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/from_file_url.d.ts +0 -0
  185. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/from_file_url.js +0 -0
  186. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/is_absolute.d.ts +0 -0
  187. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/is_absolute.js +0 -0
  188. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/join.d.ts +0 -0
  189. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/join.js +0 -0
  190. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/normalize.d.ts +0 -0
  191. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/normalize.js +0 -0
  192. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/parse.d.ts +0 -0
  193. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/parse.js +0 -0
  194. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/relative.d.ts +0 -0
  195. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/relative.js +0 -0
  196. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/resolve.d.ts +0 -0
  197. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/resolve.js +0 -0
  198. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/separator.d.ts +0 -0
  199. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/separator.js +0 -0
  200. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_file_url.d.ts +0 -0
  201. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_file_url.js +0 -0
  202. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_namespaced_path.d.ts +0 -0
  203. /package/esm/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_namespaced_path.js +0 -0
  204. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assert.d.ts +0 -0
  205. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assert.js +0 -0
  206. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assertion_error.d.ts +0 -0
  207. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/assert/assertion_error.js +0 -0
  208. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/entities.d.ts +0 -0
  209. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/entities.js +0 -0
  210. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/mod.d.ts +0 -0
  211. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/html/mod.js +0 -0
  212. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/assert_path.d.ts +0 -0
  213. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/assert_path.js +0 -0
  214. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/basename.d.ts +0 -0
  215. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/basename.js +0 -0
  216. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/common.d.ts +0 -0
  217. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/common.js +0 -0
  218. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/constants.d.ts +0 -0
  219. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/constants.js +0 -0
  220. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/dirname.d.ts +0 -0
  221. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/dirname.js +0 -0
  222. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/format.d.ts +0 -0
  223. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/format.js +0 -0
  224. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/from_file_url.d.ts +0 -0
  225. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/from_file_url.js +0 -0
  226. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/glob_to_reg_exp.d.ts +0 -0
  227. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/glob_to_reg_exp.js +0 -0
  228. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize.d.ts +0 -0
  229. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize.js +0 -0
  230. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize_string.d.ts +0 -0
  231. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/normalize_string.js +0 -0
  232. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/relative.d.ts +0 -0
  233. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/relative.js +0 -0
  234. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/strip_trailing_separators.d.ts +0 -0
  235. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/strip_trailing_separators.js +0 -0
  236. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/to_file_url.d.ts +0 -0
  237. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_common/to_file_url.js +0 -0
  238. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_interface.d.ts +0 -0
  239. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_interface.js +0 -0
  240. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_os.d.ts +0 -0
  241. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/_os.js +0 -0
  242. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/basename.d.ts +0 -0
  243. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/basename.js +0 -0
  244. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/common.d.ts +0 -0
  245. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/common.js +0 -0
  246. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/dirname.d.ts +0 -0
  247. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/dirname.js +0 -0
  248. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/extname.d.ts +0 -0
  249. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/extname.js +0 -0
  250. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/format.d.ts +0 -0
  251. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/format.js +0 -0
  252. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/from_file_url.d.ts +0 -0
  253. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/from_file_url.js +0 -0
  254. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/is_absolute.d.ts +0 -0
  255. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/is_absolute.js +0 -0
  256. /package/script/deps/deno.land/{std@0.205.0/path/_common → std@0.208.0/path}/is_glob.d.ts +0 -0
  257. /package/script/deps/deno.land/{std@0.205.0/path/_common → std@0.208.0/path}/is_glob.js +0 -0
  258. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/join.d.ts +0 -0
  259. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/join.js +0 -0
  260. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/normalize.d.ts +0 -0
  261. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/normalize.js +0 -0
  262. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/parse.d.ts +0 -0
  263. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/parse.js +0 -0
  264. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/_util.d.ts +0 -0
  265. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/_util.js +0 -0
  266. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/basename.d.ts +0 -0
  267. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/basename.js +0 -0
  268. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/common.d.ts +0 -0
  269. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/common.js +0 -0
  270. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/dirname.d.ts +0 -0
  271. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/dirname.js +0 -0
  272. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/extname.d.ts +0 -0
  273. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/extname.js +0 -0
  274. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/format.d.ts +0 -0
  275. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/format.js +0 -0
  276. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/from_file_url.d.ts +0 -0
  277. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/from_file_url.js +0 -0
  278. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/is_absolute.d.ts +0 -0
  279. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/is_absolute.js +0 -0
  280. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/join.d.ts +0 -0
  281. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/join.js +0 -0
  282. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/normalize.d.ts +0 -0
  283. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/normalize.js +0 -0
  284. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/parse.d.ts +0 -0
  285. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/parse.js +0 -0
  286. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/relative.d.ts +0 -0
  287. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/relative.js +0 -0
  288. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/resolve.d.ts +0 -0
  289. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/resolve.js +0 -0
  290. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/separator.d.ts +0 -0
  291. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/separator.js +0 -0
  292. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_file_url.d.ts +0 -0
  293. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_file_url.js +0 -0
  294. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_namespaced_path.d.ts +0 -0
  295. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/posix/to_namespaced_path.js +0 -0
  296. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/relative.d.ts +0 -0
  297. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/relative.js +0 -0
  298. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/resolve.d.ts +0 -0
  299. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/resolve.js +0 -0
  300. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/separator.d.ts +0 -0
  301. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/separator.js +0 -0
  302. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_file_url.d.ts +0 -0
  303. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_file_url.js +0 -0
  304. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_namespaced_path.d.ts +0 -0
  305. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/to_namespaced_path.js +0 -0
  306. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/_util.d.ts +0 -0
  307. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/_util.js +0 -0
  308. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/basename.d.ts +0 -0
  309. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/basename.js +0 -0
  310. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/common.d.ts +0 -0
  311. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/common.js +0 -0
  312. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/dirname.d.ts +0 -0
  313. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/dirname.js +0 -0
  314. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/extname.d.ts +0 -0
  315. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/extname.js +0 -0
  316. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/format.d.ts +0 -0
  317. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/format.js +0 -0
  318. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/from_file_url.d.ts +0 -0
  319. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/from_file_url.js +0 -0
  320. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/is_absolute.d.ts +0 -0
  321. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/is_absolute.js +0 -0
  322. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/join.d.ts +0 -0
  323. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/join.js +0 -0
  324. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/normalize.d.ts +0 -0
  325. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/normalize.js +0 -0
  326. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/parse.d.ts +0 -0
  327. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/parse.js +0 -0
  328. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/relative.d.ts +0 -0
  329. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/relative.js +0 -0
  330. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/resolve.d.ts +0 -0
  331. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/resolve.js +0 -0
  332. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/separator.d.ts +0 -0
  333. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/separator.js +0 -0
  334. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_file_url.d.ts +0 -0
  335. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_file_url.js +0 -0
  336. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_namespaced_path.d.ts +0 -0
  337. /package/script/deps/deno.land/{std@0.205.0 → std@0.208.0}/path/windows/to_namespaced_path.js +0 -0
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.joinGlobs = void 0;
6
+ const _os_js_1 = require("./_os.js");
7
+ const join_globs_js_1 = require("./posix/join_globs.js");
8
+ const join_globs_js_2 = require("./windows/join_globs.js");
9
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
10
+ function joinGlobs(globs, options = {}) {
11
+ return _os_js_1.isWindows
12
+ ? (0, join_globs_js_2.joinGlobs)(globs, options)
13
+ : (0, join_globs_js_1.joinGlobs)(globs, options);
14
+ }
15
+ exports.joinGlobs = joinGlobs;
@@ -1,8 +1,8 @@
1
1
  import * as _windows from "./windows/mod.js";
2
2
  import * as _posix from "./posix/mod.js";
3
- /** @deprecated (will be removed after 1.0.0) Import from `path/windows/mod.ts` instead. */
3
+ /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/path/windows/mod.ts} instead. */
4
4
  export declare const win32: typeof _windows;
5
- /** @deprecated (will be removed after 1.0.0) Import from `path/posix/mod.ts` instead. */
5
+ /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/posix/mod.ts} instead. */
6
6
  export declare const posix: typeof _posix;
7
7
  export declare const sep: string;
8
8
  export declare const delimiter: string;
@@ -22,4 +22,7 @@ export * from "./to_namespaced_path.js";
22
22
  export * from "./common.js";
23
23
  export * from "./separator.js";
24
24
  export * from "./_interface.js";
25
- export * from "./glob.js";
25
+ export * from "./glob_to_regexp.js";
26
+ export * from "./is_glob.js";
27
+ export * from "./join_globs.js";
28
+ export * from "./normalize_glob.js";
@@ -64,9 +64,9 @@ exports.delimiter = exports.sep = exports.posix = exports.win32 = void 0;
64
64
  const _os_js_1 = require("./_os.js");
65
65
  const _windows = __importStar(require("./windows/mod.js"));
66
66
  const _posix = __importStar(require("./posix/mod.js"));
67
- /** @deprecated (will be removed after 1.0.0) Import from `path/windows/mod.ts` instead. */
67
+ /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/path/windows/mod.ts} instead. */
68
68
  exports.win32 = _windows;
69
- /** @deprecated (will be removed after 1.0.0) Import from `path/posix/mod.ts` instead. */
69
+ /** @deprecated (will be removed after 1.0.0) Import from {@link https://deno.land/std/posix/mod.ts} instead. */
70
70
  exports.posix = _posix;
71
71
  exports.sep = _os_js_1.isWindows ? _windows.sep : _posix.sep;
72
72
  exports.delimiter = _os_js_1.isWindows ? _windows.delimiter : _posix.delimiter;
@@ -86,4 +86,7 @@ __exportStar(require("./to_namespaced_path.js"), exports);
86
86
  __exportStar(require("./common.js"), exports);
87
87
  __exportStar(require("./separator.js"), exports);
88
88
  __exportStar(require("./_interface.js"), exports);
89
- __exportStar(require("./glob.js"), exports);
89
+ __exportStar(require("./glob_to_regexp.js"), exports);
90
+ __exportStar(require("./is_glob.js"), exports);
91
+ __exportStar(require("./join_globs.js"), exports);
92
+ __exportStar(require("./normalize_glob.js"), exports);
@@ -0,0 +1,3 @@
1
+ import type { GlobOptions } from "./_common/glob_to_reg_exp.js";
2
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function normalizeGlob(glob: string, options?: GlobOptions): string;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.normalizeGlob = void 0;
6
+ const _os_js_1 = require("./_os.js");
7
+ const normalize_glob_js_1 = require("./posix/normalize_glob.js");
8
+ const normalize_glob_js_2 = require("./windows/normalize_glob.js");
9
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
10
+ function normalizeGlob(glob, options = {}) {
11
+ return _os_js_1.isWindows
12
+ ? (0, normalize_glob_js_2.normalizeGlob)(glob, options)
13
+ : (0, normalize_glob_js_1.normalizeGlob)(glob, options);
14
+ }
15
+ exports.normalizeGlob = normalizeGlob;
@@ -1,5 +1,4 @@
1
- import { GlobOptions, GlobToRegExpOptions } from "../_common/glob_to_reg_exp.js";
2
- export { isGlob } from "../_common/is_glob.js";
1
+ import { GlobToRegExpOptions } from "../_common/glob_to_reg_exp.js";
3
2
  /** Convert a glob string to a regular expression.
4
3
  *
5
4
  * Tries to match bash glob expansion as closely as possible.
@@ -56,7 +55,3 @@ export { isGlob } from "../_common/is_glob.js";
56
55
  * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
57
56
  * the group occurs not nested at the end of the segment. */
58
57
  export declare function globToRegExp(glob: string, options?: GlobToRegExpOptions): RegExp;
59
- /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
60
- export declare function normalizeGlob(glob: string, { globstar }?: GlobOptions): string;
61
- /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
62
- export declare function joinGlobs(globs: string[], { extended, globstar }?: GlobOptions): string;
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.globToRegExp = void 0;
6
+ const glob_to_reg_exp_js_1 = require("../_common/glob_to_reg_exp.js");
7
+ const constants = {
8
+ sep: "/+",
9
+ sepMaybe: "/*",
10
+ seps: ["/"],
11
+ globstar: "(?:[^/]*(?:/|$)+)*",
12
+ wildcard: "[^/]*",
13
+ escapePrefix: "\\",
14
+ };
15
+ /** Convert a glob string to a regular expression.
16
+ *
17
+ * Tries to match bash glob expansion as closely as possible.
18
+ *
19
+ * Basic glob syntax:
20
+ * - `*` - Matches everything without leaving the path segment.
21
+ * - `?` - Matches any single character.
22
+ * - `{foo,bar}` - Matches `foo` or `bar`.
23
+ * - `[abcd]` - Matches `a`, `b`, `c` or `d`.
24
+ * - `[a-d]` - Matches `a`, `b`, `c` or `d`.
25
+ * - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
26
+ * - `[[:<class>:]]` - Matches any character belonging to `<class>`.
27
+ * - `[[:alnum:]]` - Matches any digit or letter.
28
+ * - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
29
+ * - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
30
+ * for a complete list of supported character classes.
31
+ * - `\` - Escapes the next character for an `os` other than `"windows"`.
32
+ * - \` - Escapes the next character for `os` set to `"windows"`.
33
+ * - `/` - Path separator.
34
+ * - `\` - Additional path separator only for `os` set to `"windows"`.
35
+ *
36
+ * Extended syntax:
37
+ * - Requires `{ extended: true }`.
38
+ * - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
39
+ * - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
40
+ * - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
41
+ * - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
42
+ * - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
43
+ * - See https://www.linuxjournal.com/content/bash-extended-globbing.
44
+ *
45
+ * Globstar syntax:
46
+ * - Requires `{ globstar: true }`.
47
+ * - `**` - Matches any number of any path segments.
48
+ * - Must comprise its entire path segment in the provided glob.
49
+ * - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
50
+ *
51
+ * Note the following properties:
52
+ * - The generated `RegExp` is anchored at both start and end.
53
+ * - Repeating and trailing separators are tolerated. Trailing separators in the
54
+ * provided glob have no meaning and are discarded.
55
+ * - Absolute globs will only match absolute paths, etc.
56
+ * - Empty globs will match nothing.
57
+ * - Any special glob syntax must be contained to one path segment. For example,
58
+ * `?(foo|bar/baz)` is invalid. The separator will take precedence and the
59
+ * first segment ends with an unclosed group.
60
+ * - If a path segment ends with unclosed groups or a dangling escape prefix, a
61
+ * parse error has occurred. Every character for that segment is taken
62
+ * literally in this event.
63
+ *
64
+ * Limitations:
65
+ * - A negative group like `!(foo|bar)` will wrongly be converted to a negative
66
+ * look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
67
+ * fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
68
+ * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
69
+ * the group occurs not nested at the end of the segment. */
70
+ function globToRegExp(glob, options = {}) {
71
+ return (0, glob_to_reg_exp_js_1._globToRegExp)(constants, glob, options);
72
+ }
73
+ exports.globToRegExp = globToRegExp;
@@ -0,0 +1 @@
1
+ export { isGlob } from "../is_glob.js";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.isGlob = void 0;
6
+ var is_glob_js_1 = require("../is_glob.js");
7
+ Object.defineProperty(exports, "isGlob", { enumerable: true, get: function () { return is_glob_js_1.isGlob; } });
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function joinGlobs(globs: string[], { extended, globstar }?: GlobOptions): string;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.joinGlobs = void 0;
6
+ const join_js_1 = require("./join.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ const normalize_glob_js_1 = require("./normalize_glob.js");
9
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
10
+ function joinGlobs(globs, { extended = true, globstar = false } = {}) {
11
+ if (!globstar || globs.length === 0) {
12
+ return (0, join_js_1.join)(...globs);
13
+ }
14
+ if (globs.length === 0)
15
+ return ".";
16
+ let joined;
17
+ for (const glob of globs) {
18
+ const path = glob;
19
+ if (path.length > 0) {
20
+ if (!joined)
21
+ joined = path;
22
+ else
23
+ joined += `${separator_js_1.SEP}${path}`;
24
+ }
25
+ }
26
+ if (!joined)
27
+ return ".";
28
+ return (0, normalize_glob_js_1.normalizeGlob)(joined, { extended, globstar });
29
+ }
30
+ exports.joinGlobs = joinGlobs;
@@ -34,4 +34,7 @@ export * from "./to_namespaced_path.js";
34
34
  export * from "./common.js";
35
35
  export * from "./separator.js";
36
36
  export * from "../_interface.js";
37
- export * from "../glob.js";
37
+ export * from "./glob_to_regexp.js";
38
+ export * from "./is_glob.js";
39
+ export * from "./join_globs.js";
40
+ export * from "./normalize_glob.js";
@@ -55,4 +55,7 @@ __exportStar(require("./to_namespaced_path.js"), exports);
55
55
  __exportStar(require("./common.js"), exports);
56
56
  __exportStar(require("./separator.js"), exports);
57
57
  __exportStar(require("../_interface.js"), exports);
58
- __exportStar(require("../glob.js"), exports);
58
+ __exportStar(require("./glob_to_regexp.js"), exports);
59
+ __exportStar(require("./is_glob.js"), exports);
60
+ __exportStar(require("./join_globs.js"), exports);
61
+ __exportStar(require("./normalize_glob.js"), exports);
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function normalizeGlob(glob: string, { globstar }?: GlobOptions): string;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.normalizeGlob = void 0;
6
+ const normalize_js_1 = require("./normalize.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
9
+ function normalizeGlob(glob, { globstar = false } = {}) {
10
+ if (glob.match(/\0/g)) {
11
+ throw new Error(`Glob contains invalid characters: "${glob}"`);
12
+ }
13
+ if (!globstar) {
14
+ return (0, normalize_js_1.normalize)(glob);
15
+ }
16
+ const s = separator_js_1.SEP_PATTERN.source;
17
+ const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g");
18
+ return (0, normalize_js_1.normalize)(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
19
+ }
20
+ exports.normalizeGlob = normalizeGlob;
@@ -1,5 +1,4 @@
1
- import { GlobOptions, GlobToRegExpOptions } from "../_common/glob_to_reg_exp.js";
2
- export { isGlob } from "../_common/is_glob.js";
1
+ import { GlobToRegExpOptions } from "../_common/glob_to_reg_exp.js";
3
2
  /** Convert a glob string to a regular expression.
4
3
  *
5
4
  * Tries to match bash glob expansion as closely as possible.
@@ -56,7 +55,3 @@ export { isGlob } from "../_common/is_glob.js";
56
55
  * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
57
56
  * the group occurs not nested at the end of the segment. */
58
57
  export declare function globToRegExp(glob: string, options?: GlobToRegExpOptions): RegExp;
59
- /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
60
- export declare function normalizeGlob(glob: string, { globstar }?: GlobOptions): string;
61
- /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
62
- export declare function joinGlobs(globs: string[], { extended, globstar }?: GlobOptions): string;
@@ -0,0 +1,73 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.globToRegExp = void 0;
6
+ const glob_to_reg_exp_js_1 = require("../_common/glob_to_reg_exp.js");
7
+ const constants = {
8
+ sep: "(?:\\\\|/)+",
9
+ sepMaybe: "(?:\\\\|/)*",
10
+ seps: ["\\", "/"],
11
+ globstar: "(?:[^\\\\/]*(?:\\\\|/|$)+)*",
12
+ wildcard: "[^\\\\/]*",
13
+ escapePrefix: "`",
14
+ };
15
+ /** Convert a glob string to a regular expression.
16
+ *
17
+ * Tries to match bash glob expansion as closely as possible.
18
+ *
19
+ * Basic glob syntax:
20
+ * - `*` - Matches everything without leaving the path segment.
21
+ * - `?` - Matches any single character.
22
+ * - `{foo,bar}` - Matches `foo` or `bar`.
23
+ * - `[abcd]` - Matches `a`, `b`, `c` or `d`.
24
+ * - `[a-d]` - Matches `a`, `b`, `c` or `d`.
25
+ * - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
26
+ * - `[[:<class>:]]` - Matches any character belonging to `<class>`.
27
+ * - `[[:alnum:]]` - Matches any digit or letter.
28
+ * - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
29
+ * - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
30
+ * for a complete list of supported character classes.
31
+ * - `\` - Escapes the next character for an `os` other than `"windows"`.
32
+ * - \` - Escapes the next character for `os` set to `"windows"`.
33
+ * - `/` - Path separator.
34
+ * - `\` - Additional path separator only for `os` set to `"windows"`.
35
+ *
36
+ * Extended syntax:
37
+ * - Requires `{ extended: true }`.
38
+ * - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
39
+ * - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
40
+ * - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
41
+ * - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
42
+ * - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
43
+ * - See https://www.linuxjournal.com/content/bash-extended-globbing.
44
+ *
45
+ * Globstar syntax:
46
+ * - Requires `{ globstar: true }`.
47
+ * - `**` - Matches any number of any path segments.
48
+ * - Must comprise its entire path segment in the provided glob.
49
+ * - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
50
+ *
51
+ * Note the following properties:
52
+ * - The generated `RegExp` is anchored at both start and end.
53
+ * - Repeating and trailing separators are tolerated. Trailing separators in the
54
+ * provided glob have no meaning and are discarded.
55
+ * - Absolute globs will only match absolute paths, etc.
56
+ * - Empty globs will match nothing.
57
+ * - Any special glob syntax must be contained to one path segment. For example,
58
+ * `?(foo|bar/baz)` is invalid. The separator will take precedence and the
59
+ * first segment ends with an unclosed group.
60
+ * - If a path segment ends with unclosed groups or a dangling escape prefix, a
61
+ * parse error has occurred. Every character for that segment is taken
62
+ * literally in this event.
63
+ *
64
+ * Limitations:
65
+ * - A negative group like `!(foo|bar)` will wrongly be converted to a negative
66
+ * look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
67
+ * fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
68
+ * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
69
+ * the group occurs not nested at the end of the segment. */
70
+ function globToRegExp(glob, options = {}) {
71
+ return (0, glob_to_reg_exp_js_1._globToRegExp)(constants, glob, options);
72
+ }
73
+ exports.globToRegExp = globToRegExp;
@@ -0,0 +1 @@
1
+ export { isGlob } from "../is_glob.js";
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.isGlob = void 0;
6
+ var is_glob_js_1 = require("../is_glob.js");
7
+ Object.defineProperty(exports, "isGlob", { enumerable: true, get: function () { return is_glob_js_1.isGlob; } });
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function joinGlobs(globs: string[], { extended, globstar }?: GlobOptions): string;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.joinGlobs = void 0;
6
+ const join_js_1 = require("./join.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ const normalize_glob_js_1 = require("./normalize_glob.js");
9
+ /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
10
+ function joinGlobs(globs, { extended = true, globstar = false } = {}) {
11
+ if (!globstar || globs.length === 0) {
12
+ return (0, join_js_1.join)(...globs);
13
+ }
14
+ if (globs.length === 0)
15
+ return ".";
16
+ let joined;
17
+ for (const glob of globs) {
18
+ const path = glob;
19
+ if (path.length > 0) {
20
+ if (!joined)
21
+ joined = path;
22
+ else
23
+ joined += `${separator_js_1.SEP}${path}`;
24
+ }
25
+ }
26
+ if (!joined)
27
+ return ".";
28
+ return (0, normalize_glob_js_1.normalizeGlob)(joined, { extended, globstar });
29
+ }
30
+ exports.joinGlobs = joinGlobs;
@@ -34,4 +34,7 @@ export * from "./to_namespaced_path.js";
34
34
  export * from "./common.js";
35
35
  export * from "./separator.js";
36
36
  export * from "../_interface.js";
37
- export * from "../glob.js";
37
+ export * from "./glob_to_regexp.js";
38
+ export * from "./is_glob.js";
39
+ export * from "./join_globs.js";
40
+ export * from "./normalize_glob.js";
@@ -55,4 +55,7 @@ __exportStar(require("./to_namespaced_path.js"), exports);
55
55
  __exportStar(require("./common.js"), exports);
56
56
  __exportStar(require("./separator.js"), exports);
57
57
  __exportStar(require("../_interface.js"), exports);
58
- __exportStar(require("../glob.js"), exports);
58
+ __exportStar(require("./glob_to_regexp.js"), exports);
59
+ __exportStar(require("./is_glob.js"), exports);
60
+ __exportStar(require("./join_globs.js"), exports);
61
+ __exportStar(require("./normalize_glob.js"), exports);
@@ -0,0 +1,3 @@
1
+ import { GlobOptions } from "../_common/glob_to_reg_exp.js";
2
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
3
+ export declare function normalizeGlob(glob: string, { globstar }?: GlobOptions): string;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
3
+ // This module is browser compatible.
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.normalizeGlob = void 0;
6
+ const normalize_js_1 = require("./normalize.js");
7
+ const separator_js_1 = require("./separator.js");
8
+ /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
9
+ function normalizeGlob(glob, { globstar = false } = {}) {
10
+ if (glob.match(/\0/g)) {
11
+ throw new Error(`Glob contains invalid characters: "${glob}"`);
12
+ }
13
+ if (!globstar) {
14
+ return (0, normalize_js_1.normalize)(glob);
15
+ }
16
+ const s = separator_js_1.SEP_PATTERN.source;
17
+ const badParentPattern = new RegExp(`(?<=(${s}|^)\\*\\*${s})\\.\\.(?=${s}|$)`, "g");
18
+ return (0, normalize_js_1.normalize)(glob.replace(badParentPattern, "\0")).replace(/\0/g, "..");
19
+ }
20
+ exports.normalizeGlob = normalizeGlob;
package/script/deps.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * as path from "./deps/deno.land/std@0.205.0/path/mod.js";
2
- export * as html from "./deps/deno.land/std@0.205.0/html/mod.js";
1
+ export * as path from "./deps/deno.land/std@0.208.0/path/mod.js";
2
+ export * as html from "./deps/deno.land/std@0.208.0/html/mod.js";
package/script/deps.js CHANGED
@@ -24,5 +24,5 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.html = exports.path = void 0;
27
- exports.path = __importStar(require("./deps/deno.land/std@0.205.0/path/mod.js"));
28
- exports.html = __importStar(require("./deps/deno.land/std@0.205.0/html/mod.js"));
27
+ exports.path = __importStar(require("./deps/deno.land/std@0.208.0/path/mod.js"));
28
+ exports.html = __importStar(require("./deps/deno.land/std@0.208.0/html/mod.js"));
package/script/mod.js CHANGED
@@ -48,8 +48,8 @@ function default_1(options = {}) {
48
48
  const env = new environment_js_1.Environment({
49
49
  loader,
50
50
  dataVarname: options.dataVarname || "it",
51
- autoescape: options.autoescape || false,
52
- useWith: options.useWith || true,
51
+ autoescape: options.autoescape ?? false,
52
+ useWith: options.useWith ?? true,
53
53
  });
54
54
  // Register basic plugins
55
55
  env.use((0, if_js_1.default)());
@@ -1,78 +0,0 @@
1
- // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
2
- // This module is browser compatible.
3
- import { isWindows } from "./_os.js";
4
- import { globToRegExp as posixGlobToRegExp, joinGlobs as posixJoinGlobs, normalizeGlob as posixNormalizeGlob, } from "./posix/glob.js";
5
- import { globToRegExp as windowsGlobToRegExp, joinGlobs as windowsJoinGlobs, normalizeGlob as windowsNormalizeGlob, } from "./windows/glob.js";
6
- export { isGlob } from "./_common/is_glob.js";
7
- /** Convert a glob string to a regular expression.
8
- *
9
- * Tries to match bash glob expansion as closely as possible.
10
- *
11
- * Basic glob syntax:
12
- * - `*` - Matches everything without leaving the path segment.
13
- * - `?` - Matches any single character.
14
- * - `{foo,bar}` - Matches `foo` or `bar`.
15
- * - `[abcd]` - Matches `a`, `b`, `c` or `d`.
16
- * - `[a-d]` - Matches `a`, `b`, `c` or `d`.
17
- * - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
18
- * - `[[:<class>:]]` - Matches any character belonging to `<class>`.
19
- * - `[[:alnum:]]` - Matches any digit or letter.
20
- * - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
21
- * - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
22
- * for a complete list of supported character classes.
23
- * - `\` - Escapes the next character for an `os` other than `"windows"`.
24
- * - \` - Escapes the next character for `os` set to `"windows"`.
25
- * - `/` - Path separator.
26
- * - `\` - Additional path separator only for `os` set to `"windows"`.
27
- *
28
- * Extended syntax:
29
- * - Requires `{ extended: true }`.
30
- * - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
31
- * - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
32
- * - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
33
- * - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
34
- * - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
35
- * - See https://www.linuxjournal.com/content/bash-extended-globbing.
36
- *
37
- * Globstar syntax:
38
- * - Requires `{ globstar: true }`.
39
- * - `**` - Matches any number of any path segments.
40
- * - Must comprise its entire path segment in the provided glob.
41
- * - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
42
- *
43
- * Note the following properties:
44
- * - The generated `RegExp` is anchored at both start and end.
45
- * - Repeating and trailing separators are tolerated. Trailing separators in the
46
- * provided glob have no meaning and are discarded.
47
- * - Absolute globs will only match absolute paths, etc.
48
- * - Empty globs will match nothing.
49
- * - Any special glob syntax must be contained to one path segment. For example,
50
- * `?(foo|bar/baz)` is invalid. The separator will take precedence and the
51
- * first segment ends with an unclosed group.
52
- * - If a path segment ends with unclosed groups or a dangling escape prefix, a
53
- * parse error has occurred. Every character for that segment is taken
54
- * literally in this event.
55
- *
56
- * Limitations:
57
- * - A negative group like `!(foo|bar)` will wrongly be converted to a negative
58
- * look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
59
- * fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
60
- * `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
61
- * the group occurs not nested at the end of the segment. */
62
- export function globToRegExp(glob, options = {}) {
63
- return options.os === "windows" || (!options.os && isWindows)
64
- ? windowsGlobToRegExp(glob, options)
65
- : posixGlobToRegExp(glob, options);
66
- }
67
- /** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */
68
- export function normalizeGlob(glob, options = {}) {
69
- return isWindows
70
- ? windowsNormalizeGlob(glob, options)
71
- : posixNormalizeGlob(glob, options);
72
- }
73
- /** Like join(), but doesn't collapse "**\/.." when `globstar` is true. */
74
- export function joinGlobs(globs, options = {}) {
75
- return isWindows
76
- ? windowsJoinGlobs(globs, options)
77
- : posixJoinGlobs(globs, options);
78
- }