shelfware 0.0.1 → 0.1.0

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 (206) hide show
  1. package/.output/nitro.json +15 -0
  2. package/.output/public/_nuxt/6IstVYrV.js +1 -0
  3. package/.output/public/_nuxt/9C5WUlLE.js +36 -0
  4. package/.output/public/_nuxt/BDNMzG2s.js +1 -0
  5. package/.output/public/_nuxt/BW3xJdEx.js +1 -0
  6. package/.output/public/_nuxt/BXXtFil5.js +1 -0
  7. package/.output/public/_nuxt/BZuUK3cr.js +1 -0
  8. package/.output/public/_nuxt/BeLyMmd4.js +1 -0
  9. package/.output/public/_nuxt/C_VgD9ZI.js +3 -0
  10. package/.output/public/_nuxt/DB5Vxbte.js +2 -0
  11. package/.output/public/_nuxt/DMg0j7gv.js +14 -0
  12. package/.output/public/_nuxt/builds/latest.json +1 -0
  13. package/.output/public/_nuxt/builds/meta/4c307968-4837-497b-a570-d6ee336accc4.json +1 -0
  14. package/.output/public/_nuxt/entry.b3_DJTEt.css +2 -0
  15. package/.output/public/_nuxt/error-404.CHsn7XF-.css +1 -0
  16. package/.output/public/_nuxt/error-500.Bawx2bLr.css +1 -0
  17. package/.output/server/chunks/_/api-handler.mjs +44 -0
  18. package/.output/server/chunks/_/batch.mjs +27 -0
  19. package/.output/server/chunks/_/catalog.mjs +1115 -0
  20. package/.output/server/chunks/_/detail.mjs +16 -0
  21. package/.output/server/chunks/_/error-500.mjs +19 -0
  22. package/.output/server/chunks/_/quarantine.mjs +159 -0
  23. package/.output/server/chunks/nitro/nitro.mjs +5399 -0
  24. package/.output/server/chunks/routes/api/_..._.mjs +16 -0
  25. package/.output/server/chunks/routes/api/health.get.mjs +13 -0
  26. package/.output/server/chunks/routes/api/skills/_id/file.get.mjs +25 -0
  27. package/.output/server/chunks/routes/api/skills/_id_.get.mjs +25 -0
  28. package/.output/server/chunks/routes/api/skills/_id_.put.mjs +74 -0
  29. package/.output/server/chunks/routes/api/skills/delete.post.mjs +48 -0
  30. package/.output/server/chunks/routes/api/skills/quarantine.post.mjs +26 -0
  31. package/.output/server/chunks/routes/api/skills/restore.post.mjs +26 -0
  32. package/.output/server/chunks/routes/api/skills.get.mjs +41 -0
  33. package/.output/server/chunks/routes/renderer.mjs +341 -0
  34. package/.output/server/chunks/virtual/_virtual_spa-template.mjs +3 -0
  35. package/.output/server/chunks/virtual/precomputed.mjs +3 -0
  36. package/.output/server/index.mjs +9 -0
  37. package/.output/server/node_modules/@babel/parser/lib/index.js +14611 -0
  38. package/.output/server/node_modules/@babel/parser/package.json +50 -0
  39. package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +6801 -0
  40. package/.output/server/node_modules/@vue/compiler-core/package.json +58 -0
  41. package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +692 -0
  42. package/.output/server/node_modules/@vue/compiler-dom/package.json +57 -0
  43. package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +1420 -0
  44. package/.output/server/node_modules/@vue/compiler-ssr/package.json +34 -0
  45. package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +1903 -0
  46. package/.output/server/node_modules/@vue/reactivity/package.json +55 -0
  47. package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +6980 -0
  48. package/.output/server/node_modules/@vue/runtime-core/package.json +52 -0
  49. package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1867 -0
  50. package/.output/server/node_modules/@vue/runtime-dom/package.json +60 -0
  51. package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +904 -0
  52. package/.output/server/node_modules/@vue/server-renderer/package.json +53 -0
  53. package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +636 -0
  54. package/.output/server/node_modules/@vue/shared/package.json +47 -0
  55. package/.output/server/node_modules/devalue/index.js +17 -0
  56. package/.output/server/node_modules/devalue/package.json +39 -0
  57. package/.output/server/node_modules/devalue/src/base64.js +60 -0
  58. package/.output/server/node_modules/devalue/src/constants.js +12 -0
  59. package/.output/server/node_modules/devalue/src/operations.js +193 -0
  60. package/.output/server/node_modules/devalue/src/parse.js +274 -0
  61. package/.output/server/node_modules/devalue/src/stringify.js +428 -0
  62. package/.output/server/node_modules/devalue/src/uneval.js +606 -0
  63. package/.output/server/node_modules/devalue/src/utils.js +185 -0
  64. package/.output/server/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
  65. package/.output/server/node_modules/entities/dist/commonjs/decode.js +568 -0
  66. package/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
  67. package/.output/server/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
  68. package/.output/server/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
  69. package/.output/server/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
  70. package/.output/server/node_modules/entities/dist/commonjs/package.json +3 -0
  71. package/.output/server/node_modules/entities/package.json +120 -0
  72. package/.output/server/node_modules/estree-walker/dist/umd/estree-walker.js +344 -0
  73. package/.output/server/node_modules/estree-walker/package.json +37 -0
  74. package/.output/server/node_modules/hookable/dist/index.mjs +257 -0
  75. package/.output/server/node_modules/hookable/package.json +53 -0
  76. package/.output/server/node_modules/nostics/dist/formatters/ansi.mjs +19 -0
  77. package/.output/server/node_modules/nostics/dist/index.mjs +187 -0
  78. package/.output/server/node_modules/nostics/package.json +125 -0
  79. package/.output/server/node_modules/source-map-js/lib/array-set.js +121 -0
  80. package/.output/server/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  81. package/.output/server/node_modules/source-map-js/lib/base64.js +67 -0
  82. package/.output/server/node_modules/source-map-js/lib/binary-search.js +111 -0
  83. package/.output/server/node_modules/source-map-js/lib/mapping-list.js +79 -0
  84. package/.output/server/node_modules/source-map-js/lib/quick-sort.js +132 -0
  85. package/.output/server/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  86. package/.output/server/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  87. package/.output/server/node_modules/source-map-js/lib/source-node.js +413 -0
  88. package/.output/server/node_modules/source-map-js/lib/util.js +594 -0
  89. package/.output/server/node_modules/source-map-js/package.json +71 -0
  90. package/.output/server/node_modules/source-map-js/source-map.js +8 -0
  91. package/.output/server/node_modules/ufo/dist/index.mjs +645 -0
  92. package/.output/server/node_modules/ufo/package.json +48 -0
  93. package/.output/server/node_modules/unhead/dist/client.mjs +22 -0
  94. package/.output/server/node_modules/unhead/dist/legacy.mjs +33 -0
  95. package/.output/server/node_modules/unhead/dist/minify.mjs +183 -0
  96. package/.output/server/node_modules/unhead/dist/parser.mjs +518 -0
  97. package/.output/server/node_modules/unhead/dist/plugins.mjs +720 -0
  98. package/.output/server/node_modules/unhead/dist/server.mjs +99 -0
  99. package/.output/server/node_modules/unhead/dist/shared/unhead.-hZVKou0.mjs +400 -0
  100. package/.output/server/node_modules/unhead/dist/shared/unhead.BEmVMkeA.mjs +673 -0
  101. package/.output/server/node_modules/unhead/dist/shared/unhead.BGFxPGPQ.mjs +47 -0
  102. package/.output/server/node_modules/unhead/dist/shared/unhead.BQWSw36o.mjs +192 -0
  103. package/.output/server/node_modules/unhead/dist/shared/unhead.Bf_fPVYA.mjs +6 -0
  104. package/.output/server/node_modules/unhead/dist/shared/unhead.Bjbp1C8D.mjs +224 -0
  105. package/.output/server/node_modules/unhead/dist/shared/unhead.Bm4Y6XQI.mjs +17 -0
  106. package/.output/server/node_modules/unhead/dist/shared/unhead.C5Bksi2B.mjs +49 -0
  107. package/.output/server/node_modules/unhead/dist/shared/unhead.CGPOfp5O.mjs +32 -0
  108. package/.output/server/node_modules/unhead/dist/shared/unhead.CHEy9ana.mjs +7 -0
  109. package/.output/server/node_modules/unhead/dist/shared/unhead.D7HkBzZn.mjs +59 -0
  110. package/.output/server/node_modules/unhead/dist/shared/unhead.Dssd7L5I.mjs +196 -0
  111. package/.output/server/node_modules/unhead/dist/shared/unhead.jEy9BmRq.mjs +264 -0
  112. package/.output/server/node_modules/unhead/dist/shared/unhead.oZ7pkTV1.mjs +19 -0
  113. package/.output/server/node_modules/unhead/dist/shared/unhead.tQnRaXfX.mjs +240 -0
  114. package/.output/server/node_modules/unhead/dist/stream/client.mjs +33 -0
  115. package/.output/server/node_modules/unhead/dist/stream/iife.mjs +2 -0
  116. package/.output/server/node_modules/unhead/dist/stream/server.mjs +445 -0
  117. package/.output/server/node_modules/unhead/dist/utils.mjs +7 -0
  118. package/.output/server/node_modules/unhead/package.json +179 -0
  119. package/.output/server/node_modules/vue/dist/vue.cjs.js +80 -0
  120. package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +66 -0
  121. package/.output/server/node_modules/vue/index.js +7 -0
  122. package/.output/server/node_modules/vue/index.mjs +1 -0
  123. package/.output/server/node_modules/vue/package.json +112 -0
  124. package/.output/server/node_modules/vue/server-renderer/index.mjs +1 -0
  125. package/.output/server/node_modules/vue-bundle-renderer/dist/runtime.mjs +278 -0
  126. package/.output/server/node_modules/vue-bundle-renderer/package.json +54 -0
  127. package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +90 -0
  128. package/.output/server/node_modules/yaml/dist/compose/compose-doc.js +45 -0
  129. package/.output/server/node_modules/yaml/dist/compose/compose-node.js +112 -0
  130. package/.output/server/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
  131. package/.output/server/node_modules/yaml/dist/compose/composer.js +224 -0
  132. package/.output/server/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
  133. package/.output/server/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
  134. package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
  135. package/.output/server/node_modules/yaml/dist/compose/resolve-end.js +39 -0
  136. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
  137. package/.output/server/node_modules/yaml/dist/compose/resolve-flow-scalar.js +227 -0
  138. package/.output/server/node_modules/yaml/dist/compose/resolve-props.js +148 -0
  139. package/.output/server/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
  140. package/.output/server/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
  141. package/.output/server/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
  142. package/.output/server/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
  143. package/.output/server/node_modules/yaml/dist/doc/Document.js +337 -0
  144. package/.output/server/node_modules/yaml/dist/doc/anchors.js +76 -0
  145. package/.output/server/node_modules/yaml/dist/doc/applyReviver.js +57 -0
  146. package/.output/server/node_modules/yaml/dist/doc/createNode.js +90 -0
  147. package/.output/server/node_modules/yaml/dist/doc/directives.js +178 -0
  148. package/.output/server/node_modules/yaml/dist/errors.js +62 -0
  149. package/.output/server/node_modules/yaml/dist/index.js +50 -0
  150. package/.output/server/node_modules/yaml/dist/log.js +19 -0
  151. package/.output/server/node_modules/yaml/dist/nodes/Alias.js +118 -0
  152. package/.output/server/node_modules/yaml/dist/nodes/Collection.js +151 -0
  153. package/.output/server/node_modules/yaml/dist/nodes/Node.js +40 -0
  154. package/.output/server/node_modules/yaml/dist/nodes/Pair.js +39 -0
  155. package/.output/server/node_modules/yaml/dist/nodes/Scalar.js +27 -0
  156. package/.output/server/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
  157. package/.output/server/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
  158. package/.output/server/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
  159. package/.output/server/node_modules/yaml/dist/nodes/identity.js +53 -0
  160. package/.output/server/node_modules/yaml/dist/nodes/toJS.js +39 -0
  161. package/.output/server/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
  162. package/.output/server/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
  163. package/.output/server/node_modules/yaml/dist/parse/cst-visit.js +99 -0
  164. package/.output/server/node_modules/yaml/dist/parse/cst.js +112 -0
  165. package/.output/server/node_modules/yaml/dist/parse/lexer.js +723 -0
  166. package/.output/server/node_modules/yaml/dist/parse/line-counter.js +41 -0
  167. package/.output/server/node_modules/yaml/dist/parse/parser.js +980 -0
  168. package/.output/server/node_modules/yaml/dist/public-api.js +107 -0
  169. package/.output/server/node_modules/yaml/dist/schema/Schema.js +39 -0
  170. package/.output/server/node_modules/yaml/dist/schema/common/map.js +19 -0
  171. package/.output/server/node_modules/yaml/dist/schema/common/null.js +17 -0
  172. package/.output/server/node_modules/yaml/dist/schema/common/seq.js +19 -0
  173. package/.output/server/node_modules/yaml/dist/schema/common/string.js +16 -0
  174. package/.output/server/node_modules/yaml/dist/schema/core/bool.js +21 -0
  175. package/.output/server/node_modules/yaml/dist/schema/core/float.js +47 -0
  176. package/.output/server/node_modules/yaml/dist/schema/core/int.js +42 -0
  177. package/.output/server/node_modules/yaml/dist/schema/core/schema.js +25 -0
  178. package/.output/server/node_modules/yaml/dist/schema/json/schema.js +64 -0
  179. package/.output/server/node_modules/yaml/dist/schema/tags.js +99 -0
  180. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
  181. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
  182. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
  183. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
  184. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/merge.js +71 -0
  185. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
  186. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
  187. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
  188. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
  189. package/.output/server/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
  190. package/.output/server/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
  191. package/.output/server/node_modules/yaml/dist/stringify/stringify.js +132 -0
  192. package/.output/server/node_modules/yaml/dist/stringify/stringifyCollection.js +155 -0
  193. package/.output/server/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
  194. package/.output/server/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
  195. package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +27 -0
  196. package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
  197. package/.output/server/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
  198. package/.output/server/node_modules/yaml/dist/visit.js +236 -0
  199. package/.output/server/node_modules/yaml/package.json +97 -0
  200. package/.output/server/package.json +28 -0
  201. package/LICENSE +21 -0
  202. package/README.md +57 -1
  203. package/bin/launch.mjs +158 -0
  204. package/bin/shelfware.mjs +6 -0
  205. package/package.json +64 -5
  206. package/cli.mjs +0 -3
@@ -0,0 +1,200 @@
1
+ 'use strict';
2
+
3
+ var Scalar = require('../nodes/Scalar.js');
4
+
5
+ function resolveBlockScalar(ctx, scalar, onError) {
6
+ const start = scalar.offset;
7
+ const header = parseBlockScalarHeader(scalar, ctx.options.strict, onError);
8
+ if (!header)
9
+ return { value: '', type: null, comment: '', range: [start, start, start] };
10
+ const type = header.mode === '>' ? Scalar.Scalar.BLOCK_FOLDED : Scalar.Scalar.BLOCK_LITERAL;
11
+ const lines = scalar.source ? splitLines(scalar.source) : [];
12
+ // determine the end of content & start of chomping
13
+ let chompStart = lines.length;
14
+ for (let i = lines.length - 1; i >= 0; --i) {
15
+ const content = lines[i][1];
16
+ if (content === '' || content === '\r')
17
+ chompStart = i;
18
+ else
19
+ break;
20
+ }
21
+ // shortcut for empty contents
22
+ if (chompStart === 0) {
23
+ const value = header.chomp === '+' && lines.length > 0
24
+ ? '\n'.repeat(Math.max(1, lines.length - 1))
25
+ : '';
26
+ let end = start + header.length;
27
+ if (scalar.source)
28
+ end += scalar.source.length;
29
+ return { value, type, comment: header.comment, range: [start, end, end] };
30
+ }
31
+ // find the indentation level to trim from start
32
+ let trimIndent = scalar.indent + header.indent;
33
+ let offset = scalar.offset + header.length;
34
+ let contentStart = 0;
35
+ for (let i = 0; i < chompStart; ++i) {
36
+ const [indent, content] = lines[i];
37
+ if (content === '' || content === '\r') {
38
+ if (header.indent === 0 && indent.length > trimIndent)
39
+ trimIndent = indent.length;
40
+ }
41
+ else {
42
+ if (indent.length < trimIndent) {
43
+ const message = 'Block scalars with more-indented leading empty lines must use an explicit indentation indicator';
44
+ onError(offset + indent.length, 'MISSING_CHAR', message);
45
+ }
46
+ if (header.indent === 0)
47
+ trimIndent = indent.length;
48
+ contentStart = i;
49
+ if (trimIndent === 0 && !ctx.atRoot) {
50
+ const message = 'Block scalar values in collections must be indented';
51
+ onError(offset, 'BAD_INDENT', message);
52
+ }
53
+ break;
54
+ }
55
+ offset += indent.length + content.length + 1;
56
+ }
57
+ // include trailing more-indented empty lines in content
58
+ for (let i = lines.length - 1; i >= chompStart; --i) {
59
+ if (lines[i][0].length > trimIndent)
60
+ chompStart = i + 1;
61
+ }
62
+ let value = '';
63
+ let sep = '';
64
+ let prevMoreIndented = false;
65
+ // leading whitespace is kept intact
66
+ for (let i = 0; i < contentStart; ++i)
67
+ value += lines[i][0].slice(trimIndent) + '\n';
68
+ for (let i = contentStart; i < chompStart; ++i) {
69
+ let [indent, content] = lines[i];
70
+ offset += indent.length + content.length + 1;
71
+ const crlf = content[content.length - 1] === '\r';
72
+ if (crlf)
73
+ content = content.slice(0, -1);
74
+ /* istanbul ignore if already caught in lexer */
75
+ if (content && indent.length < trimIndent) {
76
+ const src = header.indent
77
+ ? 'explicit indentation indicator'
78
+ : 'first line';
79
+ const message = `Block scalar lines must not be less indented than their ${src}`;
80
+ onError(offset - content.length - (crlf ? 2 : 1), 'BAD_INDENT', message);
81
+ indent = '';
82
+ }
83
+ if (type === Scalar.Scalar.BLOCK_LITERAL) {
84
+ value += sep + indent.slice(trimIndent) + content;
85
+ sep = '\n';
86
+ }
87
+ else if (indent.length > trimIndent || content[0] === '\t') {
88
+ // more-indented content within a folded block
89
+ if (sep === ' ')
90
+ sep = '\n';
91
+ else if (!prevMoreIndented && sep === '\n')
92
+ sep = '\n\n';
93
+ value += sep + indent.slice(trimIndent) + content;
94
+ sep = '\n';
95
+ prevMoreIndented = true;
96
+ }
97
+ else if (content === '') {
98
+ // empty line
99
+ if (sep === '\n')
100
+ value += '\n';
101
+ else
102
+ sep = '\n';
103
+ }
104
+ else {
105
+ value += sep + content;
106
+ sep = ' ';
107
+ prevMoreIndented = false;
108
+ }
109
+ }
110
+ switch (header.chomp) {
111
+ case '-':
112
+ break;
113
+ case '+':
114
+ for (let i = chompStart; i < lines.length; ++i)
115
+ value += '\n' + lines[i][0].slice(trimIndent);
116
+ if (value[value.length - 1] !== '\n')
117
+ value += '\n';
118
+ break;
119
+ default:
120
+ value += '\n';
121
+ }
122
+ const end = start + header.length + scalar.source.length;
123
+ return { value, type, comment: header.comment, range: [start, end, end] };
124
+ }
125
+ function parseBlockScalarHeader({ offset, props }, strict, onError) {
126
+ /* istanbul ignore if should not happen */
127
+ if (props[0].type !== 'block-scalar-header') {
128
+ onError(props[0], 'IMPOSSIBLE', 'Block scalar header not found');
129
+ return null;
130
+ }
131
+ const { source } = props[0];
132
+ const mode = source[0];
133
+ let indent = 0;
134
+ let chomp = '';
135
+ let error = -1;
136
+ for (let i = 1; i < source.length; ++i) {
137
+ const ch = source[i];
138
+ if (!chomp && (ch === '-' || ch === '+'))
139
+ chomp = ch;
140
+ else {
141
+ const n = Number(ch);
142
+ if (!indent && n)
143
+ indent = n;
144
+ else if (error === -1)
145
+ error = offset + i;
146
+ }
147
+ }
148
+ if (error !== -1)
149
+ onError(error, 'UNEXPECTED_TOKEN', `Block scalar header includes extra characters: ${source}`);
150
+ let hasSpace = false;
151
+ let comment = '';
152
+ let length = source.length;
153
+ for (let i = 1; i < props.length; ++i) {
154
+ const token = props[i];
155
+ switch (token.type) {
156
+ case 'space':
157
+ hasSpace = true;
158
+ // fallthrough
159
+ case 'newline':
160
+ length += token.source.length;
161
+ break;
162
+ case 'comment':
163
+ if (strict && !hasSpace) {
164
+ const message = 'Comments must be separated from other tokens by white space characters';
165
+ onError(token, 'MISSING_CHAR', message);
166
+ }
167
+ length += token.source.length;
168
+ comment = token.source.substring(1);
169
+ break;
170
+ case 'error':
171
+ onError(token, 'UNEXPECTED_TOKEN', token.message);
172
+ length += token.source.length;
173
+ break;
174
+ /* istanbul ignore next should not happen */
175
+ default: {
176
+ const message = `Unexpected token in block scalar header: ${token.type}`;
177
+ onError(token, 'UNEXPECTED_TOKEN', message);
178
+ const ts = token.source;
179
+ if (ts && typeof ts === 'string')
180
+ length += ts.length;
181
+ }
182
+ }
183
+ }
184
+ return { mode, indent, chomp, comment, length };
185
+ }
186
+ /** @returns Array of lines split up as `[indent, content]` */
187
+ function splitLines(source) {
188
+ const split = source.split(/\n( *)/);
189
+ const first = split[0];
190
+ const m = first.match(/^( *)/);
191
+ const line0 = m?.[1]
192
+ ? [m[1], first.slice(m[1].length)]
193
+ : ['', first];
194
+ const lines = [line0];
195
+ for (let i = 1; i < split.length; i += 2)
196
+ lines.push([split[i], split[i + 1]]);
197
+ return lines;
198
+ }
199
+
200
+ exports.resolveBlockScalar = resolveBlockScalar;
@@ -0,0 +1,51 @@
1
+ 'use strict';
2
+
3
+ var YAMLSeq = require('../nodes/YAMLSeq.js');
4
+ var resolveProps = require('./resolve-props.js');
5
+ var utilFlowIndentCheck = require('./util-flow-indent-check.js');
6
+
7
+ function resolveBlockSeq({ composeNode, composeEmptyNode }, ctx, bs, onError, tag) {
8
+ const NodeClass = tag?.nodeClass ?? YAMLSeq.YAMLSeq;
9
+ const seq = new NodeClass(ctx.schema);
10
+ if (ctx.atRoot)
11
+ ctx.atRoot = false;
12
+ if (ctx.atKey)
13
+ ctx.atKey = false;
14
+ let offset = bs.offset;
15
+ let commentEnd = null;
16
+ for (const { start, value } of bs.items) {
17
+ const props = resolveProps.resolveProps(start, {
18
+ indicator: 'seq-item-ind',
19
+ next: value,
20
+ offset,
21
+ onError,
22
+ parentIndent: bs.indent,
23
+ startOnNewline: true
24
+ });
25
+ if (!props.found) {
26
+ if (props.anchor || props.tag || value) {
27
+ if (value?.type === 'block-seq')
28
+ onError(props.end, 'BAD_INDENT', 'All sequence items must start at the same column');
29
+ else
30
+ onError(offset, 'MISSING_CHAR', 'Sequence item without - indicator');
31
+ }
32
+ else {
33
+ commentEnd = props.end;
34
+ if (props.comment)
35
+ seq.comment = props.comment;
36
+ continue;
37
+ }
38
+ }
39
+ const node = value
40
+ ? composeNode(ctx, value, props, onError)
41
+ : composeEmptyNode(ctx, props.end, start, null, props, onError);
42
+ if (ctx.schema.compat)
43
+ utilFlowIndentCheck.flowIndentCheck(bs.indent, value, onError);
44
+ offset = node.range[2];
45
+ seq.items.push(node);
46
+ }
47
+ seq.range = [bs.offset, offset, commentEnd ?? offset];
48
+ return seq;
49
+ }
50
+
51
+ exports.resolveBlockSeq = resolveBlockSeq;
@@ -0,0 +1,39 @@
1
+ 'use strict';
2
+
3
+ function resolveEnd(end, offset, reqSpace, onError) {
4
+ let comment = '';
5
+ if (end) {
6
+ let hasSpace = false;
7
+ let sep = '';
8
+ for (const token of end) {
9
+ const { source, type } = token;
10
+ switch (type) {
11
+ case 'space':
12
+ hasSpace = true;
13
+ break;
14
+ case 'comment': {
15
+ if (reqSpace && !hasSpace)
16
+ onError(token, 'MISSING_CHAR', 'Comments must be separated from other tokens by white space characters');
17
+ const cb = source.substring(1) || ' ';
18
+ if (!comment)
19
+ comment = cb;
20
+ else
21
+ comment += sep + cb;
22
+ sep = '';
23
+ break;
24
+ }
25
+ case 'newline':
26
+ if (comment)
27
+ sep += source;
28
+ hasSpace = true;
29
+ break;
30
+ default:
31
+ onError(token, 'UNEXPECTED_TOKEN', `Unexpected ${type} at node end`);
32
+ }
33
+ offset += source.length;
34
+ }
35
+ }
36
+ return { comment, offset };
37
+ }
38
+
39
+ exports.resolveEnd = resolveEnd;
@@ -0,0 +1,209 @@
1
+ 'use strict';
2
+
3
+ var identity = require('../nodes/identity.js');
4
+ var Pair = require('../nodes/Pair.js');
5
+ var YAMLMap = require('../nodes/YAMLMap.js');
6
+ var YAMLSeq = require('../nodes/YAMLSeq.js');
7
+ var resolveEnd = require('./resolve-end.js');
8
+ var resolveProps = require('./resolve-props.js');
9
+ var utilContainsNewline = require('./util-contains-newline.js');
10
+ var utilMapIncludes = require('./util-map-includes.js');
11
+
12
+ const blockMsg = 'Block collections are not allowed within flow collections';
13
+ const isBlock = (token) => token && (token.type === 'block-map' || token.type === 'block-seq');
14
+ function resolveFlowCollection({ composeNode, composeEmptyNode }, ctx, fc, onError, tag) {
15
+ const isMap = fc.start.source === '{';
16
+ const fcName = isMap ? 'flow map' : 'flow sequence';
17
+ const NodeClass = (tag?.nodeClass ?? (isMap ? YAMLMap.YAMLMap : YAMLSeq.YAMLSeq));
18
+ const coll = new NodeClass(ctx.schema);
19
+ coll.flow = true;
20
+ const atRoot = ctx.atRoot;
21
+ if (atRoot)
22
+ ctx.atRoot = false;
23
+ if (ctx.atKey)
24
+ ctx.atKey = false;
25
+ let offset = fc.offset + fc.start.source.length;
26
+ for (let i = 0; i < fc.items.length; ++i) {
27
+ const collItem = fc.items[i];
28
+ const { start, key, sep, value } = collItem;
29
+ const props = resolveProps.resolveProps(start, {
30
+ flow: fcName,
31
+ indicator: 'explicit-key-ind',
32
+ next: key ?? sep?.[0],
33
+ offset,
34
+ onError,
35
+ parentIndent: fc.indent,
36
+ startOnNewline: false
37
+ });
38
+ if (!props.found) {
39
+ if (!props.anchor && !props.tag && !sep && !value) {
40
+ if (i === 0 && props.comma)
41
+ onError(props.comma, 'UNEXPECTED_TOKEN', `Unexpected , in ${fcName}`);
42
+ else if (i < fc.items.length - 1)
43
+ onError(props.start, 'UNEXPECTED_TOKEN', `Unexpected empty item in ${fcName}`);
44
+ if (props.comment) {
45
+ if (coll.comment)
46
+ coll.comment += '\n' + props.comment;
47
+ else
48
+ coll.comment = props.comment;
49
+ }
50
+ offset = props.end;
51
+ continue;
52
+ }
53
+ if (!isMap && ctx.options.strict && utilContainsNewline.containsNewline(key))
54
+ onError(key, // checked by containsNewline()
55
+ 'MULTILINE_IMPLICIT_KEY', 'Implicit keys of flow sequence pairs need to be on a single line');
56
+ }
57
+ if (i === 0) {
58
+ if (props.comma)
59
+ onError(props.comma, 'UNEXPECTED_TOKEN', `Unexpected , in ${fcName}`);
60
+ }
61
+ else {
62
+ if (!props.comma)
63
+ onError(props.start, 'MISSING_CHAR', `Missing , between ${fcName} items`);
64
+ if (props.comment) {
65
+ let prevItemComment = '';
66
+ loop: for (const st of start) {
67
+ switch (st.type) {
68
+ case 'comma':
69
+ case 'space':
70
+ break;
71
+ case 'comment':
72
+ prevItemComment = st.source.substring(1);
73
+ break loop;
74
+ default:
75
+ break loop;
76
+ }
77
+ }
78
+ if (prevItemComment) {
79
+ let prev = coll.items[coll.items.length - 1];
80
+ if (identity.isPair(prev))
81
+ prev = prev.value ?? prev.key;
82
+ if (prev.comment)
83
+ prev.comment += '\n' + prevItemComment;
84
+ else
85
+ prev.comment = prevItemComment;
86
+ props.comment = props.comment.substring(prevItemComment.length + 1);
87
+ }
88
+ }
89
+ }
90
+ if (!isMap && !sep && !props.found) {
91
+ // item is a value in a seq
92
+ // → key & sep are empty, start does not include ? or :
93
+ const valueNode = value
94
+ ? composeNode(ctx, value, props, onError)
95
+ : composeEmptyNode(ctx, props.end, sep, null, props, onError);
96
+ coll.items.push(valueNode);
97
+ offset = valueNode.range[2];
98
+ if (isBlock(value))
99
+ onError(valueNode.range, 'BLOCK_IN_FLOW', blockMsg);
100
+ }
101
+ else {
102
+ // item is a key+value pair
103
+ // key value
104
+ ctx.atKey = true;
105
+ const keyStart = props.end;
106
+ const keyNode = key
107
+ ? composeNode(ctx, key, props, onError)
108
+ : composeEmptyNode(ctx, keyStart, start, null, props, onError);
109
+ if (isBlock(key))
110
+ onError(keyNode.range, 'BLOCK_IN_FLOW', blockMsg);
111
+ ctx.atKey = false;
112
+ // value properties
113
+ const valueProps = resolveProps.resolveProps(sep ?? [], {
114
+ flow: fcName,
115
+ indicator: 'map-value-ind',
116
+ next: value,
117
+ offset: keyNode.range[2],
118
+ onError,
119
+ parentIndent: fc.indent,
120
+ startOnNewline: false
121
+ });
122
+ if (valueProps.found) {
123
+ if (!isMap && !props.found && ctx.options.strict) {
124
+ if (sep)
125
+ for (const st of sep) {
126
+ if (st === valueProps.found)
127
+ break;
128
+ if (st.type === 'newline') {
129
+ onError(st, 'MULTILINE_IMPLICIT_KEY', 'Implicit keys of flow sequence pairs need to be on a single line');
130
+ break;
131
+ }
132
+ }
133
+ if (props.start < valueProps.found.offset - 1024)
134
+ onError(valueProps.found, 'KEY_OVER_1024_CHARS', 'The : indicator must be at most 1024 chars after the start of an implicit flow sequence key');
135
+ }
136
+ }
137
+ else if (value) {
138
+ if ('source' in value && value.source?.[0] === ':')
139
+ onError(value, 'MISSING_CHAR', `Missing space after : in ${fcName}`);
140
+ else
141
+ onError(valueProps.start, 'MISSING_CHAR', `Missing , or : between ${fcName} items`);
142
+ }
143
+ // value value
144
+ const valueNode = value
145
+ ? composeNode(ctx, value, valueProps, onError)
146
+ : valueProps.found
147
+ ? composeEmptyNode(ctx, valueProps.end, sep, null, valueProps, onError)
148
+ : null;
149
+ if (valueNode) {
150
+ if (isBlock(value))
151
+ onError(valueNode.range, 'BLOCK_IN_FLOW', blockMsg);
152
+ }
153
+ else if (valueProps.comment) {
154
+ if (keyNode.comment)
155
+ keyNode.comment += '\n' + valueProps.comment;
156
+ else
157
+ keyNode.comment = valueProps.comment;
158
+ }
159
+ const pair = new Pair.Pair(keyNode, valueNode);
160
+ if (ctx.options.keepSourceTokens)
161
+ pair.srcToken = collItem;
162
+ if (isMap) {
163
+ const map = coll;
164
+ if (utilMapIncludes.mapIncludes(ctx, map.items, keyNode))
165
+ onError(keyStart, 'DUPLICATE_KEY', 'Map keys must be unique');
166
+ map.items.push(pair);
167
+ }
168
+ else {
169
+ const map = new YAMLMap.YAMLMap(ctx.schema);
170
+ map.flow = true;
171
+ map.items.push(pair);
172
+ const endRange = (valueNode ?? keyNode).range;
173
+ map.range = [keyNode.range[0], endRange[1], endRange[2]];
174
+ coll.items.push(map);
175
+ }
176
+ offset = valueNode ? valueNode.range[2] : valueProps.end;
177
+ }
178
+ }
179
+ const expectedEnd = isMap ? '}' : ']';
180
+ const [ce, ...ee] = fc.end;
181
+ let cePos = offset;
182
+ if (ce?.source === expectedEnd)
183
+ cePos = ce.offset + ce.source.length;
184
+ else {
185
+ const name = fcName[0].toUpperCase() + fcName.substring(1);
186
+ const msg = atRoot
187
+ ? `${name} must end with a ${expectedEnd}`
188
+ : `${name} in block collection must be sufficiently indented and end with a ${expectedEnd}`;
189
+ onError(offset, atRoot ? 'MISSING_CHAR' : 'BAD_INDENT', msg);
190
+ if (ce && ce.source.length !== 1)
191
+ ee.unshift(ce);
192
+ }
193
+ if (ee.length > 0) {
194
+ const end = resolveEnd.resolveEnd(ee, cePos, ctx.options.strict, onError);
195
+ if (end.comment) {
196
+ if (coll.comment)
197
+ coll.comment += '\n' + end.comment;
198
+ else
199
+ coll.comment = end.comment;
200
+ }
201
+ coll.range = [fc.offset, cePos, end.offset];
202
+ }
203
+ else {
204
+ coll.range = [fc.offset, cePos, cePos];
205
+ }
206
+ return coll;
207
+ }
208
+
209
+ exports.resolveFlowCollection = resolveFlowCollection;