yaml 1.10.1 → 2.0.0-10

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 (275) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +57 -41
  3. package/browser/dist/compose/compose-collection.js +59 -0
  4. package/browser/dist/compose/compose-doc.js +40 -0
  5. package/browser/dist/compose/compose-node.js +81 -0
  6. package/browser/dist/compose/compose-scalar.js +81 -0
  7. package/browser/dist/compose/composer.js +219 -0
  8. package/browser/dist/compose/resolve-block-map.js +107 -0
  9. package/browser/dist/compose/resolve-block-scalar.js +185 -0
  10. package/browser/dist/compose/resolve-block-seq.js +45 -0
  11. package/browser/dist/compose/resolve-end.js +37 -0
  12. package/browser/dist/compose/resolve-flow-collection.js +200 -0
  13. package/browser/dist/compose/resolve-flow-scalar.js +223 -0
  14. package/browser/dist/compose/resolve-props.js +128 -0
  15. package/browser/dist/compose/util-contains-newline.js +34 -0
  16. package/browser/dist/compose/util-empty-scalar-position.js +27 -0
  17. package/browser/dist/compose/util-flow-indent-check.js +15 -0
  18. package/browser/dist/compose/util-map-includes.js +17 -0
  19. package/browser/dist/doc/Document.js +321 -0
  20. package/browser/dist/doc/anchors.js +72 -0
  21. package/browser/dist/doc/applyReviver.js +54 -0
  22. package/browser/dist/doc/createNode.js +84 -0
  23. package/browser/dist/doc/directives.js +166 -0
  24. package/browser/dist/errors.js +57 -0
  25. package/browser/dist/index.js +18 -1002
  26. package/browser/dist/log.js +14 -0
  27. package/browser/dist/node_modules/tslib/tslib.es6.js +164 -0
  28. package/browser/dist/nodes/Alias.js +94 -0
  29. package/browser/dist/nodes/Collection.js +146 -0
  30. package/browser/dist/nodes/Node.js +48 -0
  31. package/browser/dist/nodes/Pair.js +36 -0
  32. package/browser/dist/nodes/Scalar.js +23 -0
  33. package/browser/dist/nodes/YAMLMap.js +116 -0
  34. package/browser/dist/nodes/YAMLSeq.js +105 -0
  35. package/browser/dist/nodes/addPairToJSMap.js +104 -0
  36. package/browser/dist/nodes/toJS.js +35 -0
  37. package/browser/dist/options.js +18 -0
  38. package/browser/dist/parse/cst-scalar.js +215 -0
  39. package/browser/dist/parse/cst-stringify.js +61 -0
  40. package/browser/dist/parse/cst-visit.js +97 -0
  41. package/browser/dist/parse/cst.js +98 -0
  42. package/browser/dist/parse/lexer.js +692 -0
  43. package/browser/dist/parse/line-counter.js +39 -0
  44. package/browser/dist/parse/parser.js +882 -0
  45. package/browser/dist/public-api.js +99 -0
  46. package/browser/dist/schema/Schema.js +34 -0
  47. package/browser/dist/schema/common/map.js +42 -0
  48. package/browser/dist/schema/common/null.js +13 -0
  49. package/browser/dist/schema/common/seq.js +33 -0
  50. package/browser/dist/schema/common/string.js +14 -0
  51. package/browser/dist/schema/core/bool.js +19 -0
  52. package/browser/dist/schema/core/float.js +43 -0
  53. package/browser/dist/schema/core/int.js +38 -0
  54. package/browser/dist/schema/core/schema.js +23 -0
  55. package/browser/dist/schema/json/schema.js +62 -0
  56. package/browser/dist/schema/tags.js +83 -0
  57. package/browser/dist/schema/yaml-1.1/binary.js +66 -0
  58. package/browser/dist/schema/yaml-1.1/bool.js +26 -0
  59. package/browser/dist/schema/yaml-1.1/float.js +46 -0
  60. package/browser/dist/schema/yaml-1.1/int.js +71 -0
  61. package/browser/dist/schema/yaml-1.1/omap.js +73 -0
  62. package/browser/dist/schema/yaml-1.1/pairs.js +77 -0
  63. package/browser/dist/schema/yaml-1.1/schema.js +37 -0
  64. package/browser/dist/schema/yaml-1.1/set.js +87 -0
  65. package/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
  66. package/browser/dist/stringify/foldFlowLines.js +135 -0
  67. package/browser/dist/stringify/stringify.js +124 -0
  68. package/browser/dist/stringify/stringifyCollection.js +152 -0
  69. package/browser/dist/stringify/stringifyComment.js +18 -0
  70. package/browser/dist/stringify/stringifyDocument.js +68 -0
  71. package/browser/dist/stringify/stringifyNumber.js +24 -0
  72. package/browser/dist/stringify/stringifyPair.js +122 -0
  73. package/browser/dist/stringify/stringifyString.js +314 -0
  74. package/browser/dist/util.js +9 -2
  75. package/browser/dist/visit.js +146 -0
  76. package/browser/index.js +5 -1
  77. package/browser/package.json +3 -0
  78. package/dist/compose/compose-collection.d.ts +5 -0
  79. package/dist/compose/compose-collection.js +61 -0
  80. package/dist/compose/compose-doc.d.ts +6 -0
  81. package/dist/compose/compose-doc.js +42 -0
  82. package/dist/compose/compose-node.d.ts +26 -0
  83. package/dist/compose/compose-node.js +84 -0
  84. package/dist/compose/compose-scalar.d.ts +5 -0
  85. package/dist/compose/compose-scalar.js +83 -0
  86. package/dist/compose/composer.d.ts +62 -0
  87. package/dist/compose/composer.js +223 -0
  88. package/dist/compose/resolve-block-map.d.ts +6 -0
  89. package/dist/compose/resolve-block-map.js +109 -0
  90. package/dist/compose/resolve-block-scalar.d.ts +10 -0
  91. package/dist/compose/resolve-block-scalar.js +187 -0
  92. package/dist/compose/resolve-block-seq.d.ts +5 -0
  93. package/dist/compose/resolve-block-seq.js +47 -0
  94. package/dist/compose/resolve-end.d.ts +6 -0
  95. package/dist/compose/resolve-end.js +39 -0
  96. package/dist/compose/resolve-flow-collection.d.ts +6 -0
  97. package/dist/compose/resolve-flow-collection.js +202 -0
  98. package/dist/compose/resolve-flow-scalar.d.ts +10 -0
  99. package/dist/compose/resolve-flow-scalar.js +225 -0
  100. package/dist/compose/resolve-props.d.ts +21 -0
  101. package/dist/compose/resolve-props.js +130 -0
  102. package/dist/compose/util-contains-newline.d.ts +2 -0
  103. package/dist/compose/util-contains-newline.js +36 -0
  104. package/dist/compose/util-empty-scalar-position.d.ts +2 -0
  105. package/dist/compose/util-empty-scalar-position.js +29 -0
  106. package/dist/compose/util-flow-indent-check.d.ts +3 -0
  107. package/dist/compose/util-flow-indent-check.js +17 -0
  108. package/dist/compose/util-map-includes.d.ts +4 -0
  109. package/dist/compose/util-map-includes.js +19 -0
  110. package/dist/doc/Document.d.ts +139 -0
  111. package/dist/doc/Document.js +323 -0
  112. package/dist/doc/anchors.d.ts +24 -0
  113. package/dist/doc/anchors.js +77 -0
  114. package/dist/doc/applyReviver.d.ts +9 -0
  115. package/dist/doc/applyReviver.js +56 -0
  116. package/dist/doc/createNode.d.ts +17 -0
  117. package/dist/doc/createNode.js +86 -0
  118. package/dist/doc/directives.d.ts +47 -0
  119. package/dist/doc/directives.js +168 -0
  120. package/dist/errors.d.ts +21 -0
  121. package/dist/errors.js +62 -0
  122. package/dist/index.d.ts +19 -0
  123. package/dist/index.js +49 -77
  124. package/dist/log.d.ts +3 -0
  125. package/dist/log.js +17 -0
  126. package/dist/node_modules/tslib/tslib.es6.js +76 -0
  127. package/dist/nodes/Alias.d.ts +28 -0
  128. package/dist/nodes/Alias.js +96 -0
  129. package/dist/nodes/Collection.d.ts +73 -0
  130. package/dist/nodes/Collection.js +150 -0
  131. package/dist/nodes/Node.d.ts +53 -0
  132. package/dist/nodes/Node.js +66 -0
  133. package/dist/nodes/Pair.d.ts +21 -0
  134. package/dist/nodes/Pair.js +39 -0
  135. package/dist/nodes/Scalar.d.ts +42 -0
  136. package/dist/nodes/Scalar.js +26 -0
  137. package/dist/nodes/YAMLMap.d.ts +41 -0
  138. package/dist/nodes/YAMLMap.js +119 -0
  139. package/dist/nodes/YAMLSeq.d.ts +55 -0
  140. package/dist/nodes/YAMLSeq.js +107 -0
  141. package/dist/nodes/addPairToJSMap.d.ts +3 -0
  142. package/dist/nodes/addPairToJSMap.js +106 -0
  143. package/dist/nodes/toJS.d.ts +30 -0
  144. package/dist/nodes/toJS.js +37 -0
  145. package/dist/options.d.ts +338 -0
  146. package/dist/options.js +20 -0
  147. package/dist/parse/cst-scalar.d.ts +64 -0
  148. package/dist/parse/cst-scalar.js +219 -0
  149. package/dist/parse/cst-stringify.d.ts +8 -0
  150. package/dist/parse/cst-stringify.js +63 -0
  151. package/dist/parse/cst-visit.d.ts +39 -0
  152. package/dist/parse/cst-visit.js +99 -0
  153. package/dist/parse/cst.d.ts +106 -0
  154. package/dist/parse/cst.js +112 -0
  155. package/dist/parse/lexer.d.ts +87 -0
  156. package/dist/parse/lexer.js +694 -0
  157. package/dist/parse/line-counter.d.ts +22 -0
  158. package/dist/parse/line-counter.js +41 -0
  159. package/dist/parse/parser.d.ts +84 -0
  160. package/dist/parse/parser.js +886 -0
  161. package/dist/public-api.d.ts +43 -0
  162. package/dist/public-api.js +104 -0
  163. package/dist/schema/Schema.d.ts +18 -0
  164. package/dist/schema/Schema.js +36 -0
  165. package/dist/schema/common/map.d.ts +2 -0
  166. package/dist/schema/common/map.js +44 -0
  167. package/dist/schema/common/null.d.ts +4 -0
  168. package/dist/schema/common/null.js +15 -0
  169. package/dist/schema/common/seq.d.ts +2 -0
  170. package/dist/schema/common/seq.js +35 -0
  171. package/dist/schema/common/string.d.ts +2 -0
  172. package/dist/schema/common/string.js +16 -0
  173. package/dist/schema/core/bool.d.ts +4 -0
  174. package/dist/schema/core/bool.js +21 -0
  175. package/dist/schema/core/float.d.ts +4 -0
  176. package/dist/schema/core/float.js +47 -0
  177. package/dist/schema/core/int.d.ts +4 -0
  178. package/dist/schema/core/int.js +42 -0
  179. package/dist/schema/core/schema.d.ts +1 -0
  180. package/dist/schema/core/schema.js +25 -0
  181. package/dist/schema/json/schema.d.ts +2 -0
  182. package/dist/schema/json/schema.js +64 -0
  183. package/dist/schema/tags.d.ts +40 -0
  184. package/dist/schema/tags.js +86 -0
  185. package/dist/schema/types.d.ts +82 -0
  186. package/dist/schema/yaml-1.1/binary.d.ts +2 -0
  187. package/dist/schema/yaml-1.1/binary.js +68 -0
  188. package/dist/schema/yaml-1.1/bool.d.ts +7 -0
  189. package/dist/schema/yaml-1.1/bool.js +29 -0
  190. package/dist/schema/yaml-1.1/float.d.ts +4 -0
  191. package/dist/schema/yaml-1.1/float.js +50 -0
  192. package/dist/schema/yaml-1.1/int.d.ts +5 -0
  193. package/dist/schema/yaml-1.1/int.js +76 -0
  194. package/dist/schema/yaml-1.1/omap.d.ts +21 -0
  195. package/dist/schema/yaml-1.1/omap.js +76 -0
  196. package/dist/schema/yaml-1.1/pairs.d.ts +10 -0
  197. package/dist/schema/yaml-1.1/pairs.js +81 -0
  198. package/dist/schema/yaml-1.1/schema.d.ts +1 -0
  199. package/dist/schema/yaml-1.1/schema.js +39 -0
  200. package/dist/schema/yaml-1.1/set.d.ts +22 -0
  201. package/dist/schema/yaml-1.1/set.js +90 -0
  202. package/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
  203. package/dist/schema/yaml-1.1/timestamp.js +105 -0
  204. package/dist/stringify/foldFlowLines.d.ts +34 -0
  205. package/dist/stringify/foldFlowLines.js +140 -0
  206. package/dist/stringify/stringify.d.ts +20 -0
  207. package/dist/stringify/stringify.js +127 -0
  208. package/dist/stringify/stringifyCollection.d.ts +17 -0
  209. package/dist/stringify/stringifyCollection.js +154 -0
  210. package/dist/stringify/stringifyComment.d.ts +10 -0
  211. package/dist/stringify/stringifyComment.js +22 -0
  212. package/dist/stringify/stringifyDocument.d.ts +3 -0
  213. package/dist/stringify/stringifyDocument.js +70 -0
  214. package/dist/stringify/stringifyNumber.d.ts +2 -0
  215. package/dist/stringify/stringifyNumber.js +26 -0
  216. package/dist/stringify/stringifyPair.d.ts +3 -0
  217. package/dist/stringify/stringifyPair.js +124 -0
  218. package/dist/stringify/stringifyString.d.ts +3 -0
  219. package/dist/stringify/stringifyString.js +316 -0
  220. package/dist/test-events.d.ts +4 -0
  221. package/dist/test-events.js +126 -152
  222. package/dist/util.d.ts +9 -0
  223. package/dist/util.js +19 -14
  224. package/dist/visit.d.ts +63 -0
  225. package/dist/visit.js +148 -0
  226. package/package.json +43 -55
  227. package/util.d.ts +3 -86
  228. package/util.js +2 -16
  229. package/browser/dist/PlainValue-b8036b75.js +0 -1275
  230. package/browser/dist/Schema-e94716c8.js +0 -682
  231. package/browser/dist/legacy-exports.js +0 -3
  232. package/browser/dist/package.json +0 -1
  233. package/browser/dist/parse-cst.js +0 -1904
  234. package/browser/dist/resolveSeq-492ab440.js +0 -2419
  235. package/browser/dist/types.js +0 -4
  236. package/browser/dist/warnings-df54cb69.js +0 -499
  237. package/browser/map.js +0 -2
  238. package/browser/pair.js +0 -2
  239. package/browser/parse-cst.js +0 -1
  240. package/browser/scalar.js +0 -2
  241. package/browser/schema.js +0 -9
  242. package/browser/seq.js +0 -2
  243. package/browser/types/binary.js +0 -8
  244. package/browser/types/omap.js +0 -3
  245. package/browser/types/pairs.js +0 -3
  246. package/browser/types/set.js +0 -3
  247. package/browser/types/timestamp.js +0 -10
  248. package/browser/types.js +0 -1
  249. package/browser/util.js +0 -1
  250. package/dist/Document-9b4560a1.js +0 -757
  251. package/dist/PlainValue-ec8e588e.js +0 -876
  252. package/dist/Schema-88e323a7.js +0 -525
  253. package/dist/legacy-exports.js +0 -16
  254. package/dist/parse-cst.js +0 -1753
  255. package/dist/resolveSeq-d03cb037.js +0 -2161
  256. package/dist/types.js +0 -23
  257. package/dist/warnings-1000a372.js +0 -416
  258. package/index.d.ts +0 -372
  259. package/index.js +0 -1
  260. package/map.js +0 -2
  261. package/pair.js +0 -2
  262. package/parse-cst.d.ts +0 -191
  263. package/parse-cst.js +0 -1
  264. package/scalar.js +0 -2
  265. package/schema.js +0 -9
  266. package/seq.js +0 -2
  267. package/types/binary.js +0 -8
  268. package/types/omap.js +0 -3
  269. package/types/pairs.js +0 -3
  270. package/types/set.js +0 -3
  271. package/types/timestamp.js +0 -10
  272. package/types.d.ts +0 -407
  273. package/types.js +0 -17
  274. package/types.mjs +0 -17
  275. package/util.mjs +0 -18
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2018 Eemeli Aro <eemeli@gmail.com>
1
+ Copyright Eemeli Aro <eemeli@gmail.com>
2
2
 
3
3
  Permission to use, copy, modify, and/or distribute this software for any purpose
4
4
  with or without fee is hereby granted, provided that the above copyright notice
package/README.md CHANGED
@@ -1,26 +1,37 @@
1
1
  # YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a>
2
2
 
3
- `yaml` is a JavaScript parser and stringifier for [YAML](http://yaml.org/), a human friendly data serialization standard. It supports both parsing and stringifying data using all versions of YAML, along with all common data schemas. As a particularly distinguishing feature, `yaml` fully supports reading and writing comments and blank lines in YAML documents.
3
+ `yaml` is a definitive library for [YAML](http://yaml.org/), the human friendly data serialization standard.
4
+ This library:
4
5
 
5
- The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/). It has no external dependencies and runs on Node.js 6 and later, and in browsers from IE 11 upwards.
6
+ - Supports both YAML 1.1 and YAML 1.2 and all common data schemas,
7
+ - Passes all of the [yaml-test-suite](https://github.com/yaml/yaml-test-suite) tests,
8
+ - Can accept any string as input without throwing, parsing as much YAML out of it as it can, and
9
+ - Supports parsing, modifying, and writing YAML comments and blank lines.
6
10
 
7
- For the purposes of versioning, any changes that break any of the endpoints or APIs documented here will be considered semver-major breaking changes. Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
11
+ The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/).
12
+ It has no external dependencies and runs on Node.js as well as modern browsers.
8
13
 
9
- For more information, see the project's documentation site: [**eemeli.org/yaml/v1**](https://eemeli.org/yaml/v1/)
14
+ For the purposes of versioning, any changes that break any of the documented endpoints or APIs will be considered semver-major breaking changes.
15
+ Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
16
+
17
+ For more information, see the project's documentation site: [**eemeli.org/yaml**](https://eemeli.org/yaml/)
10
18
 
11
19
  To install:
12
20
 
13
21
  ```sh
14
- npm install yaml
22
+ npm install --save-exact yaml@next
15
23
  ```
16
24
 
17
- **Note:** This is `yaml@1`. You may also be interested in the next version, currently available as [`yaml@next`](https://www.npmjs.com/package/yaml/v/next).
25
+ **Note:** These docs are for `yaml@2`. For v1, see the [v1.10.0 tag](https://github.com/eemeli/yaml/tree/v1.10.0) for the source and [eemeli.org/yaml/v1](https://eemeli.org/yaml/v1/) for the documentation.
18
26
 
19
27
  ## API Overview
20
28
 
21
- The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/v1/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the [CST Parser](https://eemeli.org/yaml/#cst-parser). The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third is the closest to YAML source, making it fast, raw, and crude.
29
+ The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the underlying [Lexer/Parser/Composer](https://eemeli.org/yaml/#parsing-yaml).
30
+ The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third lets you get progressively closer to YAML source, if that's your thing.
22
31
 
23
32
  ```js
33
+ import { parse, stringify } from 'yaml'
34
+ // or
24
35
  import YAML from 'yaml'
25
36
  // or
26
37
  const YAML = require('yaml')
@@ -28,38 +39,44 @@ const YAML = require('yaml')
28
39
 
29
40
  ### Parse & Stringify
30
41
 
31
- - [`YAML.parse(str, options): value`](https://eemeli.org/yaml/v1/#yaml-parse)
32
- - [`YAML.stringify(value, options): string`](https://eemeli.org/yaml/v1/#yaml-stringify)
33
-
34
- ### YAML Documents
35
-
36
- - [`YAML.createNode(value, wrapScalars, tag): Node`](https://eemeli.org/yaml/v1/#creating-nodes)
37
- - [`YAML.defaultOptions`](https://eemeli.org/yaml/v1/#options)
38
- - [`YAML.Document`](https://eemeli.org/yaml/v1/#yaml-documents)
39
- - [`constructor(options)`](https://eemeli.org/yaml/v1/#creating-documents)
40
- - [`defaults`](https://eemeli.org/yaml/v1/#options)
41
- - [`#anchors`](https://eemeli.org/yaml/v1/#working-with-anchors)
42
- - [`#contents`](https://eemeli.org/yaml/v1/#content-nodes)
43
- - [`#errors`](https://eemeli.org/yaml/v1/#errors)
44
- - [`YAML.parseAllDocuments(str, options): YAML.Document[]`](https://eemeli.org/yaml/v1/#parsing-documents)
45
- - [`YAML.parseDocument(str, options): YAML.Document`](https://eemeli.org/yaml/v1/#parsing-documents)
46
-
47
- ```js
48
- import { Pair, YAMLMap, YAMLSeq } from 'yaml/types'
49
- ```
50
-
51
- - [`new Pair(key, value)`](https://eemeli.org/yaml/v1/#creating-nodes)
52
- - [`new YAMLMap()`](https://eemeli.org/yaml/v1/#creating-nodes)
53
- - [`new YAMLSeq()`](https://eemeli.org/yaml/v1/#creating-nodes)
54
-
55
- ### CST Parser
56
-
57
- ```js
58
- import parseCST from 'yaml/parse-cst'
59
- ```
60
-
61
- - [`parseCST(str): CSTDocument[]`](https://eemeli.org/yaml/v1/#parsecst)
62
- - [`YAML.parseCST(str): CSTDocument[]`](https://eemeli.org/yaml/v1/#parsecst)
42
+ - [`parse(str, reviver?, options?): value`](https://eemeli.org/yaml/#yaml-parse)
43
+ - [`stringify(value, replacer?, options?): string`](https://eemeli.org/yaml/#yaml-stringify)
44
+
45
+ ### Documents
46
+
47
+ - [`Document`](https://eemeli.org/yaml/#documents)
48
+ - [`constructor(value, replacer?, options?)`](https://eemeli.org/yaml/#creating-documents)
49
+ - [`#anchors`](https://eemeli.org/yaml/#working-with-anchors)
50
+ - [`#contents`](https://eemeli.org/yaml/#content-nodes)
51
+ - [`#directives`](https://eemeli.org/yaml/#stream-directives)
52
+ - [`#errors`](https://eemeli.org/yaml/#errors)
53
+ - [`#warnings`](https://eemeli.org/yaml/#errors)
54
+ - [`isDocument(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
55
+ - [`parseAllDocuments(str, options?): Document[]`](https://eemeli.org/yaml/#parsing-documents)
56
+ - [`parseDocument(str, options?): Document`](https://eemeli.org/yaml/#parsing-documents)
57
+
58
+ ### Content Nodes
59
+
60
+ - [`isAlias(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
61
+ - [`isCollection(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
62
+ - [`isMap(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
63
+ - [`isNode(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
64
+ - [`isPair(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
65
+ - [`isScalar(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
66
+ - [`isSeq(foo): boolean`](https://eemeli.org/yaml/#identifying-nodes)
67
+ - [`new Scalar(value)`](https://eemeli.org/yaml/#scalar-values)
68
+ - [`new YAMLMap()`](https://eemeli.org/yaml/#collections)
69
+ - [`new YAMLSeq()`](https://eemeli.org/yaml/#collections)
70
+ - [`doc.createAlias(node, name?): Alias`](https://eemeli.org/yaml/#working-with-anchors)
71
+ - [`doc.createNode(value, options?): Node`](https://eemeli.org/yaml/#creating-nodes)
72
+ - [`doc.createPair(key, value): Pair`](https://eemeli.org/yaml/#creating-nodes)
73
+ - [`visit(node, visitor)`](https://eemeli.org/yaml/#modifying-nodes)
74
+
75
+ ### Parsing YAML
76
+
77
+ - [`new Lexer().lex(src)`](https://eemeli.org/yaml/#lexer)
78
+ - [`new Parser(onNewLine?).parse(src)`](https://eemeli.org/yaml/#parser)
79
+ - [`new Composer(options?).compose(tokens)`](https://eemeli.org/yaml/#composer)
63
80
 
64
81
  ## YAML.parse
65
82
 
@@ -111,9 +128,8 @@ YAML.stringify([true, false, 'maybe', null])
111
128
  YAML.stringify({ number: 3, plain: 'string', block: 'two\nlines\n' })
112
129
  // `number: 3
113
130
  // plain: string
114
- // block: >
131
+ // block: |
115
132
  // two
116
- //
117
133
  // lines
118
134
  // `
119
135
  ```
@@ -0,0 +1,59 @@
1
+ import { isNode, isMap } from '../nodes/Node.js';
2
+ import { Scalar } from '../nodes/Scalar.js';
3
+ import { resolveBlockMap } from './resolve-block-map.js';
4
+ import { resolveBlockSeq } from './resolve-block-seq.js';
5
+ import { resolveFlowCollection } from './resolve-flow-collection.js';
6
+
7
+ function composeCollection(CN, ctx, token, tagToken, onError) {
8
+ let coll;
9
+ switch (token.type) {
10
+ case 'block-map': {
11
+ coll = resolveBlockMap(CN, ctx, token, onError);
12
+ break;
13
+ }
14
+ case 'block-seq': {
15
+ coll = resolveBlockSeq(CN, ctx, token, onError);
16
+ break;
17
+ }
18
+ case 'flow-collection': {
19
+ coll = resolveFlowCollection(CN, ctx, token, onError);
20
+ break;
21
+ }
22
+ }
23
+ if (!tagToken)
24
+ return coll;
25
+ const tagName = ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg));
26
+ if (!tagName)
27
+ return coll;
28
+ // Cast needed due to: https://github.com/Microsoft/TypeScript/issues/3841
29
+ const Coll = coll.constructor;
30
+ if (tagName === '!' || tagName === Coll.tagName) {
31
+ coll.tag = Coll.tagName;
32
+ return coll;
33
+ }
34
+ const expType = isMap(coll) ? 'map' : 'seq';
35
+ let tag = ctx.schema.tags.find(t => t.collection === expType && t.tag === tagName);
36
+ if (!tag) {
37
+ const kt = ctx.schema.knownTags[tagName];
38
+ if (kt && kt.collection === expType) {
39
+ ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
40
+ tag = kt;
41
+ }
42
+ else {
43
+ onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, true);
44
+ coll.tag = tagName;
45
+ return coll;
46
+ }
47
+ }
48
+ const res = tag.resolve(coll, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg), ctx.options);
49
+ const node = isNode(res)
50
+ ? res
51
+ : new Scalar(res);
52
+ node.range = coll.range;
53
+ node.tag = tagName;
54
+ if (tag === null || tag === void 0 ? void 0 : tag.format)
55
+ node.format = tag.format;
56
+ return node;
57
+ }
58
+
59
+ export { composeCollection };
@@ -0,0 +1,40 @@
1
+ import { Document } from '../doc/Document.js';
2
+ import { composeNode, composeEmptyNode } from './compose-node.js';
3
+ import { resolveEnd } from './resolve-end.js';
4
+ import { resolveProps } from './resolve-props.js';
5
+
6
+ function composeDoc(options, directives, { offset, start, value, end }, onError) {
7
+ const opts = Object.assign({ directives }, options);
8
+ const doc = new Document(undefined, opts);
9
+ const ctx = {
10
+ atRoot: true,
11
+ directives: doc.directives,
12
+ options: doc.options,
13
+ schema: doc.schema
14
+ };
15
+ const props = resolveProps(start, {
16
+ indicator: 'doc-start',
17
+ next: value || (end === null || end === void 0 ? void 0 : end[0]),
18
+ offset,
19
+ onError,
20
+ startOnNewline: true
21
+ });
22
+ if (props.found) {
23
+ doc.directives.marker = true;
24
+ if (value &&
25
+ (value.type === 'block-map' || value.type === 'block-seq') &&
26
+ !props.hasNewline)
27
+ onError(props.end, 'MISSING_CHAR', 'Block collection cannot start on same line with directives-end marker');
28
+ }
29
+ doc.contents = value
30
+ ? composeNode(ctx, value, props, onError)
31
+ : composeEmptyNode(ctx, props.end, start, null, props, onError);
32
+ const contentEnd = doc.contents.range[2];
33
+ const re = resolveEnd(end, contentEnd, false, onError);
34
+ if (re.comment)
35
+ doc.comment = re.comment;
36
+ doc.range = [offset, contentEnd, re.offset];
37
+ return doc;
38
+ }
39
+
40
+ export { composeDoc };
@@ -0,0 +1,81 @@
1
+ import { Alias } from '../nodes/Alias.js';
2
+ import { composeCollection } from './compose-collection.js';
3
+ import { composeScalar } from './compose-scalar.js';
4
+ import { resolveEnd } from './resolve-end.js';
5
+ import { emptyScalarPosition } from './util-empty-scalar-position.js';
6
+
7
+ const CN = { composeNode, composeEmptyNode };
8
+ function composeNode(ctx, token, props, onError) {
9
+ const { spaceBefore, comment, anchor, tag } = props;
10
+ let node;
11
+ switch (token.type) {
12
+ case 'alias':
13
+ node = composeAlias(ctx, token, onError);
14
+ if (anchor || tag)
15
+ onError(token, 'ALIAS_PROPS', 'An alias node must not specify any properties');
16
+ break;
17
+ case 'scalar':
18
+ case 'single-quoted-scalar':
19
+ case 'double-quoted-scalar':
20
+ case 'block-scalar':
21
+ node = composeScalar(ctx, token, tag, onError);
22
+ if (anchor)
23
+ node.anchor = anchor.source.substring(1);
24
+ break;
25
+ case 'block-map':
26
+ case 'block-seq':
27
+ case 'flow-collection':
28
+ node = composeCollection(CN, ctx, token, tag, onError);
29
+ if (anchor)
30
+ node.anchor = anchor.source.substring(1);
31
+ break;
32
+ default:
33
+ console.log(token);
34
+ throw new Error(`Unsupporten token type: ${token.type}`);
35
+ }
36
+ if (anchor && node.anchor === '')
37
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
38
+ if (spaceBefore)
39
+ node.spaceBefore = true;
40
+ if (comment) {
41
+ if (token.type === 'scalar' && token.source === '')
42
+ node.comment = comment;
43
+ else
44
+ node.commentBefore = comment;
45
+ }
46
+ if (ctx.options.keepSourceTokens)
47
+ node.srcToken = token;
48
+ return node;
49
+ }
50
+ function composeEmptyNode(ctx, offset, before, pos, { spaceBefore, comment, anchor, tag }, onError) {
51
+ const token = {
52
+ type: 'scalar',
53
+ offset: emptyScalarPosition(offset, before, pos),
54
+ indent: -1,
55
+ source: ''
56
+ };
57
+ const node = composeScalar(ctx, token, tag, onError);
58
+ if (anchor) {
59
+ node.anchor = anchor.source.substring(1);
60
+ if (node.anchor === '')
61
+ onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
62
+ }
63
+ if (spaceBefore)
64
+ node.spaceBefore = true;
65
+ if (comment)
66
+ node.comment = comment;
67
+ return node;
68
+ }
69
+ function composeAlias({ options }, { offset, source, end }, onError) {
70
+ const alias = new Alias(source.substring(1));
71
+ if (alias.source === '')
72
+ onError(offset, 'BAD_ALIAS', 'Alias cannot be an empty string');
73
+ const valueEnd = offset + source.length;
74
+ const re = resolveEnd(end, valueEnd, options.strict, onError);
75
+ alias.range = [offset, valueEnd, re.offset];
76
+ if (re.comment)
77
+ alias.comment = re.comment;
78
+ return alias;
79
+ }
80
+
81
+ export { composeEmptyNode, composeNode };
@@ -0,0 +1,81 @@
1
+ import { SCALAR, isScalar } from '../nodes/Node.js';
2
+ import { Scalar } from '../nodes/Scalar.js';
3
+ import { resolveBlockScalar } from './resolve-block-scalar.js';
4
+ import { resolveFlowScalar } from './resolve-flow-scalar.js';
5
+
6
+ function composeScalar(ctx, token, tagToken, onError) {
7
+ const { value, type, comment, range } = token.type === 'block-scalar'
8
+ ? resolveBlockScalar(token, ctx.options.strict, onError)
9
+ : resolveFlowScalar(token, ctx.options.strict, onError);
10
+ const tagName = tagToken
11
+ ? ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg))
12
+ : null;
13
+ const tag = tagToken && tagName
14
+ ? findScalarTagByName(ctx.schema, value, tagName, tagToken, onError)
15
+ : token.type === 'scalar'
16
+ ? findScalarTagByTest(ctx, value, token, onError)
17
+ : ctx.schema[SCALAR];
18
+ let scalar;
19
+ try {
20
+ const res = tag.resolve(value, msg => onError(tagToken || token, 'TAG_RESOLVE_FAILED', msg), ctx.options);
21
+ scalar = isScalar(res) ? res : new Scalar(res);
22
+ }
23
+ catch (error) {
24
+ const msg = error instanceof Error ? error.message : String(error);
25
+ onError(tagToken || token, 'TAG_RESOLVE_FAILED', msg);
26
+ scalar = new Scalar(value);
27
+ }
28
+ scalar.range = range;
29
+ scalar.source = value;
30
+ if (type)
31
+ scalar.type = type;
32
+ if (tagName)
33
+ scalar.tag = tagName;
34
+ if (tag.format)
35
+ scalar.format = tag.format;
36
+ if (comment)
37
+ scalar.comment = comment;
38
+ return scalar;
39
+ }
40
+ function findScalarTagByName(schema, value, tagName, tagToken, onError) {
41
+ var _a;
42
+ if (tagName === '!')
43
+ return schema[SCALAR]; // non-specific tag
44
+ const matchWithTest = [];
45
+ for (const tag of schema.tags) {
46
+ if (!tag.collection && tag.tag === tagName) {
47
+ if (tag.default && tag.test)
48
+ matchWithTest.push(tag);
49
+ else
50
+ return tag;
51
+ }
52
+ }
53
+ for (const tag of matchWithTest)
54
+ if ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value))
55
+ return tag;
56
+ const kt = schema.knownTags[tagName];
57
+ if (kt && !kt.collection) {
58
+ // Ensure that the known tag is available for stringifying,
59
+ // but does not get used by default.
60
+ schema.tags.push(Object.assign({}, kt, { default: false, test: undefined }));
61
+ return kt;
62
+ }
63
+ onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, tagName !== 'tag:yaml.org,2002:str');
64
+ return schema[SCALAR];
65
+ }
66
+ function findScalarTagByTest({ directives, schema }, value, token, onError) {
67
+ const tag = schema.tags.find(tag => { var _a; return tag.default && ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value)); }) || schema[SCALAR];
68
+ if (schema.compat) {
69
+ const compat = schema.compat.find(tag => { var _a; return tag.default && ((_a = tag.test) === null || _a === void 0 ? void 0 : _a.test(value)); }) ||
70
+ schema[SCALAR];
71
+ if (tag.tag !== compat.tag) {
72
+ const ts = directives.tagString(tag.tag);
73
+ const cs = directives.tagString(compat.tag);
74
+ const msg = `Value may be parsed as either ${ts} or ${cs}`;
75
+ onError(token, 'TAG_RESOLVE_FAILED', msg, true);
76
+ }
77
+ }
78
+ return tag;
79
+ }
80
+
81
+ export { composeScalar };
@@ -0,0 +1,219 @@
1
+ import { Directives } from '../doc/directives.js';
2
+ import { Document } from '../doc/Document.js';
3
+ import { YAMLWarning, YAMLParseError } from '../errors.js';
4
+ import { isCollection, isPair } from '../nodes/Node.js';
5
+ import { defaultOptions } from '../options.js';
6
+ import { composeDoc } from './compose-doc.js';
7
+ import { resolveEnd } from './resolve-end.js';
8
+
9
+ function getErrorPos(src) {
10
+ if (typeof src === 'number')
11
+ return [src, src + 1];
12
+ if (Array.isArray(src))
13
+ return src.length === 2 ? src : [src[0], src[1]];
14
+ const { offset, source } = src;
15
+ return [offset, offset + (typeof source === 'string' ? source.length : 1)];
16
+ }
17
+ function parsePrelude(prelude) {
18
+ var _a;
19
+ let comment = '';
20
+ let atComment = false;
21
+ let afterEmptyLine = false;
22
+ for (let i = 0; i < prelude.length; ++i) {
23
+ const source = prelude[i];
24
+ switch (source[0]) {
25
+ case '#':
26
+ comment +=
27
+ (comment === '' ? '' : afterEmptyLine ? '\n\n' : '\n') +
28
+ (source.substring(1) || ' ');
29
+ atComment = true;
30
+ afterEmptyLine = false;
31
+ break;
32
+ case '%':
33
+ if (((_a = prelude[i + 1]) === null || _a === void 0 ? void 0 : _a[0]) !== '#')
34
+ i += 1;
35
+ atComment = false;
36
+ break;
37
+ default:
38
+ // This may be wrong after doc-end, but in that case it doesn't matter
39
+ if (!atComment)
40
+ afterEmptyLine = true;
41
+ atComment = false;
42
+ }
43
+ }
44
+ return { comment, afterEmptyLine };
45
+ }
46
+ /**
47
+ * Compose a stream of CST nodes into a stream of YAML Documents.
48
+ *
49
+ * ```ts
50
+ * import { Composer, Parser } from 'yaml'
51
+ *
52
+ * const src: string = ...
53
+ * const tokens = new Parser().parse(src)
54
+ * const docs = new Composer().compose(tokens)
55
+ * ```
56
+ */
57
+ class Composer {
58
+ constructor(options = {}) {
59
+ this.doc = null;
60
+ this.atDirectives = false;
61
+ this.prelude = [];
62
+ this.errors = [];
63
+ this.warnings = [];
64
+ this.onError = (source, code, message, warning) => {
65
+ const pos = getErrorPos(source);
66
+ if (warning)
67
+ this.warnings.push(new YAMLWarning(pos, code, message));
68
+ else
69
+ this.errors.push(new YAMLParseError(pos, code, message));
70
+ };
71
+ this.directives = new Directives({
72
+ version: options.version || defaultOptions.version
73
+ });
74
+ this.options = options;
75
+ }
76
+ decorate(doc, afterDoc) {
77
+ const { comment, afterEmptyLine } = parsePrelude(this.prelude);
78
+ //console.log({ dc: doc.comment, prelude, comment })
79
+ if (comment) {
80
+ const dc = doc.contents;
81
+ if (afterDoc) {
82
+ doc.comment = doc.comment ? `${doc.comment}\n${comment}` : comment;
83
+ }
84
+ else if (afterEmptyLine || doc.directives.marker || !dc) {
85
+ doc.commentBefore = comment;
86
+ }
87
+ else if (isCollection(dc) && !dc.flow && dc.items.length > 0) {
88
+ let it = dc.items[0];
89
+ if (isPair(it))
90
+ it = it.key;
91
+ const cb = it.commentBefore;
92
+ it.commentBefore = cb ? `${comment}\n${cb}` : comment;
93
+ }
94
+ else {
95
+ const cb = dc.commentBefore;
96
+ dc.commentBefore = cb ? `${comment}\n${cb}` : comment;
97
+ }
98
+ }
99
+ if (afterDoc) {
100
+ Array.prototype.push.apply(doc.errors, this.errors);
101
+ Array.prototype.push.apply(doc.warnings, this.warnings);
102
+ }
103
+ else {
104
+ doc.errors = this.errors;
105
+ doc.warnings = this.warnings;
106
+ }
107
+ this.prelude = [];
108
+ this.errors = [];
109
+ this.warnings = [];
110
+ }
111
+ /**
112
+ * Current stream status information.
113
+ *
114
+ * Mostly useful at the end of input for an empty stream.
115
+ */
116
+ streamInfo() {
117
+ return {
118
+ comment: parsePrelude(this.prelude).comment,
119
+ directives: this.directives,
120
+ errors: this.errors,
121
+ warnings: this.warnings
122
+ };
123
+ }
124
+ /**
125
+ * Compose tokens into documents.
126
+ *
127
+ * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document.
128
+ * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly.
129
+ */
130
+ *compose(tokens, forceDoc = false, endOffset = -1) {
131
+ for (const token of tokens)
132
+ yield* this.next(token);
133
+ yield* this.end(forceDoc, endOffset);
134
+ }
135
+ /** Advance the composer by one CST token. */
136
+ *next(token) {
137
+ switch (token.type) {
138
+ case 'directive':
139
+ this.directives.add(token.source, (offset, message, warning) => {
140
+ const pos = getErrorPos(token);
141
+ pos[0] += offset;
142
+ this.onError(pos, 'BAD_DIRECTIVE', message, warning);
143
+ });
144
+ this.prelude.push(token.source);
145
+ this.atDirectives = true;
146
+ break;
147
+ case 'document': {
148
+ const doc = composeDoc(this.options, this.directives, token, this.onError);
149
+ if (this.atDirectives && !doc.directives.marker)
150
+ this.onError(token, 'MISSING_CHAR', 'Missing directives-end indicator line');
151
+ this.decorate(doc, false);
152
+ if (this.doc)
153
+ yield this.doc;
154
+ this.doc = doc;
155
+ this.atDirectives = false;
156
+ break;
157
+ }
158
+ case 'byte-order-mark':
159
+ case 'space':
160
+ break;
161
+ case 'comment':
162
+ case 'newline':
163
+ this.prelude.push(token.source);
164
+ break;
165
+ case 'error': {
166
+ const msg = token.source
167
+ ? `${token.message}: ${JSON.stringify(token.source)}`
168
+ : token.message;
169
+ const error = new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', msg);
170
+ if (this.atDirectives || !this.doc)
171
+ this.errors.push(error);
172
+ else
173
+ this.doc.errors.push(error);
174
+ break;
175
+ }
176
+ case 'doc-end': {
177
+ if (!this.doc) {
178
+ const msg = 'Unexpected doc-end without preceding document';
179
+ this.errors.push(new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', msg));
180
+ break;
181
+ }
182
+ const end = resolveEnd(token.end, token.offset + token.source.length, this.doc.options.strict, this.onError);
183
+ this.decorate(this.doc, true);
184
+ if (end.comment) {
185
+ const dc = this.doc.comment;
186
+ this.doc.comment = dc ? `${dc}\n${end.comment}` : end.comment;
187
+ }
188
+ this.doc.range[2] = end.offset;
189
+ break;
190
+ }
191
+ default:
192
+ this.errors.push(new YAMLParseError(getErrorPos(token), 'UNEXPECTED_TOKEN', `Unsupported token ${token.type}`));
193
+ }
194
+ }
195
+ /**
196
+ * Call at end of input to yield any remaining document.
197
+ *
198
+ * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document.
199
+ * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly.
200
+ */
201
+ *end(forceDoc = false, endOffset = -1) {
202
+ if (this.doc) {
203
+ this.decorate(this.doc, true);
204
+ yield this.doc;
205
+ this.doc = null;
206
+ }
207
+ else if (forceDoc) {
208
+ const opts = Object.assign({ directives: this.directives }, this.options);
209
+ const doc = new Document(undefined, opts);
210
+ if (this.atDirectives)
211
+ this.onError(endOffset, 'MISSING_CHAR', 'Missing directives-end indicator line');
212
+ doc.range = [0, endOffset, endOffset];
213
+ this.decorate(doc, false);
214
+ yield doc;
215
+ }
216
+ }
217
+ }
218
+
219
+ export { Composer };