ventojs 0.7.1 → 0.7.3

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 (145) hide show
  1. package/esm/_dnt.shims.js +0 -1
  2. package/esm/deps/deno.land/std@0.201.0/assert/assert.d.ts +2 -0
  3. package/esm/deps/deno.land/std@0.201.0/assert/assert.js +8 -0
  4. package/esm/deps/deno.land/std@0.201.0/assert/assertion_error.d.ts +4 -0
  5. package/esm/deps/deno.land/std@0.201.0/assert/assertion_error.js +7 -0
  6. package/esm/deps/deno.land/std@0.201.0/path/_basename.d.ts +16 -0
  7. package/esm/deps/deno.land/std@0.201.0/path/_basename.js +78 -0
  8. package/esm/deps/deno.land/std@0.201.0/path/_dirname.d.ts +10 -0
  9. package/esm/deps/deno.land/std@0.201.0/path/_dirname.js +132 -0
  10. package/esm/deps/deno.land/std@0.201.0/path/_extname.d.ts +12 -0
  11. package/esm/deps/deno.land/std@0.201.0/path/_extname.js +121 -0
  12. package/esm/deps/deno.land/std@0.201.0/path/_format.d.ts +11 -0
  13. package/esm/deps/deno.land/std@0.201.0/path/_format.js +35 -0
  14. package/esm/deps/deno.land/std@0.201.0/path/_from_file_url.d.ts +25 -0
  15. package/esm/deps/deno.land/std@0.201.0/path/_from_file_url.js +46 -0
  16. package/esm/deps/deno.land/std@0.201.0/path/_is_absolute.d.ts +10 -0
  17. package/esm/deps/deno.land/std@0.201.0/path/_is_absolute.js +34 -0
  18. package/esm/deps/deno.land/std@0.201.0/path/_join.d.ts +10 -0
  19. package/esm/deps/deno.land/std@0.201.0/path/_join.js +93 -0
  20. package/esm/deps/deno.land/std@0.201.0/path/_normalize.d.ts +14 -0
  21. package/esm/deps/deno.land/std@0.201.0/path/_normalize.js +153 -0
  22. package/esm/deps/deno.land/std@0.201.0/path/_parse.d.ts +11 -0
  23. package/esm/deps/deno.land/std@0.201.0/path/_parse.js +250 -0
  24. package/esm/deps/deno.land/std@0.201.0/path/_relative.d.ts +19 -0
  25. package/esm/deps/deno.land/std@0.201.0/path/_relative.js +216 -0
  26. package/esm/deps/deno.land/std@0.201.0/path/_resolve.d.ts +10 -0
  27. package/esm/deps/deno.land/std@0.201.0/path/_resolve.js +183 -0
  28. package/esm/deps/deno.land/std@0.201.0/path/_to_file_url.d.ts +25 -0
  29. package/esm/deps/deno.land/std@0.201.0/path/_to_file_url.js +61 -0
  30. package/esm/deps/deno.land/std@0.201.0/path/_to_namespaced_path.d.ts +10 -0
  31. package/esm/deps/deno.land/std@0.201.0/path/_to_namespaced_path.js +46 -0
  32. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_util.d.ts +0 -5
  33. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_util.js +0 -54
  34. package/esm/deps/deno.land/std@0.201.0/path/basename.d.ts +8 -0
  35. package/esm/deps/deno.land/std@0.201.0/path/basename.js +16 -0
  36. package/esm/deps/deno.land/std@0.201.0/path/dirname.d.ts +5 -0
  37. package/esm/deps/deno.land/std@0.201.0/path/dirname.js +11 -0
  38. package/esm/deps/deno.land/std@0.201.0/path/extname.d.ts +6 -0
  39. package/esm/deps/deno.land/std@0.201.0/path/extname.js +12 -0
  40. package/esm/deps/deno.land/std@0.201.0/path/format.d.ts +6 -0
  41. package/esm/deps/deno.land/std@0.201.0/path/format.js +11 -0
  42. package/esm/deps/deno.land/std@0.201.0/path/from_file_url.d.ts +18 -0
  43. package/esm/deps/deno.land/std@0.201.0/path/from_file_url.js +23 -0
  44. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/glob.d.ts +1 -1
  45. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/glob.js +50 -50
  46. package/esm/deps/deno.land/std@0.201.0/path/is_absolute.d.ts +5 -0
  47. package/esm/deps/deno.land/std@0.201.0/path/is_absolute.js +11 -0
  48. package/esm/deps/deno.land/std@0.201.0/path/join.d.ts +5 -0
  49. package/esm/deps/deno.land/std@0.201.0/path/join.js +11 -0
  50. package/esm/deps/deno.land/std@0.201.0/path/mod.d.ts +22 -0
  51. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/mod.js +17 -4
  52. package/esm/deps/deno.land/std@0.201.0/path/normalize.d.ts +7 -0
  53. package/esm/deps/deno.land/std@0.201.0/path/normalize.js +13 -0
  54. package/esm/deps/deno.land/std@0.201.0/path/parse.d.ts +6 -0
  55. package/esm/deps/deno.land/std@0.201.0/path/parse.js +11 -0
  56. package/esm/deps/deno.land/std@0.201.0/path/posix.d.ts +15 -0
  57. package/esm/deps/deno.land/std@0.201.0/path/posix.js +19 -0
  58. package/esm/deps/deno.land/std@0.201.0/path/relative.d.ts +12 -0
  59. package/esm/deps/deno.land/std@0.201.0/path/relative.js +18 -0
  60. package/esm/deps/deno.land/std@0.201.0/path/resolve.d.ts +5 -0
  61. package/esm/deps/deno.land/std@0.201.0/path/resolve.js +13 -0
  62. package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/separator.js +1 -1
  63. package/esm/deps/deno.land/std@0.201.0/path/to_file_url.d.ts +18 -0
  64. package/esm/deps/deno.land/std@0.201.0/path/to_file_url.js +23 -0
  65. package/esm/deps/deno.land/std@0.201.0/path/to_namespaced_path.d.ts +5 -0
  66. package/esm/deps/deno.land/std@0.201.0/path/to_namespaced_path.js +13 -0
  67. package/esm/deps/deno.land/std@0.201.0/path/win32.d.ts +15 -0
  68. package/esm/deps/deno.land/std@0.201.0/path/win32.js +19 -0
  69. package/esm/deps.d.ts +1 -1
  70. package/esm/deps.js +1 -1
  71. package/esm/src/environment.js +1 -1
  72. package/package.json +1 -1
  73. package/esm/_dnt.test_polyfills.d.ts +0 -11
  74. package/esm/_dnt.test_shims.d.ts +0 -5
  75. package/esm/deps/deno.land/std@0.178.0/_util/asserts.d.ts +0 -10
  76. package/esm/deps/deno.land/std@0.178.0/_util/asserts.js +0 -21
  77. package/esm/deps/deno.land/std@0.178.0/path/mod.d.ts +0 -9
  78. package/esm/deps/deno.land/std@0.178.0/path/posix.d.ts +0 -86
  79. package/esm/deps/deno.land/std@0.178.0/path/posix.js +0 -442
  80. package/esm/deps/deno.land/std@0.178.0/path/win32.d.ts +0 -91
  81. package/esm/deps/deno.land/std@0.178.0/path/win32.js +0 -909
  82. package/esm/deps/deno.land/std@0.190.0/_util/asserts.d.ts +0 -10
  83. package/esm/deps/deno.land/std@0.190.0/bytes/copy.d.ts +0 -27
  84. package/esm/deps/deno.land/std@0.190.0/fmt/colors.d.ts +0 -270
  85. package/esm/deps/deno.land/std@0.190.0/front_matter/mod.d.ts +0 -78
  86. package/esm/deps/deno.land/std@0.190.0/front_matter/yaml.d.ts +0 -4
  87. package/esm/deps/deno.land/std@0.190.0/io/buffer.d.ts +0 -81
  88. package/esm/deps/deno.land/std@0.190.0/testing/_diff.d.ts +0 -26
  89. package/esm/deps/deno.land/std@0.190.0/testing/_format.d.ts +0 -1
  90. package/esm/deps/deno.land/std@0.190.0/testing/asserts.d.ts +0 -284
  91. package/esm/deps/deno.land/std@0.190.0/yaml/_error.d.ts +0 -6
  92. package/esm/deps/deno.land/std@0.190.0/yaml/_loader/loader.d.ts +0 -4
  93. package/esm/deps/deno.land/std@0.190.0/yaml/_loader/loader_state.d.ts +0 -43
  94. package/esm/deps/deno.land/std@0.190.0/yaml/_mark.d.ts +0 -10
  95. package/esm/deps/deno.land/std@0.190.0/yaml/_state.d.ts +0 -5
  96. package/esm/deps/deno.land/std@0.190.0/yaml/_type/binary.d.ts +0 -2
  97. package/esm/deps/deno.land/std@0.190.0/yaml/_type/bool.d.ts +0 -2
  98. package/esm/deps/deno.land/std@0.190.0/yaml/_type/float.d.ts +0 -2
  99. package/esm/deps/deno.land/std@0.190.0/yaml/_type/function.d.ts +0 -2
  100. package/esm/deps/deno.land/std@0.190.0/yaml/_type/int.d.ts +0 -2
  101. package/esm/deps/deno.land/std@0.190.0/yaml/_type/map.d.ts +0 -2
  102. package/esm/deps/deno.land/std@0.190.0/yaml/_type/merge.d.ts +0 -2
  103. package/esm/deps/deno.land/std@0.190.0/yaml/_type/mod.d.ts +0 -16
  104. package/esm/deps/deno.land/std@0.190.0/yaml/_type/nil.d.ts +0 -2
  105. package/esm/deps/deno.land/std@0.190.0/yaml/_type/omap.d.ts +0 -2
  106. package/esm/deps/deno.land/std@0.190.0/yaml/_type/pairs.d.ts +0 -2
  107. package/esm/deps/deno.land/std@0.190.0/yaml/_type/regexp.d.ts +0 -2
  108. package/esm/deps/deno.land/std@0.190.0/yaml/_type/seq.d.ts +0 -2
  109. package/esm/deps/deno.land/std@0.190.0/yaml/_type/set.d.ts +0 -2
  110. package/esm/deps/deno.land/std@0.190.0/yaml/_type/str.d.ts +0 -2
  111. package/esm/deps/deno.land/std@0.190.0/yaml/_type/timestamp.d.ts +0 -2
  112. package/esm/deps/deno.land/std@0.190.0/yaml/_type/undefined.d.ts +0 -2
  113. package/esm/deps/deno.land/std@0.190.0/yaml/_utils.d.ts +0 -19
  114. package/esm/deps/deno.land/std@0.190.0/yaml/parse.d.ts +0 -35
  115. package/esm/deps/deno.land/std@0.190.0/yaml/schema/core.d.ts +0 -2
  116. package/esm/deps/deno.land/std@0.190.0/yaml/schema/default.d.ts +0 -2
  117. package/esm/deps/deno.land/std@0.190.0/yaml/schema/extended.d.ts +0 -30
  118. package/esm/deps/deno.land/std@0.190.0/yaml/schema/failsafe.d.ts +0 -2
  119. package/esm/deps/deno.land/std@0.190.0/yaml/schema/json.d.ts +0 -2
  120. package/esm/deps/deno.land/std@0.190.0/yaml/schema/mod.d.ts +0 -5
  121. package/esm/deps/deno.land/std@0.190.0/yaml/schema.d.ts +0 -22
  122. package/esm/deps/deno.land/std@0.190.0/yaml/type.d.ts +0 -28
  123. package/esm/test/comment.test.d.ts +0 -1
  124. package/esm/test/escape.test.d.ts +0 -1
  125. package/esm/test/for.test.d.ts +0 -1
  126. package/esm/test/function.test.d.ts +0 -1
  127. package/esm/test/if.test.d.ts +0 -1
  128. package/esm/test/import.test.d.ts +0 -1
  129. package/esm/test/include.test.d.ts +0 -1
  130. package/esm/test/js.test.d.ts +0 -1
  131. package/esm/test/layout.test.d.ts +0 -1
  132. package/esm/test/print.test.d.ts +0 -1
  133. package/esm/test/raw.test.d.ts +0 -1
  134. package/esm/test/set.test.d.ts +0 -1
  135. package/esm/test/tokenizer.test.d.ts +0 -1
  136. package/esm/test/utils.d.ts +0 -24
  137. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_constants.d.ts +0 -0
  138. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_constants.js +0 -0
  139. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_interface.d.ts +0 -0
  140. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/_interface.js +0 -0
  141. /package/esm/deps/deno.land/{std@0.178.0/_util/os.d.ts → std@0.201.0/path/_os.d.ts} +0 -0
  142. /package/esm/deps/deno.land/{std@0.178.0/_util/os.js → std@0.201.0/path/_os.js} +0 -0
  143. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/common.d.ts +0 -0
  144. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/common.js +0 -0
  145. /package/esm/deps/deno.land/{std@0.178.0 → std@0.201.0}/path/separator.d.ts +0 -0
@@ -1,24 +0,0 @@
1
- import type { Environment, Filter } from "../src/environment.js";
2
- import type { Loader } from "../src/loader.js";
3
- export interface TestOptions {
4
- template: string;
5
- data?: Record<string, unknown>;
6
- filters?: Record<string, Filter>;
7
- expected: string;
8
- init?: (env: Environment) => void;
9
- includes?: Record<string, string>;
10
- }
11
- export declare function test(options: TestOptions): Promise<void>;
12
- export declare function testSync(options: TestOptions): void;
13
- export declare class FileLoader implements Loader {
14
- files: Record<string, string>;
15
- constructor(files: Record<string, string>);
16
- load(file: string): {
17
- source: string;
18
- data: Record<string, unknown>;
19
- } | {
20
- source: string;
21
- data?: undefined;
22
- };
23
- resolve(from: string, file: string): string;
24
- }