capydash 0.1.0 → 0.1.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 (2256) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +39 -245
  3. data/dashboard/node_modules/@babel/code-frame/LICENSE +22 -0
  4. data/dashboard/node_modules/@babel/code-frame/README.md +19 -0
  5. data/dashboard/node_modules/@babel/code-frame/lib/index.js +216 -0
  6. data/dashboard/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  7. data/dashboard/node_modules/@babel/code-frame/package.json +31 -0
  8. data/dashboard/node_modules/@babel/compat-data/LICENSE +22 -0
  9. data/dashboard/node_modules/@babel/compat-data/README.md +19 -0
  10. data/dashboard/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  11. data/dashboard/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  12. data/dashboard/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2106 -0
  13. data/dashboard/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  14. data/dashboard/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  15. data/dashboard/node_modules/@babel/compat-data/data/overlapping-plugins.json +35 -0
  16. data/dashboard/node_modules/@babel/compat-data/data/plugin-bugfixes.json +203 -0
  17. data/dashboard/node_modules/@babel/compat-data/data/plugins.json +838 -0
  18. data/dashboard/node_modules/@babel/compat-data/native-modules.js +2 -0
  19. data/dashboard/node_modules/@babel/compat-data/overlapping-plugins.js +2 -0
  20. data/dashboard/node_modules/@babel/compat-data/package.json +40 -0
  21. data/dashboard/node_modules/@babel/compat-data/plugin-bugfixes.js +2 -0
  22. data/dashboard/node_modules/@babel/compat-data/plugins.js +2 -0
  23. data/dashboard/node_modules/@babel/core/LICENSE +22 -0
  24. data/dashboard/node_modules/@babel/core/README.md +19 -0
  25. data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js +5 -0
  26. data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  27. data/dashboard/node_modules/@babel/core/lib/config/caching.js +261 -0
  28. data/dashboard/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  29. data/dashboard/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  30. data/dashboard/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  31. data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  32. data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  33. data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js +290 -0
  34. data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  35. data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  36. data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  37. data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  38. data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  39. data/dashboard/node_modules/@babel/core/lib/config/files/index.js +78 -0
  40. data/dashboard/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  41. data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js +211 -0
  42. data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  43. data/dashboard/node_modules/@babel/core/lib/config/files/package.js +61 -0
  44. data/dashboard/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  45. data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js +230 -0
  46. data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  47. data/dashboard/node_modules/@babel/core/lib/config/files/types.js +5 -0
  48. data/dashboard/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  49. data/dashboard/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  50. data/dashboard/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  51. data/dashboard/node_modules/@babel/core/lib/config/full.js +312 -0
  52. data/dashboard/node_modules/@babel/core/lib/config/full.js.map +1 -0
  53. data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  54. data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  55. data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  56. data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  57. data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  58. data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  59. data/dashboard/node_modules/@babel/core/lib/config/index.js +93 -0
  60. data/dashboard/node_modules/@babel/core/lib/config/index.js.map +1 -0
  61. data/dashboard/node_modules/@babel/core/lib/config/item.js +67 -0
  62. data/dashboard/node_modules/@babel/core/lib/config/item.js.map +1 -0
  63. data/dashboard/node_modules/@babel/core/lib/config/partial.js +158 -0
  64. data/dashboard/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  65. data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  66. data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  67. data/dashboard/node_modules/@babel/core/lib/config/plugin.js +33 -0
  68. data/dashboard/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  69. data/dashboard/node_modules/@babel/core/lib/config/printer.js +113 -0
  70. data/dashboard/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  71. data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  72. data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  73. data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  74. data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  75. data/dashboard/node_modules/@babel/core/lib/config/util.js +31 -0
  76. data/dashboard/node_modules/@babel/core/lib/config/util.js.map +1 -0
  77. data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  78. data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  79. data/dashboard/node_modules/@babel/core/lib/config/validation/options.js +189 -0
  80. data/dashboard/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  81. data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  82. data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  83. data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  84. data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  85. data/dashboard/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  86. data/dashboard/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  87. data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  88. data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  89. data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  90. data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  91. data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  92. data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  93. data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  94. data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  95. data/dashboard/node_modules/@babel/core/lib/index.js +233 -0
  96. data/dashboard/node_modules/@babel/core/lib/index.js.map +1 -0
  97. data/dashboard/node_modules/@babel/core/lib/parse.js +47 -0
  98. data/dashboard/node_modules/@babel/core/lib/parse.js.map +1 -0
  99. data/dashboard/node_modules/@babel/core/lib/parser/index.js +79 -0
  100. data/dashboard/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  101. data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
  102. data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  103. data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
  104. data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  105. data/dashboard/node_modules/@babel/core/lib/transform-ast.js +50 -0
  106. data/dashboard/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  107. data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  108. data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  109. data/dashboard/node_modules/@babel/core/lib/transform-file.js +40 -0
  110. data/dashboard/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  111. data/dashboard/node_modules/@babel/core/lib/transform.js +49 -0
  112. data/dashboard/node_modules/@babel/core/lib/transform.js.map +1 -0
  113. data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  114. data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  115. data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +6 -0
  116. data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs.map +1 -0
  117. data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js +219 -0
  118. data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  119. data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  120. data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  121. data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  122. data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  123. data/dashboard/node_modules/@babel/core/lib/transformation/index.js +92 -0
  124. data/dashboard/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  125. data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  126. data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  127. data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  128. data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  129. data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
  130. data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  131. data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js +56 -0
  132. data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  133. data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1042 -0
  134. data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  135. data/dashboard/node_modules/@babel/core/package.json +82 -0
  136. data/dashboard/node_modules/@babel/core/src/config/files/index-browser.ts +115 -0
  137. data/dashboard/node_modules/@babel/core/src/config/files/index.ts +29 -0
  138. data/dashboard/node_modules/@babel/core/src/config/resolve-targets-browser.ts +42 -0
  139. data/dashboard/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  140. data/dashboard/node_modules/@babel/core/src/transform-file-browser.ts +33 -0
  141. data/dashboard/node_modules/@babel/core/src/transform-file.ts +55 -0
  142. data/dashboard/node_modules/@babel/generator/LICENSE +22 -0
  143. data/dashboard/node_modules/@babel/generator/README.md +19 -0
  144. data/dashboard/node_modules/@babel/generator/lib/buffer.js +317 -0
  145. data/dashboard/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  146. data/dashboard/node_modules/@babel/generator/lib/generators/base.js +87 -0
  147. data/dashboard/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  148. data/dashboard/node_modules/@babel/generator/lib/generators/classes.js +212 -0
  149. data/dashboard/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  150. data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js +28 -0
  151. data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js.map +1 -0
  152. data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js +300 -0
  153. data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  154. data/dashboard/node_modules/@babel/generator/lib/generators/flow.js +660 -0
  155. data/dashboard/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  156. data/dashboard/node_modules/@babel/generator/lib/generators/index.js +128 -0
  157. data/dashboard/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  158. data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js +126 -0
  159. data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  160. data/dashboard/node_modules/@babel/generator/lib/generators/methods.js +198 -0
  161. data/dashboard/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  162. data/dashboard/node_modules/@babel/generator/lib/generators/modules.js +287 -0
  163. data/dashboard/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  164. data/dashboard/node_modules/@babel/generator/lib/generators/statements.js +279 -0
  165. data/dashboard/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  166. data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js +40 -0
  167. data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  168. data/dashboard/node_modules/@babel/generator/lib/generators/types.js +238 -0
  169. data/dashboard/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  170. data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js +724 -0
  171. data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  172. data/dashboard/node_modules/@babel/generator/lib/index.js +112 -0
  173. data/dashboard/node_modules/@babel/generator/lib/index.js.map +1 -0
  174. data/dashboard/node_modules/@babel/generator/lib/node/index.js +122 -0
  175. data/dashboard/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  176. data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js +262 -0
  177. data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  178. data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
  179. data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  180. data/dashboard/node_modules/@babel/generator/lib/printer.js +781 -0
  181. data/dashboard/node_modules/@babel/generator/lib/printer.js.map +1 -0
  182. data/dashboard/node_modules/@babel/generator/lib/source-map.js +85 -0
  183. data/dashboard/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  184. data/dashboard/node_modules/@babel/generator/lib/token-map.js +191 -0
  185. data/dashboard/node_modules/@babel/generator/lib/token-map.js.map +1 -0
  186. data/dashboard/node_modules/@babel/generator/package.json +39 -0
  187. data/dashboard/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  188. data/dashboard/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  189. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  190. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  191. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  192. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  193. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js +232 -0
  194. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  195. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
  196. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  197. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  198. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  199. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
  200. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  201. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  202. data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  203. data/dashboard/node_modules/@babel/helper-compilation-targets/package.json +43 -0
  204. data/dashboard/node_modules/@babel/helper-globals/LICENSE +22 -0
  205. data/dashboard/node_modules/@babel/helper-globals/README.md +19 -0
  206. data/dashboard/node_modules/@babel/helper-globals/data/browser-upper.json +911 -0
  207. data/dashboard/node_modules/@babel/helper-globals/data/builtin-lower.json +15 -0
  208. data/dashboard/node_modules/@babel/helper-globals/data/builtin-upper.json +51 -0
  209. data/dashboard/node_modules/@babel/helper-globals/package.json +32 -0
  210. data/dashboard/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  211. data/dashboard/node_modules/@babel/helper-module-imports/README.md +19 -0
  212. data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  213. data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  214. data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js +304 -0
  215. data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  216. data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  217. data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  218. data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  219. data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  220. data/dashboard/node_modules/@babel/helper-module-imports/package.json +28 -0
  221. data/dashboard/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  222. data/dashboard/node_modules/@babel/helper-module-transforms/README.md +19 -0
  223. data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
  224. data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  225. data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  226. data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  227. data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js +398 -0
  228. data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  229. data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
  230. data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
  231. data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +364 -0
  232. data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  233. data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +360 -0
  234. data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  235. data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +22 -0
  236. data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  237. data/dashboard/node_modules/@babel/helper-module-transforms/package.json +32 -0
  238. data/dashboard/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  239. data/dashboard/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  240. data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js +76 -0
  241. data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
  242. data/dashboard/node_modules/@babel/helper-plugin-utils/package.json +24 -0
  243. data/dashboard/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  244. data/dashboard/node_modules/@babel/helper-string-parser/README.md +19 -0
  245. data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  246. data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  247. data/dashboard/node_modules/@babel/helper-string-parser/package.json +31 -0
  248. data/dashboard/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  249. data/dashboard/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  250. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  251. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  252. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  253. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  254. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  255. data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  256. data/dashboard/node_modules/@babel/helper-validator-identifier/package.json +31 -0
  257. data/dashboard/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  258. data/dashboard/node_modules/@babel/helper-validator-option/README.md +19 -0
  259. data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  260. data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  261. data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  262. data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  263. data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  264. data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  265. data/dashboard/node_modules/@babel/helper-validator-option/package.json +27 -0
  266. data/dashboard/node_modules/@babel/helpers/LICENSE +23 -0
  267. data/dashboard/node_modules/@babel/helpers/README.md +19 -0
  268. data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js +11 -0
  269. data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js.map +1 -0
  270. data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  271. data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  272. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js +31 -0
  273. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js.map +1 -0
  274. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
  275. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  276. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  277. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  278. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
  279. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  280. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
  281. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  282. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
  283. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  284. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js +236 -0
  285. data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js.map +1 -0
  286. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js +13 -0
  287. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js.map +1 -0
  288. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js +11 -0
  289. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js.map +1 -0
  290. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js +12 -0
  291. data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js.map +1 -0
  292. data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js +14 -0
  293. data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js.map +1 -0
  294. data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js +14 -0
  295. data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js.map +1 -0
  296. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  297. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  298. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +72 -0
  299. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  300. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js +38 -0
  301. data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js.map +1 -0
  302. data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  303. data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  304. data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
  305. data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
  306. data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  307. data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  308. data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js +13 -0
  309. data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js.map +1 -0
  310. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js +25 -0
  311. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js.map +1 -0
  312. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js +14 -0
  313. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js.map +1 -0
  314. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js +18 -0
  315. data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js.map +1 -0
  316. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js +13 -0
  317. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js.map +1 -0
  318. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js +12 -0
  319. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js.map +1 -0
  320. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js +13 -0
  321. data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js.map +1 -0
  322. data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js +12 -0
  323. data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js.map +1 -0
  324. data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js +11 -0
  325. data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js.map +1 -0
  326. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js +14 -0
  327. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js.map +1 -0
  328. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js +14 -0
  329. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js.map +1 -0
  330. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js +12 -0
  331. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js.map +1 -0
  332. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js +13 -0
  333. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js.map +1 -0
  334. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js +14 -0
  335. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js.map +1 -0
  336. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js +12 -0
  337. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js.map +1 -0
  338. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js +15 -0
  339. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js.map +1 -0
  340. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js +13 -0
  341. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js.map +1 -0
  342. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js +12 -0
  343. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js.map +1 -0
  344. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js +13 -0
  345. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js.map +1 -0
  346. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js +13 -0
  347. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js.map +1 -0
  348. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js +11 -0
  349. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js.map +1 -0
  350. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js +13 -0
  351. data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js.map +1 -0
  352. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js +16 -0
  353. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js.map +1 -0
  354. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js +16 -0
  355. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js.map +1 -0
  356. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js +17 -0
  357. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js.map +1 -0
  358. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js +13 -0
  359. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js.map +1 -0
  360. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js +11 -0
  361. data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js.map +1 -0
  362. data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
  363. data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
  364. data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js +26 -0
  365. data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js.map +1 -0
  366. data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js +64 -0
  367. data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js.map +1 -0
  368. data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js +29 -0
  369. data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js.map +1 -0
  370. data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js +25 -0
  371. data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js.map +1 -0
  372. data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js +350 -0
  373. data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js.map +1 -0
  374. data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js +18 -0
  375. data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js.map +1 -0
  376. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  377. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  378. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js +27 -0
  379. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js.map +1 -0
  380. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js +23 -0
  381. data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js.map +1 -0
  382. data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  383. data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  384. data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js +22 -0
  385. data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js.map +1 -0
  386. data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js +25 -0
  387. data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js.map +1 -0
  388. data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js +14 -0
  389. data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js.map +1 -0
  390. data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js +11 -0
  391. data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js.map +1 -0
  392. data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
  393. data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
  394. data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js +25 -0
  395. data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js.map +1 -0
  396. data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js +14 -0
  397. data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js.map +1 -0
  398. data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js +17 -0
  399. data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js.map +1 -0
  400. data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js +11 -0
  401. data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js.map +1 -0
  402. data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js +15 -0
  403. data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js.map +1 -0
  404. data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js +13 -0
  405. data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js.map +1 -0
  406. data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +44 -0
  407. data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
  408. data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js +15 -0
  409. data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js.map +1 -0
  410. data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
  411. data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
  412. data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js +13 -0
  413. data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js.map +1 -0
  414. data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  415. data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  416. data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  417. data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  418. data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js +16 -0
  419. data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js.map +1 -0
  420. data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js +13 -0
  421. data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js.map +1 -0
  422. data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js +11 -0
  423. data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js.map +1 -0
  424. data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js +11 -0
  425. data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js.map +1 -0
  426. data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js +11 -0
  427. data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js.map +1 -0
  428. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js +11 -0
  429. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js.map +1 -0
  430. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js +24 -0
  431. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js.map +1 -0
  432. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  433. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  434. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js +24 -0
  435. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js.map +1 -0
  436. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js +19 -0
  437. data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js.map +1 -0
  438. data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js +17 -0
  439. data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js.map +1 -0
  440. data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js +11 -0
  441. data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js.map +1 -0
  442. data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js +188 -0
  443. data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js.map +1 -0
  444. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js +15 -0
  445. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js.map +1 -0
  446. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js +13 -0
  447. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js.map +1 -0
  448. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js +49 -0
  449. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js.map +1 -0
  450. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js +40 -0
  451. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js.map +1 -0
  452. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js +28 -0
  453. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js.map +1 -0
  454. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +98 -0
  455. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  456. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js +32 -0
  457. data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js.map +1 -0
  458. data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js +48 -0
  459. data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js.map +1 -0
  460. data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
  461. data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
  462. data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js +15 -0
  463. data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js.map +1 -0
  464. data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js +15 -0
  465. data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js.map +1 -0
  466. data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js +15 -0
  467. data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js.map +1 -0
  468. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js +16 -0
  469. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js.map +1 -0
  470. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js +16 -0
  471. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js.map +1 -0
  472. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js +13 -0
  473. data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js.map +1 -0
  474. data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js +18 -0
  475. data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js.map +1 -0
  476. data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js +15 -0
  477. data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js.map +1 -0
  478. data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js +11 -0
  479. data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js.map +1 -0
  480. data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js +13 -0
  481. data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js.map +1 -0
  482. data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js +9 -0
  483. data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js.map +1 -0
  484. data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js +15 -0
  485. data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js.map +1 -0
  486. data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js +15 -0
  487. data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js.map +1 -0
  488. data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
  489. data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
  490. data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
  491. data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
  492. data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js +18 -0
  493. data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js.map +1 -0
  494. data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js +16 -0
  495. data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js.map +1 -0
  496. data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  497. data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  498. data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js +19 -0
  499. data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js.map +1 -0
  500. data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  501. data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  502. data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js +103 -0
  503. data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
  504. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js +97 -0
  505. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js.map +1 -0
  506. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js +38 -0
  507. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js.map +1 -0
  508. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +72 -0
  509. data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  510. data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js +11 -0
  511. data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js.map +1 -0
  512. data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js +1442 -0
  513. data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  514. data/dashboard/node_modules/@babel/helpers/lib/index.js +126 -0
  515. data/dashboard/node_modules/@babel/helpers/lib/index.js.map +1 -0
  516. data/dashboard/node_modules/@babel/helpers/package.json +31 -0
  517. data/dashboard/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  518. data/dashboard/node_modules/@babel/parser/LICENSE +19 -0
  519. data/dashboard/node_modules/@babel/parser/README.md +19 -0
  520. data/dashboard/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  521. data/dashboard/node_modules/@babel/parser/lib/index.js +14595 -0
  522. data/dashboard/node_modules/@babel/parser/lib/index.js.map +1 -0
  523. data/dashboard/node_modules/@babel/parser/package.json +50 -0
  524. data/dashboard/node_modules/@babel/parser/typings/babel-parser.d.ts +239 -0
  525. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
  526. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
  527. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js +61 -0
  528. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js.map +1 -0
  529. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/package.json +35 -0
  530. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
  531. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
  532. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js +51 -0
  533. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js.map +1 -0
  534. data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/package.json +35 -0
  535. data/dashboard/node_modules/@babel/template/LICENSE +22 -0
  536. data/dashboard/node_modules/@babel/template/README.md +19 -0
  537. data/dashboard/node_modules/@babel/template/lib/builder.js +69 -0
  538. data/dashboard/node_modules/@babel/template/lib/builder.js.map +1 -0
  539. data/dashboard/node_modules/@babel/template/lib/formatters.js +61 -0
  540. data/dashboard/node_modules/@babel/template/lib/formatters.js.map +1 -0
  541. data/dashboard/node_modules/@babel/template/lib/index.js +23 -0
  542. data/dashboard/node_modules/@babel/template/lib/index.js.map +1 -0
  543. data/dashboard/node_modules/@babel/template/lib/literal.js +69 -0
  544. data/dashboard/node_modules/@babel/template/lib/literal.js.map +1 -0
  545. data/dashboard/node_modules/@babel/template/lib/options.js +73 -0
  546. data/dashboard/node_modules/@babel/template/lib/options.js.map +1 -0
  547. data/dashboard/node_modules/@babel/template/lib/parse.js +163 -0
  548. data/dashboard/node_modules/@babel/template/lib/parse.js.map +1 -0
  549. data/dashboard/node_modules/@babel/template/lib/populate.js +138 -0
  550. data/dashboard/node_modules/@babel/template/lib/populate.js.map +1 -0
  551. data/dashboard/node_modules/@babel/template/lib/string.js +20 -0
  552. data/dashboard/node_modules/@babel/template/lib/string.js.map +1 -0
  553. data/dashboard/node_modules/@babel/template/package.json +27 -0
  554. data/dashboard/node_modules/@babel/traverse/LICENSE +22 -0
  555. data/dashboard/node_modules/@babel/traverse/README.md +19 -0
  556. data/dashboard/node_modules/@babel/traverse/lib/cache.js +38 -0
  557. data/dashboard/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  558. data/dashboard/node_modules/@babel/traverse/lib/context.js +119 -0
  559. data/dashboard/node_modules/@babel/traverse/lib/context.js.map +1 -0
  560. data/dashboard/node_modules/@babel/traverse/lib/hub.js +19 -0
  561. data/dashboard/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  562. data/dashboard/node_modules/@babel/traverse/lib/index.js +87 -0
  563. data/dashboard/node_modules/@babel/traverse/lib/index.js.map +1 -0
  564. data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js +139 -0
  565. data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  566. data/dashboard/node_modules/@babel/traverse/lib/path/comments.js +52 -0
  567. data/dashboard/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  568. data/dashboard/node_modules/@babel/traverse/lib/path/context.js +242 -0
  569. data/dashboard/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  570. data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js +612 -0
  571. data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  572. data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js +368 -0
  573. data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  574. data/dashboard/node_modules/@babel/traverse/lib/path/family.js +346 -0
  575. data/dashboard/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  576. data/dashboard/node_modules/@babel/traverse/lib/path/index.js +293 -0
  577. data/dashboard/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  578. data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  579. data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  580. data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  581. data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  582. data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  583. data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  584. data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  585. data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  586. data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js +398 -0
  587. data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  588. data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  589. data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  590. data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
  591. data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  592. data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +163 -0
  593. data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  594. data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
  595. data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  596. data/dashboard/node_modules/@babel/traverse/lib/path/modification.js +231 -0
  597. data/dashboard/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  598. data/dashboard/node_modules/@babel/traverse/lib/path/removal.js +70 -0
  599. data/dashboard/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  600. data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js +263 -0
  601. data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  602. data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js +84 -0
  603. data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  604. data/dashboard/node_modules/@babel/traverse/lib/scope/index.js +1039 -0
  605. data/dashboard/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  606. data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js +131 -0
  607. data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  608. data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js +138 -0
  609. data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  610. data/dashboard/node_modules/@babel/traverse/lib/types.js +3 -0
  611. data/dashboard/node_modules/@babel/traverse/lib/types.js.map +1 -0
  612. data/dashboard/node_modules/@babel/traverse/lib/visitors.js +258 -0
  613. data/dashboard/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  614. data/dashboard/node_modules/@babel/traverse/package.json +35 -0
  615. data/dashboard/node_modules/@babel/types/LICENSE +22 -0
  616. data/dashboard/node_modules/@babel/types/README.md +19 -0
  617. data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  618. data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  619. data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js +1251 -0
  620. data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  621. data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  622. data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  623. data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  624. data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  625. data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
  626. data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  627. data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
  628. data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  629. data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js +2896 -0
  630. data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
  631. data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js +274 -0
  632. data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  633. data/dashboard/node_modules/@babel/types/lib/builders/productions.js +12 -0
  634. data/dashboard/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
  635. data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  636. data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  637. data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  638. data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  639. data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
  640. data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  641. data/dashboard/node_modules/@babel/types/lib/clone/clone.js +12 -0
  642. data/dashboard/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  643. data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  644. data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  645. data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  646. data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  647. data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
  648. data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  649. data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  650. data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  651. data/dashboard/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  652. data/dashboard/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  653. data/dashboard/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  654. data/dashboard/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  655. data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  656. data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  657. data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  658. data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  659. data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  660. data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  661. data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  662. data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  663. data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  664. data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  665. data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js +60 -0
  666. data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  667. data/dashboard/node_modules/@babel/types/lib/constants/index.js +33 -0
  668. data/dashboard/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  669. data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  670. data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  671. data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +66 -0
  672. data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  673. data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  674. data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  675. data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  676. data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  677. data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  678. data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  679. data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
  680. data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  681. data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  682. data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  683. data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  684. data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  685. data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
  686. data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  687. data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
  688. data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  689. data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js +89 -0
  690. data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  691. data/dashboard/node_modules/@babel/types/lib/definitions/core.js +1659 -0
  692. data/dashboard/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  693. data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
  694. data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  695. data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js +126 -0
  696. data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  697. data/dashboard/node_modules/@babel/types/lib/definitions/flow.js +495 -0
  698. data/dashboard/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  699. data/dashboard/node_modules/@babel/types/lib/definitions/index.js +100 -0
  700. data/dashboard/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  701. data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
  702. data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  703. data/dashboard/node_modules/@babel/types/lib/definitions/misc.js +33 -0
  704. data/dashboard/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  705. data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
  706. data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  707. data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js +528 -0
  708. data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  709. data/dashboard/node_modules/@babel/types/lib/definitions/utils.js +292 -0
  710. data/dashboard/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  711. data/dashboard/node_modules/@babel/types/lib/index-legacy.d.ts +2797 -0
  712. data/dashboard/node_modules/@babel/types/lib/index.d.ts +3308 -0
  713. data/dashboard/node_modules/@babel/types/lib/index.js +584 -0
  714. data/dashboard/node_modules/@babel/types/lib/index.js.flow +2650 -0
  715. data/dashboard/node_modules/@babel/types/lib/index.js.map +1 -0
  716. data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  717. data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  718. data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  719. data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  720. data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  721. data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  722. data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  723. data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  724. data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  725. data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  726. data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  727. data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  728. data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
  729. data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  730. data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
  731. data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
  732. data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
  733. data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  734. data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
  735. data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
  736. data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
  737. data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  738. data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  739. data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  740. data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
  741. data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  742. data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  743. data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  744. data/dashboard/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  745. data/dashboard/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  746. data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  747. data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  748. data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  749. data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  750. data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  751. data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  752. data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js +2797 -0
  753. data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  754. data/dashboard/node_modules/@babel/types/lib/validators/is.js +27 -0
  755. data/dashboard/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  756. data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  757. data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  758. data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  759. data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  760. data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  761. data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  762. data/dashboard/node_modules/@babel/types/lib/validators/isLet.js +17 -0
  763. data/dashboard/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  764. data/dashboard/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  765. data/dashboard/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  766. data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  767. data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  768. data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
  769. data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  770. data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  771. data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  772. data/dashboard/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  773. data/dashboard/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  774. data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  775. data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  776. data/dashboard/node_modules/@babel/types/lib/validators/isType.js +17 -0
  777. data/dashboard/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  778. data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  779. data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  780. data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  781. data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  782. data/dashboard/node_modules/@babel/types/lib/validators/isVar.js +19 -0
  783. data/dashboard/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  784. data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js +44 -0
  785. data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  786. data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  787. data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  788. data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
  789. data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  790. data/dashboard/node_modules/@babel/types/lib/validators/validate.js +42 -0
  791. data/dashboard/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  792. data/dashboard/node_modules/@babel/types/package.json +39 -0
  793. data/dashboard/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  794. data/dashboard/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
  795. data/dashboard/node_modules/@esbuild/darwin-arm64/package.json +20 -0
  796. data/dashboard/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  797. data/dashboard/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  798. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +292 -0
  799. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +6 -0
  800. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +358 -0
  801. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +6 -0
  802. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +88 -0
  803. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/set-array.d.ts +32 -0
  804. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  805. data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +43 -0
  806. data/dashboard/node_modules/@jridgewell/gen-mapping/package.json +67 -0
  807. data/dashboard/node_modules/@jridgewell/gen-mapping/src/gen-mapping.ts +614 -0
  808. data/dashboard/node_modules/@jridgewell/gen-mapping/src/set-array.ts +82 -0
  809. data/dashboard/node_modules/@jridgewell/gen-mapping/src/sourcemap-segment.ts +16 -0
  810. data/dashboard/node_modules/@jridgewell/gen-mapping/src/types.ts +61 -0
  811. data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts +89 -0
  812. data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts.map +1 -0
  813. data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts +89 -0
  814. data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts.map +1 -0
  815. data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts +33 -0
  816. data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts.map +1 -0
  817. data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts +33 -0
  818. data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts.map +1 -0
  819. data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts +13 -0
  820. data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts.map +1 -0
  821. data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts +13 -0
  822. data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts.map +1 -0
  823. data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts +44 -0
  824. data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts.map +1 -0
  825. data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts +44 -0
  826. data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts.map +1 -0
  827. data/dashboard/node_modules/@jridgewell/remapping/LICENSE +19 -0
  828. data/dashboard/node_modules/@jridgewell/remapping/README.md +218 -0
  829. data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs +144 -0
  830. data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs.map +6 -0
  831. data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js +212 -0
  832. data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js.map +6 -0
  833. data/dashboard/node_modules/@jridgewell/remapping/package.json +71 -0
  834. data/dashboard/node_modules/@jridgewell/remapping/src/build-source-map-tree.ts +89 -0
  835. data/dashboard/node_modules/@jridgewell/remapping/src/remapping.ts +42 -0
  836. data/dashboard/node_modules/@jridgewell/remapping/src/source-map-tree.ts +172 -0
  837. data/dashboard/node_modules/@jridgewell/remapping/src/source-map.ts +38 -0
  838. data/dashboard/node_modules/@jridgewell/remapping/src/types.ts +27 -0
  839. data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts +15 -0
  840. data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts.map +1 -0
  841. data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts +15 -0
  842. data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts.map +1 -0
  843. data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts +21 -0
  844. data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts.map +1 -0
  845. data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts +21 -0
  846. data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts.map +1 -0
  847. data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts +46 -0
  848. data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts.map +1 -0
  849. data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts +46 -0
  850. data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts.map +1 -0
  851. data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts +19 -0
  852. data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts.map +1 -0
  853. data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts +19 -0
  854. data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts.map +1 -0
  855. data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts +16 -0
  856. data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts.map +1 -0
  857. data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts +16 -0
  858. data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts.map +1 -0
  859. data/dashboard/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  860. data/dashboard/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  861. data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +232 -0
  862. data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  863. data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +240 -0
  864. data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  865. data/dashboard/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  866. data/dashboard/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  867. data/dashboard/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
  868. data/dashboard/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
  869. data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +423 -0
  870. data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +6 -0
  871. data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +464 -0
  872. data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +6 -0
  873. data/dashboard/node_modules/@jridgewell/sourcemap-codec/package.json +63 -0
  874. data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/scopes.ts +345 -0
  875. data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +111 -0
  876. data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/strings.ts +65 -0
  877. data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/vlq.ts +55 -0
  878. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts +50 -0
  879. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts.map +1 -0
  880. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts +50 -0
  881. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts.map +1 -0
  882. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts +9 -0
  883. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts.map +1 -0
  884. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts +9 -0
  885. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts.map +1 -0
  886. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts +16 -0
  887. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts.map +1 -0
  888. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts +16 -0
  889. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts.map +1 -0
  890. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts +7 -0
  891. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts.map +1 -0
  892. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts +7 -0
  893. data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts.map +1 -0
  894. data/dashboard/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  895. data/dashboard/node_modules/@jridgewell/trace-mapping/README.md +348 -0
  896. data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +493 -0
  897. data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +6 -0
  898. data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +559 -0
  899. data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +6 -0
  900. data/dashboard/node_modules/@jridgewell/trace-mapping/package.json +67 -0
  901. data/dashboard/node_modules/@jridgewell/trace-mapping/src/binary-search.ts +115 -0
  902. data/dashboard/node_modules/@jridgewell/trace-mapping/src/by-source.ts +41 -0
  903. data/dashboard/node_modules/@jridgewell/trace-mapping/src/flatten-map.ts +192 -0
  904. data/dashboard/node_modules/@jridgewell/trace-mapping/src/resolve.ts +16 -0
  905. data/dashboard/node_modules/@jridgewell/trace-mapping/src/sort.ts +45 -0
  906. data/dashboard/node_modules/@jridgewell/trace-mapping/src/sourcemap-segment.ts +23 -0
  907. data/dashboard/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts +8 -0
  908. data/dashboard/node_modules/@jridgewell/trace-mapping/src/trace-mapping.ts +502 -0
  909. data/dashboard/node_modules/@jridgewell/trace-mapping/src/types.ts +114 -0
  910. data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts +33 -0
  911. data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts.map +1 -0
  912. data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts +33 -0
  913. data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts.map +1 -0
  914. data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts +4 -0
  915. data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts.map +1 -0
  916. data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts +4 -0
  917. data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts.map +1 -0
  918. data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts +9 -0
  919. data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts.map +1 -0
  920. data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts +9 -0
  921. data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts.map +1 -0
  922. data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts +4 -0
  923. data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts.map +1 -0
  924. data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts +4 -0
  925. data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts.map +1 -0
  926. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts +4 -0
  927. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts.map +1 -0
  928. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts +4 -0
  929. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts.map +1 -0
  930. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts +17 -0
  931. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts.map +1 -0
  932. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts +17 -0
  933. data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts.map +1 -0
  934. data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts +5 -0
  935. data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts.map +1 -0
  936. data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts +5 -0
  937. data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts.map +1 -0
  938. data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts +80 -0
  939. data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts.map +1 -0
  940. data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts +80 -0
  941. data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts.map +1 -0
  942. data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts +107 -0
  943. data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts.map +1 -0
  944. data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts +107 -0
  945. data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts.map +1 -0
  946. data/dashboard/node_modules/@rolldown/pluginutils/LICENSE +25 -0
  947. data/dashboard/node_modules/@rolldown/pluginutils/README.md +85 -0
  948. data/dashboard/node_modules/@rolldown/pluginutils/dist/index.cjs +266 -0
  949. data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.cts +157 -0
  950. data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.ts +157 -0
  951. data/dashboard/node_modules/@rolldown/pluginutils/dist/index.js +250 -0
  952. data/dashboard/node_modules/@rolldown/pluginutils/package.json +36 -0
  953. data/dashboard/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
  954. data/dashboard/node_modules/@rollup/rollup-darwin-arm64/package.json +19 -0
  955. data/dashboard/node_modules/@rollup/rollup-darwin-arm64/rollup.darwin-arm64.node +0 -0
  956. data/dashboard/node_modules/@types/babel__core/LICENSE +21 -0
  957. data/dashboard/node_modules/@types/babel__core/README.md +15 -0
  958. data/dashboard/node_modules/@types/babel__core/index.d.ts +831 -0
  959. data/dashboard/node_modules/@types/babel__core/package.json +51 -0
  960. data/dashboard/node_modules/@types/babel__generator/LICENSE +21 -0
  961. data/dashboard/node_modules/@types/babel__generator/README.md +15 -0
  962. data/dashboard/node_modules/@types/babel__generator/index.d.ts +210 -0
  963. data/dashboard/node_modules/@types/babel__generator/package.json +43 -0
  964. data/dashboard/node_modules/@types/babel__template/LICENSE +21 -0
  965. data/dashboard/node_modules/@types/babel__template/README.md +15 -0
  966. data/dashboard/node_modules/@types/babel__template/index.d.ts +92 -0
  967. data/dashboard/node_modules/@types/babel__template/package.json +43 -0
  968. data/dashboard/node_modules/@types/babel__traverse/LICENSE +21 -0
  969. data/dashboard/node_modules/@types/babel__traverse/README.md +15 -0
  970. data/dashboard/node_modules/@types/babel__traverse/index.d.ts +1506 -0
  971. data/dashboard/node_modules/@types/babel__traverse/package.json +63 -0
  972. data/dashboard/node_modules/@types/estree/LICENSE +21 -0
  973. data/dashboard/node_modules/@types/estree/README.md +15 -0
  974. data/dashboard/node_modules/@types/estree/flow.d.ts +167 -0
  975. data/dashboard/node_modules/@types/estree/index.d.ts +694 -0
  976. data/dashboard/node_modules/@types/estree/package.json +27 -0
  977. data/dashboard/node_modules/@vitejs/plugin-react/LICENSE +21 -0
  978. data/dashboard/node_modules/@vitejs/plugin-react/README.md +140 -0
  979. data/dashboard/node_modules/@vitejs/plugin-react/dist/index.d.ts +64 -0
  980. data/dashboard/node_modules/@vitejs/plugin-react/dist/index.js +368 -0
  981. data/dashboard/node_modules/@vitejs/plugin-react/dist/refresh-runtime.js +670 -0
  982. data/dashboard/node_modules/@vitejs/plugin-react/package.json +62 -0
  983. data/dashboard/node_modules/baseline-browser-mapping/LICENSE.txt +201 -0
  984. data/dashboard/node_modules/baseline-browser-mapping/README.md +431 -0
  985. data/dashboard/node_modules/baseline-browser-mapping/dist/cli.js +2 -0
  986. data/dashboard/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
  987. data/dashboard/node_modules/baseline-browser-mapping/dist/index.d.ts +90 -0
  988. data/dashboard/node_modules/baseline-browser-mapping/dist/index.js +1 -0
  989. data/dashboard/node_modules/baseline-browser-mapping/package.json +59 -0
  990. data/dashboard/node_modules/browserslist/LICENSE +20 -0
  991. data/dashboard/node_modules/browserslist/README.md +65 -0
  992. data/dashboard/node_modules/browserslist/browser.js +54 -0
  993. data/dashboard/node_modules/browserslist/cli.js +156 -0
  994. data/dashboard/node_modules/browserslist/error.d.ts +7 -0
  995. data/dashboard/node_modules/browserslist/error.js +12 -0
  996. data/dashboard/node_modules/browserslist/index.d.ts +224 -0
  997. data/dashboard/node_modules/browserslist/index.js +1322 -0
  998. data/dashboard/node_modules/browserslist/node.js +497 -0
  999. data/dashboard/node_modules/browserslist/package.json +45 -0
  1000. data/dashboard/node_modules/browserslist/parse.js +78 -0
  1001. data/dashboard/node_modules/caniuse-lite/LICENSE +395 -0
  1002. data/dashboard/node_modules/caniuse-lite/README.md +6 -0
  1003. data/dashboard/node_modules/caniuse-lite/data/agents.js +1 -0
  1004. data/dashboard/node_modules/caniuse-lite/data/browserVersions.js +1 -0
  1005. data/dashboard/node_modules/caniuse-lite/data/browsers.js +1 -0
  1006. data/dashboard/node_modules/caniuse-lite/data/features/aac.js +1 -0
  1007. data/dashboard/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
  1008. data/dashboard/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
  1009. data/dashboard/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
  1010. data/dashboard/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
  1011. data/dashboard/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
  1012. data/dashboard/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
  1013. data/dashboard/node_modules/caniuse-lite/data/features/apng.js +1 -0
  1014. data/dashboard/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
  1015. data/dashboard/node_modules/caniuse-lite/data/features/array-find.js +1 -0
  1016. data/dashboard/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
  1017. data/dashboard/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
  1018. data/dashboard/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
  1019. data/dashboard/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
  1020. data/dashboard/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
  1021. data/dashboard/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
  1022. data/dashboard/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
  1023. data/dashboard/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
  1024. data/dashboard/node_modules/caniuse-lite/data/features/audio.js +1 -0
  1025. data/dashboard/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
  1026. data/dashboard/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
  1027. data/dashboard/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
  1028. data/dashboard/node_modules/caniuse-lite/data/features/av1.js +1 -0
  1029. data/dashboard/node_modules/caniuse-lite/data/features/avif.js +1 -0
  1030. data/dashboard/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
  1031. data/dashboard/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
  1032. data/dashboard/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
  1033. data/dashboard/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
  1034. data/dashboard/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
  1035. data/dashboard/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
  1036. data/dashboard/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
  1037. data/dashboard/node_modules/caniuse-lite/data/features/beacon.js +1 -0
  1038. data/dashboard/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
  1039. data/dashboard/node_modules/caniuse-lite/data/features/bigint.js +1 -0
  1040. data/dashboard/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
  1041. data/dashboard/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
  1042. data/dashboard/node_modules/caniuse-lite/data/features/border-image.js +1 -0
  1043. data/dashboard/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
  1044. data/dashboard/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
  1045. data/dashboard/node_modules/caniuse-lite/data/features/brotli.js +1 -0
  1046. data/dashboard/node_modules/caniuse-lite/data/features/calc.js +1 -0
  1047. data/dashboard/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
  1048. data/dashboard/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
  1049. data/dashboard/node_modules/caniuse-lite/data/features/canvas.js +1 -0
  1050. data/dashboard/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
  1051. data/dashboard/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
  1052. data/dashboard/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
  1053. data/dashboard/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
  1054. data/dashboard/node_modules/caniuse-lite/data/features/classlist.js +1 -0
  1055. data/dashboard/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
  1056. data/dashboard/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
  1057. data/dashboard/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
  1058. data/dashboard/node_modules/caniuse-lite/data/features/colr.js +1 -0
  1059. data/dashboard/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
  1060. data/dashboard/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
  1061. data/dashboard/node_modules/caniuse-lite/data/features/console-time.js +1 -0
  1062. data/dashboard/node_modules/caniuse-lite/data/features/const.js +1 -0
  1063. data/dashboard/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
  1064. data/dashboard/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
  1065. data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
  1066. data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
  1067. data/dashboard/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
  1068. data/dashboard/node_modules/caniuse-lite/data/features/cors.js +1 -0
  1069. data/dashboard/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
  1070. data/dashboard/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
  1071. data/dashboard/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
  1072. data/dashboard/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
  1073. data/dashboard/node_modules/caniuse-lite/data/features/css-all.js +1 -0
  1074. data/dashboard/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
  1075. data/dashboard/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
  1076. data/dashboard/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
  1077. data/dashboard/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
  1078. data/dashboard/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
  1079. data/dashboard/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
  1080. data/dashboard/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
  1081. data/dashboard/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
  1082. data/dashboard/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
  1083. data/dashboard/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
  1084. data/dashboard/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
  1085. data/dashboard/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
  1086. data/dashboard/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
  1087. data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
  1088. data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
  1089. data/dashboard/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
  1090. data/dashboard/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
  1091. data/dashboard/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
  1092. data/dashboard/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
  1093. data/dashboard/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
  1094. data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
  1095. data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
  1096. data/dashboard/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
  1097. data/dashboard/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
  1098. data/dashboard/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
  1099. data/dashboard/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
  1100. data/dashboard/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
  1101. data/dashboard/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
  1102. data/dashboard/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
  1103. data/dashboard/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
  1104. data/dashboard/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
  1105. data/dashboard/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
  1106. data/dashboard/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
  1107. data/dashboard/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
  1108. data/dashboard/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
  1109. data/dashboard/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
  1110. data/dashboard/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
  1111. data/dashboard/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
  1112. data/dashboard/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
  1113. data/dashboard/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
  1114. data/dashboard/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
  1115. data/dashboard/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
  1116. data/dashboard/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
  1117. data/dashboard/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
  1118. data/dashboard/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
  1119. data/dashboard/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
  1120. data/dashboard/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
  1121. data/dashboard/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
  1122. data/dashboard/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
  1123. data/dashboard/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
  1124. data/dashboard/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
  1125. data/dashboard/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
  1126. data/dashboard/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
  1127. data/dashboard/node_modules/caniuse-lite/data/features/css-has.js +1 -0
  1128. data/dashboard/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
  1129. data/dashboard/node_modules/caniuse-lite/data/features/css-if.js +1 -0
  1130. data/dashboard/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
  1131. data/dashboard/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
  1132. data/dashboard/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
  1133. data/dashboard/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
  1134. data/dashboard/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
  1135. data/dashboard/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
  1136. data/dashboard/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
  1137. data/dashboard/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
  1138. data/dashboard/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
  1139. data/dashboard/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
  1140. data/dashboard/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
  1141. data/dashboard/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
  1142. data/dashboard/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
  1143. data/dashboard/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
  1144. data/dashboard/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
  1145. data/dashboard/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
  1146. data/dashboard/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
  1147. data/dashboard/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
  1148. data/dashboard/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
  1149. data/dashboard/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
  1150. data/dashboard/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
  1151. data/dashboard/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
  1152. data/dashboard/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
  1153. data/dashboard/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
  1154. data/dashboard/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
  1155. data/dashboard/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
  1156. data/dashboard/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
  1157. data/dashboard/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
  1158. data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
  1159. data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
  1160. data/dashboard/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
  1161. data/dashboard/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
  1162. data/dashboard/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
  1163. data/dashboard/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
  1164. data/dashboard/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
  1165. data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
  1166. data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
  1167. data/dashboard/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
  1168. data/dashboard/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
  1169. data/dashboard/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
  1170. data/dashboard/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
  1171. data/dashboard/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
  1172. data/dashboard/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
  1173. data/dashboard/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
  1174. data/dashboard/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
  1175. data/dashboard/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
  1176. data/dashboard/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
  1177. data/dashboard/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
  1178. data/dashboard/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
  1179. data/dashboard/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
  1180. data/dashboard/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
  1181. data/dashboard/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
  1182. data/dashboard/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
  1183. data/dashboard/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
  1184. data/dashboard/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
  1185. data/dashboard/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
  1186. data/dashboard/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
  1187. data/dashboard/node_modules/caniuse-lite/data/features/css-table.js +1 -0
  1188. data/dashboard/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
  1189. data/dashboard/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
  1190. data/dashboard/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
  1191. data/dashboard/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
  1192. data/dashboard/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
  1193. data/dashboard/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
  1194. data/dashboard/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
  1195. data/dashboard/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
  1196. data/dashboard/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
  1197. data/dashboard/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
  1198. data/dashboard/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
  1199. data/dashboard/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
  1200. data/dashboard/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
  1201. data/dashboard/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
  1202. data/dashboard/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
  1203. data/dashboard/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
  1204. data/dashboard/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
  1205. data/dashboard/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
  1206. data/dashboard/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
  1207. data/dashboard/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
  1208. data/dashboard/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
  1209. data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
  1210. data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
  1211. data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
  1212. data/dashboard/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
  1213. data/dashboard/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
  1214. data/dashboard/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
  1215. data/dashboard/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
  1216. data/dashboard/node_modules/caniuse-lite/data/features/customevent.js +1 -0
  1217. data/dashboard/node_modules/caniuse-lite/data/features/datalist.js +1 -0
  1218. data/dashboard/node_modules/caniuse-lite/data/features/dataset.js +1 -0
  1219. data/dashboard/node_modules/caniuse-lite/data/features/datauri.js +1 -0
  1220. data/dashboard/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
  1221. data/dashboard/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
  1222. data/dashboard/node_modules/caniuse-lite/data/features/decorators.js +1 -0
  1223. data/dashboard/node_modules/caniuse-lite/data/features/details.js +1 -0
  1224. data/dashboard/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
  1225. data/dashboard/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
  1226. data/dashboard/node_modules/caniuse-lite/data/features/dialog.js +1 -0
  1227. data/dashboard/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
  1228. data/dashboard/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
  1229. data/dashboard/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
  1230. data/dashboard/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
  1231. data/dashboard/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
  1232. data/dashboard/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
  1233. data/dashboard/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
  1234. data/dashboard/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
  1235. data/dashboard/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
  1236. data/dashboard/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
  1237. data/dashboard/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
  1238. data/dashboard/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
  1239. data/dashboard/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
  1240. data/dashboard/node_modules/caniuse-lite/data/features/download.js +1 -0
  1241. data/dashboard/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
  1242. data/dashboard/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
  1243. data/dashboard/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
  1244. data/dashboard/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
  1245. data/dashboard/node_modules/caniuse-lite/data/features/eme.js +1 -0
  1246. data/dashboard/node_modules/caniuse-lite/data/features/eot.js +1 -0
  1247. data/dashboard/node_modules/caniuse-lite/data/features/es5.js +1 -0
  1248. data/dashboard/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
  1249. data/dashboard/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
  1250. data/dashboard/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
  1251. data/dashboard/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
  1252. data/dashboard/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
  1253. data/dashboard/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
  1254. data/dashboard/node_modules/caniuse-lite/data/features/es6.js +1 -0
  1255. data/dashboard/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
  1256. data/dashboard/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
  1257. data/dashboard/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
  1258. data/dashboard/node_modules/caniuse-lite/data/features/fetch.js +1 -0
  1259. data/dashboard/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
  1260. data/dashboard/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
  1261. data/dashboard/node_modules/caniuse-lite/data/features/filereader.js +1 -0
  1262. data/dashboard/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
  1263. data/dashboard/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
  1264. data/dashboard/node_modules/caniuse-lite/data/features/flac.js +1 -0
  1265. data/dashboard/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
  1266. data/dashboard/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
  1267. data/dashboard/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
  1268. data/dashboard/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
  1269. data/dashboard/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
  1270. data/dashboard/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
  1271. data/dashboard/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
  1272. data/dashboard/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
  1273. data/dashboard/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
  1274. data/dashboard/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
  1275. data/dashboard/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
  1276. data/dashboard/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
  1277. data/dashboard/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
  1278. data/dashboard/node_modules/caniuse-lite/data/features/fontface.js +1 -0
  1279. data/dashboard/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
  1280. data/dashboard/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
  1281. data/dashboard/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
  1282. data/dashboard/node_modules/caniuse-lite/data/features/forms.js +1 -0
  1283. data/dashboard/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
  1284. data/dashboard/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
  1285. data/dashboard/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
  1286. data/dashboard/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
  1287. data/dashboard/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
  1288. data/dashboard/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
  1289. data/dashboard/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
  1290. data/dashboard/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
  1291. data/dashboard/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
  1292. data/dashboard/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
  1293. data/dashboard/node_modules/caniuse-lite/data/features/heif.js +1 -0
  1294. data/dashboard/node_modules/caniuse-lite/data/features/hevc.js +1 -0
  1295. data/dashboard/node_modules/caniuse-lite/data/features/hidden.js +1 -0
  1296. data/dashboard/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
  1297. data/dashboard/node_modules/caniuse-lite/data/features/history.js +1 -0
  1298. data/dashboard/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
  1299. data/dashboard/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
  1300. data/dashboard/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
  1301. data/dashboard/node_modules/caniuse-lite/data/features/http2.js +1 -0
  1302. data/dashboard/node_modules/caniuse-lite/data/features/http3.js +1 -0
  1303. data/dashboard/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
  1304. data/dashboard/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
  1305. data/dashboard/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
  1306. data/dashboard/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
  1307. data/dashboard/node_modules/caniuse-lite/data/features/ime.js +1 -0
  1308. data/dashboard/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
  1309. data/dashboard/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
  1310. data/dashboard/node_modules/caniuse-lite/data/features/imports.js +1 -0
  1311. data/dashboard/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
  1312. data/dashboard/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
  1313. data/dashboard/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
  1314. data/dashboard/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
  1315. data/dashboard/node_modules/caniuse-lite/data/features/innertext.js +1 -0
  1316. data/dashboard/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
  1317. data/dashboard/node_modules/caniuse-lite/data/features/input-color.js +1 -0
  1318. data/dashboard/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
  1319. data/dashboard/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
  1320. data/dashboard/node_modules/caniuse-lite/data/features/input-event.js +1 -0
  1321. data/dashboard/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
  1322. data/dashboard/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
  1323. data/dashboard/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
  1324. data/dashboard/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
  1325. data/dashboard/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
  1326. data/dashboard/node_modules/caniuse-lite/data/features/input-number.js +1 -0
  1327. data/dashboard/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
  1328. data/dashboard/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
  1329. data/dashboard/node_modules/caniuse-lite/data/features/input-range.js +1 -0
  1330. data/dashboard/node_modules/caniuse-lite/data/features/input-search.js +1 -0
  1331. data/dashboard/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
  1332. data/dashboard/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
  1333. data/dashboard/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
  1334. data/dashboard/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
  1335. data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
  1336. data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
  1337. data/dashboard/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
  1338. data/dashboard/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
  1339. data/dashboard/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
  1340. data/dashboard/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
  1341. data/dashboard/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
  1342. data/dashboard/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
  1343. data/dashboard/node_modules/caniuse-lite/data/features/json.js +1 -0
  1344. data/dashboard/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
  1345. data/dashboard/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
  1346. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
  1347. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
  1348. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
  1349. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
  1350. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
  1351. data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
  1352. data/dashboard/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
  1353. data/dashboard/node_modules/caniuse-lite/data/features/let.js +1 -0
  1354. data/dashboard/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
  1355. data/dashboard/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
  1356. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
  1357. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
  1358. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
  1359. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
  1360. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
  1361. data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
  1362. data/dashboard/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
  1363. data/dashboard/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
  1364. data/dashboard/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
  1365. data/dashboard/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
  1366. data/dashboard/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
  1367. data/dashboard/node_modules/caniuse-lite/data/features/mathml.js +1 -0
  1368. data/dashboard/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
  1369. data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
  1370. data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
  1371. data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
  1372. data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
  1373. data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
  1374. data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
  1375. data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
  1376. data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
  1377. data/dashboard/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
  1378. data/dashboard/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
  1379. data/dashboard/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
  1380. data/dashboard/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
  1381. data/dashboard/node_modules/caniuse-lite/data/features/menu.js +1 -0
  1382. data/dashboard/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
  1383. data/dashboard/node_modules/caniuse-lite/data/features/meter.js +1 -0
  1384. data/dashboard/node_modules/caniuse-lite/data/features/midi.js +1 -0
  1385. data/dashboard/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
  1386. data/dashboard/node_modules/caniuse-lite/data/features/mp3.js +1 -0
  1387. data/dashboard/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
  1388. data/dashboard/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
  1389. data/dashboard/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
  1390. data/dashboard/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
  1391. data/dashboard/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
  1392. data/dashboard/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
  1393. data/dashboard/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
  1394. data/dashboard/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  1395. data/dashboard/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
  1396. data/dashboard/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
  1397. data/dashboard/node_modules/caniuse-lite/data/features/notifications.js +1 -0
  1398. data/dashboard/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
  1399. data/dashboard/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
  1400. data/dashboard/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
  1401. data/dashboard/node_modules/caniuse-lite/data/features/object-values.js +1 -0
  1402. data/dashboard/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
  1403. data/dashboard/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
  1404. data/dashboard/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
  1405. data/dashboard/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
  1406. data/dashboard/node_modules/caniuse-lite/data/features/ogv.js +1 -0
  1407. data/dashboard/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
  1408. data/dashboard/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
  1409. data/dashboard/node_modules/caniuse-lite/data/features/online-status.js +1 -0
  1410. data/dashboard/node_modules/caniuse-lite/data/features/opus.js +1 -0
  1411. data/dashboard/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
  1412. data/dashboard/node_modules/caniuse-lite/data/features/outline.js +1 -0
  1413. data/dashboard/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
  1414. data/dashboard/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
  1415. data/dashboard/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
  1416. data/dashboard/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
  1417. data/dashboard/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
  1418. data/dashboard/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
  1419. data/dashboard/node_modules/caniuse-lite/data/features/path2d.js +1 -0
  1420. data/dashboard/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
  1421. data/dashboard/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
  1422. data/dashboard/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
  1423. data/dashboard/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
  1424. data/dashboard/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
  1425. data/dashboard/node_modules/caniuse-lite/data/features/picture.js +1 -0
  1426. data/dashboard/node_modules/caniuse-lite/data/features/ping.js +1 -0
  1427. data/dashboard/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
  1428. data/dashboard/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
  1429. data/dashboard/node_modules/caniuse-lite/data/features/pointer.js +1 -0
  1430. data/dashboard/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
  1431. data/dashboard/node_modules/caniuse-lite/data/features/portals.js +1 -0
  1432. data/dashboard/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
  1433. data/dashboard/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
  1434. data/dashboard/node_modules/caniuse-lite/data/features/progress.js +1 -0
  1435. data/dashboard/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
  1436. data/dashboard/node_modules/caniuse-lite/data/features/promises.js +1 -0
  1437. data/dashboard/node_modules/caniuse-lite/data/features/proximity.js +1 -0
  1438. data/dashboard/node_modules/caniuse-lite/data/features/proxy.js +1 -0
  1439. data/dashboard/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
  1440. data/dashboard/node_modules/caniuse-lite/data/features/push-api.js +1 -0
  1441. data/dashboard/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
  1442. data/dashboard/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
  1443. data/dashboard/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
  1444. data/dashboard/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
  1445. data/dashboard/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
  1446. data/dashboard/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
  1447. data/dashboard/node_modules/caniuse-lite/data/features/rellist.js +1 -0
  1448. data/dashboard/node_modules/caniuse-lite/data/features/rem.js +1 -0
  1449. data/dashboard/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
  1450. data/dashboard/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
  1451. data/dashboard/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
  1452. data/dashboard/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
  1453. data/dashboard/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
  1454. data/dashboard/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
  1455. data/dashboard/node_modules/caniuse-lite/data/features/ruby.js +1 -0
  1456. data/dashboard/node_modules/caniuse-lite/data/features/run-in.js +1 -0
  1457. data/dashboard/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
  1458. data/dashboard/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
  1459. data/dashboard/node_modules/caniuse-lite/data/features/script-async.js +1 -0
  1460. data/dashboard/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
  1461. data/dashboard/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
  1462. data/dashboard/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
  1463. data/dashboard/node_modules/caniuse-lite/data/features/sdch.js +1 -0
  1464. data/dashboard/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
  1465. data/dashboard/node_modules/caniuse-lite/data/features/selectlist.js +1 -0
  1466. data/dashboard/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
  1467. data/dashboard/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
  1468. data/dashboard/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
  1469. data/dashboard/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
  1470. data/dashboard/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
  1471. data/dashboard/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
  1472. data/dashboard/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
  1473. data/dashboard/node_modules/caniuse-lite/data/features/sni.js +1 -0
  1474. data/dashboard/node_modules/caniuse-lite/data/features/spdy.js +1 -0
  1475. data/dashboard/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
  1476. data/dashboard/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
  1477. data/dashboard/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
  1478. data/dashboard/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
  1479. data/dashboard/node_modules/caniuse-lite/data/features/srcset.js +1 -0
  1480. data/dashboard/node_modules/caniuse-lite/data/features/stream.js +1 -0
  1481. data/dashboard/node_modules/caniuse-lite/data/features/streams.js +1 -0
  1482. data/dashboard/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
  1483. data/dashboard/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
  1484. data/dashboard/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
  1485. data/dashboard/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
  1486. data/dashboard/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
  1487. data/dashboard/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
  1488. data/dashboard/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
  1489. data/dashboard/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
  1490. data/dashboard/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
  1491. data/dashboard/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
  1492. data/dashboard/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
  1493. data/dashboard/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
  1494. data/dashboard/node_modules/caniuse-lite/data/features/svg.js +1 -0
  1495. data/dashboard/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  1496. data/dashboard/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
  1497. data/dashboard/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
  1498. data/dashboard/node_modules/caniuse-lite/data/features/template.js +1 -0
  1499. data/dashboard/node_modules/caniuse-lite/data/features/temporal.js +1 -0
  1500. data/dashboard/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
  1501. data/dashboard/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
  1502. data/dashboard/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
  1503. data/dashboard/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
  1504. data/dashboard/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
  1505. data/dashboard/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
  1506. data/dashboard/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
  1507. data/dashboard/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
  1508. data/dashboard/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
  1509. data/dashboard/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
  1510. data/dashboard/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
  1511. data/dashboard/node_modules/caniuse-lite/data/features/touch.js +1 -0
  1512. data/dashboard/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
  1513. data/dashboard/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
  1514. data/dashboard/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
  1515. data/dashboard/node_modules/caniuse-lite/data/features/ttf.js +1 -0
  1516. data/dashboard/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
  1517. data/dashboard/node_modules/caniuse-lite/data/features/u2f.js +1 -0
  1518. data/dashboard/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
  1519. data/dashboard/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
  1520. data/dashboard/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
  1521. data/dashboard/node_modules/caniuse-lite/data/features/url.js +1 -0
  1522. data/dashboard/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
  1523. data/dashboard/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
  1524. data/dashboard/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
  1525. data/dashboard/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
  1526. data/dashboard/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
  1527. data/dashboard/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
  1528. data/dashboard/node_modules/caniuse-lite/data/features/vibration.js +1 -0
  1529. data/dashboard/node_modules/caniuse-lite/data/features/video.js +1 -0
  1530. data/dashboard/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
  1531. data/dashboard/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
  1532. data/dashboard/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
  1533. data/dashboard/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
  1534. data/dashboard/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
  1535. data/dashboard/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
  1536. data/dashboard/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
  1537. data/dashboard/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
  1538. data/dashboard/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
  1539. data/dashboard/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
  1540. data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
  1541. data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
  1542. data/dashboard/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
  1543. data/dashboard/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
  1544. data/dashboard/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
  1545. data/dashboard/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
  1546. data/dashboard/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
  1547. data/dashboard/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
  1548. data/dashboard/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
  1549. data/dashboard/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
  1550. data/dashboard/node_modules/caniuse-lite/data/features/wasm.js +1 -0
  1551. data/dashboard/node_modules/caniuse-lite/data/features/wav.js +1 -0
  1552. data/dashboard/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
  1553. data/dashboard/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
  1554. data/dashboard/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
  1555. data/dashboard/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
  1556. data/dashboard/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
  1557. data/dashboard/node_modules/caniuse-lite/data/features/web-share.js +1 -0
  1558. data/dashboard/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
  1559. data/dashboard/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
  1560. data/dashboard/node_modules/caniuse-lite/data/features/webgl.js +1 -0
  1561. data/dashboard/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
  1562. data/dashboard/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
  1563. data/dashboard/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  1564. data/dashboard/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
  1565. data/dashboard/node_modules/caniuse-lite/data/features/webm.js +1 -0
  1566. data/dashboard/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
  1567. data/dashboard/node_modules/caniuse-lite/data/features/webp.js +1 -0
  1568. data/dashboard/node_modules/caniuse-lite/data/features/websockets.js +1 -0
  1569. data/dashboard/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
  1570. data/dashboard/node_modules/caniuse-lite/data/features/webusb.js +1 -0
  1571. data/dashboard/node_modules/caniuse-lite/data/features/webvr.js +1 -0
  1572. data/dashboard/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
  1573. data/dashboard/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
  1574. data/dashboard/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  1575. data/dashboard/node_modules/caniuse-lite/data/features/will-change.js +1 -0
  1576. data/dashboard/node_modules/caniuse-lite/data/features/woff.js +1 -0
  1577. data/dashboard/node_modules/caniuse-lite/data/features/woff2.js +1 -0
  1578. data/dashboard/node_modules/caniuse-lite/data/features/word-break.js +1 -0
  1579. data/dashboard/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
  1580. data/dashboard/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
  1581. data/dashboard/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
  1582. data/dashboard/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
  1583. data/dashboard/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
  1584. data/dashboard/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
  1585. data/dashboard/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
  1586. data/dashboard/node_modules/caniuse-lite/data/features/zstd.js +1 -0
  1587. data/dashboard/node_modules/caniuse-lite/data/features.js +1 -0
  1588. data/dashboard/node_modules/caniuse-lite/data/regions/AD.js +1 -0
  1589. data/dashboard/node_modules/caniuse-lite/data/regions/AE.js +1 -0
  1590. data/dashboard/node_modules/caniuse-lite/data/regions/AF.js +1 -0
  1591. data/dashboard/node_modules/caniuse-lite/data/regions/AG.js +1 -0
  1592. data/dashboard/node_modules/caniuse-lite/data/regions/AI.js +1 -0
  1593. data/dashboard/node_modules/caniuse-lite/data/regions/AL.js +1 -0
  1594. data/dashboard/node_modules/caniuse-lite/data/regions/AM.js +1 -0
  1595. data/dashboard/node_modules/caniuse-lite/data/regions/AO.js +1 -0
  1596. data/dashboard/node_modules/caniuse-lite/data/regions/AR.js +1 -0
  1597. data/dashboard/node_modules/caniuse-lite/data/regions/AS.js +1 -0
  1598. data/dashboard/node_modules/caniuse-lite/data/regions/AT.js +1 -0
  1599. data/dashboard/node_modules/caniuse-lite/data/regions/AU.js +1 -0
  1600. data/dashboard/node_modules/caniuse-lite/data/regions/AW.js +1 -0
  1601. data/dashboard/node_modules/caniuse-lite/data/regions/AX.js +1 -0
  1602. data/dashboard/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
  1603. data/dashboard/node_modules/caniuse-lite/data/regions/BA.js +1 -0
  1604. data/dashboard/node_modules/caniuse-lite/data/regions/BB.js +1 -0
  1605. data/dashboard/node_modules/caniuse-lite/data/regions/BD.js +1 -0
  1606. data/dashboard/node_modules/caniuse-lite/data/regions/BE.js +1 -0
  1607. data/dashboard/node_modules/caniuse-lite/data/regions/BF.js +1 -0
  1608. data/dashboard/node_modules/caniuse-lite/data/regions/BG.js +1 -0
  1609. data/dashboard/node_modules/caniuse-lite/data/regions/BH.js +1 -0
  1610. data/dashboard/node_modules/caniuse-lite/data/regions/BI.js +1 -0
  1611. data/dashboard/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
  1612. data/dashboard/node_modules/caniuse-lite/data/regions/BM.js +1 -0
  1613. data/dashboard/node_modules/caniuse-lite/data/regions/BN.js +1 -0
  1614. data/dashboard/node_modules/caniuse-lite/data/regions/BO.js +1 -0
  1615. data/dashboard/node_modules/caniuse-lite/data/regions/BR.js +1 -0
  1616. data/dashboard/node_modules/caniuse-lite/data/regions/BS.js +1 -0
  1617. data/dashboard/node_modules/caniuse-lite/data/regions/BT.js +1 -0
  1618. data/dashboard/node_modules/caniuse-lite/data/regions/BW.js +1 -0
  1619. data/dashboard/node_modules/caniuse-lite/data/regions/BY.js +1 -0
  1620. data/dashboard/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
  1621. data/dashboard/node_modules/caniuse-lite/data/regions/CA.js +1 -0
  1622. data/dashboard/node_modules/caniuse-lite/data/regions/CD.js +1 -0
  1623. data/dashboard/node_modules/caniuse-lite/data/regions/CF.js +1 -0
  1624. data/dashboard/node_modules/caniuse-lite/data/regions/CG.js +1 -0
  1625. data/dashboard/node_modules/caniuse-lite/data/regions/CH.js +1 -0
  1626. data/dashboard/node_modules/caniuse-lite/data/regions/CI.js +1 -0
  1627. data/dashboard/node_modules/caniuse-lite/data/regions/CK.js +1 -0
  1628. data/dashboard/node_modules/caniuse-lite/data/regions/CL.js +1 -0
  1629. data/dashboard/node_modules/caniuse-lite/data/regions/CM.js +1 -0
  1630. data/dashboard/node_modules/caniuse-lite/data/regions/CN.js +1 -0
  1631. data/dashboard/node_modules/caniuse-lite/data/regions/CO.js +1 -0
  1632. data/dashboard/node_modules/caniuse-lite/data/regions/CR.js +1 -0
  1633. data/dashboard/node_modules/caniuse-lite/data/regions/CU.js +1 -0
  1634. data/dashboard/node_modules/caniuse-lite/data/regions/CV.js +1 -0
  1635. data/dashboard/node_modules/caniuse-lite/data/regions/CX.js +1 -0
  1636. data/dashboard/node_modules/caniuse-lite/data/regions/CY.js +1 -0
  1637. data/dashboard/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
  1638. data/dashboard/node_modules/caniuse-lite/data/regions/DE.js +1 -0
  1639. data/dashboard/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
  1640. data/dashboard/node_modules/caniuse-lite/data/regions/DK.js +1 -0
  1641. data/dashboard/node_modules/caniuse-lite/data/regions/DM.js +1 -0
  1642. data/dashboard/node_modules/caniuse-lite/data/regions/DO.js +1 -0
  1643. data/dashboard/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
  1644. data/dashboard/node_modules/caniuse-lite/data/regions/EC.js +1 -0
  1645. data/dashboard/node_modules/caniuse-lite/data/regions/EE.js +1 -0
  1646. data/dashboard/node_modules/caniuse-lite/data/regions/EG.js +1 -0
  1647. data/dashboard/node_modules/caniuse-lite/data/regions/ER.js +1 -0
  1648. data/dashboard/node_modules/caniuse-lite/data/regions/ES.js +1 -0
  1649. data/dashboard/node_modules/caniuse-lite/data/regions/ET.js +1 -0
  1650. data/dashboard/node_modules/caniuse-lite/data/regions/FI.js +1 -0
  1651. data/dashboard/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
  1652. data/dashboard/node_modules/caniuse-lite/data/regions/FK.js +1 -0
  1653. data/dashboard/node_modules/caniuse-lite/data/regions/FM.js +1 -0
  1654. data/dashboard/node_modules/caniuse-lite/data/regions/FO.js +1 -0
  1655. data/dashboard/node_modules/caniuse-lite/data/regions/FR.js +1 -0
  1656. data/dashboard/node_modules/caniuse-lite/data/regions/GA.js +1 -0
  1657. data/dashboard/node_modules/caniuse-lite/data/regions/GB.js +1 -0
  1658. data/dashboard/node_modules/caniuse-lite/data/regions/GD.js +1 -0
  1659. data/dashboard/node_modules/caniuse-lite/data/regions/GE.js +1 -0
  1660. data/dashboard/node_modules/caniuse-lite/data/regions/GF.js +1 -0
  1661. data/dashboard/node_modules/caniuse-lite/data/regions/GG.js +1 -0
  1662. data/dashboard/node_modules/caniuse-lite/data/regions/GH.js +1 -0
  1663. data/dashboard/node_modules/caniuse-lite/data/regions/GI.js +1 -0
  1664. data/dashboard/node_modules/caniuse-lite/data/regions/GL.js +1 -0
  1665. data/dashboard/node_modules/caniuse-lite/data/regions/GM.js +1 -0
  1666. data/dashboard/node_modules/caniuse-lite/data/regions/GN.js +1 -0
  1667. data/dashboard/node_modules/caniuse-lite/data/regions/GP.js +1 -0
  1668. data/dashboard/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
  1669. data/dashboard/node_modules/caniuse-lite/data/regions/GR.js +1 -0
  1670. data/dashboard/node_modules/caniuse-lite/data/regions/GT.js +1 -0
  1671. data/dashboard/node_modules/caniuse-lite/data/regions/GU.js +1 -0
  1672. data/dashboard/node_modules/caniuse-lite/data/regions/GW.js +1 -0
  1673. data/dashboard/node_modules/caniuse-lite/data/regions/GY.js +1 -0
  1674. data/dashboard/node_modules/caniuse-lite/data/regions/HK.js +1 -0
  1675. data/dashboard/node_modules/caniuse-lite/data/regions/HN.js +1 -0
  1676. data/dashboard/node_modules/caniuse-lite/data/regions/HR.js +1 -0
  1677. data/dashboard/node_modules/caniuse-lite/data/regions/HT.js +1 -0
  1678. data/dashboard/node_modules/caniuse-lite/data/regions/HU.js +1 -0
  1679. data/dashboard/node_modules/caniuse-lite/data/regions/ID.js +1 -0
  1680. data/dashboard/node_modules/caniuse-lite/data/regions/IE.js +1 -0
  1681. data/dashboard/node_modules/caniuse-lite/data/regions/IL.js +1 -0
  1682. data/dashboard/node_modules/caniuse-lite/data/regions/IM.js +1 -0
  1683. data/dashboard/node_modules/caniuse-lite/data/regions/IN.js +1 -0
  1684. data/dashboard/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
  1685. data/dashboard/node_modules/caniuse-lite/data/regions/IR.js +1 -0
  1686. data/dashboard/node_modules/caniuse-lite/data/regions/IS.js +1 -0
  1687. data/dashboard/node_modules/caniuse-lite/data/regions/IT.js +1 -0
  1688. data/dashboard/node_modules/caniuse-lite/data/regions/JE.js +1 -0
  1689. data/dashboard/node_modules/caniuse-lite/data/regions/JM.js +1 -0
  1690. data/dashboard/node_modules/caniuse-lite/data/regions/JO.js +1 -0
  1691. data/dashboard/node_modules/caniuse-lite/data/regions/JP.js +1 -0
  1692. data/dashboard/node_modules/caniuse-lite/data/regions/KE.js +1 -0
  1693. data/dashboard/node_modules/caniuse-lite/data/regions/KG.js +1 -0
  1694. data/dashboard/node_modules/caniuse-lite/data/regions/KH.js +1 -0
  1695. data/dashboard/node_modules/caniuse-lite/data/regions/KI.js +1 -0
  1696. data/dashboard/node_modules/caniuse-lite/data/regions/KM.js +1 -0
  1697. data/dashboard/node_modules/caniuse-lite/data/regions/KN.js +1 -0
  1698. data/dashboard/node_modules/caniuse-lite/data/regions/KP.js +1 -0
  1699. data/dashboard/node_modules/caniuse-lite/data/regions/KR.js +1 -0
  1700. data/dashboard/node_modules/caniuse-lite/data/regions/KW.js +1 -0
  1701. data/dashboard/node_modules/caniuse-lite/data/regions/KY.js +1 -0
  1702. data/dashboard/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
  1703. data/dashboard/node_modules/caniuse-lite/data/regions/LA.js +1 -0
  1704. data/dashboard/node_modules/caniuse-lite/data/regions/LB.js +1 -0
  1705. data/dashboard/node_modules/caniuse-lite/data/regions/LC.js +1 -0
  1706. data/dashboard/node_modules/caniuse-lite/data/regions/LI.js +1 -0
  1707. data/dashboard/node_modules/caniuse-lite/data/regions/LK.js +1 -0
  1708. data/dashboard/node_modules/caniuse-lite/data/regions/LR.js +1 -0
  1709. data/dashboard/node_modules/caniuse-lite/data/regions/LS.js +1 -0
  1710. data/dashboard/node_modules/caniuse-lite/data/regions/LT.js +1 -0
  1711. data/dashboard/node_modules/caniuse-lite/data/regions/LU.js +1 -0
  1712. data/dashboard/node_modules/caniuse-lite/data/regions/LV.js +1 -0
  1713. data/dashboard/node_modules/caniuse-lite/data/regions/LY.js +1 -0
  1714. data/dashboard/node_modules/caniuse-lite/data/regions/MA.js +1 -0
  1715. data/dashboard/node_modules/caniuse-lite/data/regions/MC.js +1 -0
  1716. data/dashboard/node_modules/caniuse-lite/data/regions/MD.js +1 -0
  1717. data/dashboard/node_modules/caniuse-lite/data/regions/ME.js +1 -0
  1718. data/dashboard/node_modules/caniuse-lite/data/regions/MG.js +1 -0
  1719. data/dashboard/node_modules/caniuse-lite/data/regions/MH.js +1 -0
  1720. data/dashboard/node_modules/caniuse-lite/data/regions/MK.js +1 -0
  1721. data/dashboard/node_modules/caniuse-lite/data/regions/ML.js +1 -0
  1722. data/dashboard/node_modules/caniuse-lite/data/regions/MM.js +1 -0
  1723. data/dashboard/node_modules/caniuse-lite/data/regions/MN.js +1 -0
  1724. data/dashboard/node_modules/caniuse-lite/data/regions/MO.js +1 -0
  1725. data/dashboard/node_modules/caniuse-lite/data/regions/MP.js +1 -0
  1726. data/dashboard/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
  1727. data/dashboard/node_modules/caniuse-lite/data/regions/MR.js +1 -0
  1728. data/dashboard/node_modules/caniuse-lite/data/regions/MS.js +1 -0
  1729. data/dashboard/node_modules/caniuse-lite/data/regions/MT.js +1 -0
  1730. data/dashboard/node_modules/caniuse-lite/data/regions/MU.js +1 -0
  1731. data/dashboard/node_modules/caniuse-lite/data/regions/MV.js +1 -0
  1732. data/dashboard/node_modules/caniuse-lite/data/regions/MW.js +1 -0
  1733. data/dashboard/node_modules/caniuse-lite/data/regions/MX.js +1 -0
  1734. data/dashboard/node_modules/caniuse-lite/data/regions/MY.js +1 -0
  1735. data/dashboard/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
  1736. data/dashboard/node_modules/caniuse-lite/data/regions/NA.js +1 -0
  1737. data/dashboard/node_modules/caniuse-lite/data/regions/NC.js +1 -0
  1738. data/dashboard/node_modules/caniuse-lite/data/regions/NE.js +1 -0
  1739. data/dashboard/node_modules/caniuse-lite/data/regions/NF.js +1 -0
  1740. data/dashboard/node_modules/caniuse-lite/data/regions/NG.js +1 -0
  1741. data/dashboard/node_modules/caniuse-lite/data/regions/NI.js +1 -0
  1742. data/dashboard/node_modules/caniuse-lite/data/regions/NL.js +1 -0
  1743. data/dashboard/node_modules/caniuse-lite/data/regions/NO.js +1 -0
  1744. data/dashboard/node_modules/caniuse-lite/data/regions/NP.js +1 -0
  1745. data/dashboard/node_modules/caniuse-lite/data/regions/NR.js +1 -0
  1746. data/dashboard/node_modules/caniuse-lite/data/regions/NU.js +1 -0
  1747. data/dashboard/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
  1748. data/dashboard/node_modules/caniuse-lite/data/regions/OM.js +1 -0
  1749. data/dashboard/node_modules/caniuse-lite/data/regions/PA.js +1 -0
  1750. data/dashboard/node_modules/caniuse-lite/data/regions/PE.js +1 -0
  1751. data/dashboard/node_modules/caniuse-lite/data/regions/PF.js +1 -0
  1752. data/dashboard/node_modules/caniuse-lite/data/regions/PG.js +1 -0
  1753. data/dashboard/node_modules/caniuse-lite/data/regions/PH.js +1 -0
  1754. data/dashboard/node_modules/caniuse-lite/data/regions/PK.js +1 -0
  1755. data/dashboard/node_modules/caniuse-lite/data/regions/PL.js +1 -0
  1756. data/dashboard/node_modules/caniuse-lite/data/regions/PM.js +1 -0
  1757. data/dashboard/node_modules/caniuse-lite/data/regions/PN.js +1 -0
  1758. data/dashboard/node_modules/caniuse-lite/data/regions/PR.js +1 -0
  1759. data/dashboard/node_modules/caniuse-lite/data/regions/PS.js +1 -0
  1760. data/dashboard/node_modules/caniuse-lite/data/regions/PT.js +1 -0
  1761. data/dashboard/node_modules/caniuse-lite/data/regions/PW.js +1 -0
  1762. data/dashboard/node_modules/caniuse-lite/data/regions/PY.js +1 -0
  1763. data/dashboard/node_modules/caniuse-lite/data/regions/QA.js +1 -0
  1764. data/dashboard/node_modules/caniuse-lite/data/regions/RE.js +1 -0
  1765. data/dashboard/node_modules/caniuse-lite/data/regions/RO.js +1 -0
  1766. data/dashboard/node_modules/caniuse-lite/data/regions/RS.js +1 -0
  1767. data/dashboard/node_modules/caniuse-lite/data/regions/RU.js +1 -0
  1768. data/dashboard/node_modules/caniuse-lite/data/regions/RW.js +1 -0
  1769. data/dashboard/node_modules/caniuse-lite/data/regions/SA.js +1 -0
  1770. data/dashboard/node_modules/caniuse-lite/data/regions/SB.js +1 -0
  1771. data/dashboard/node_modules/caniuse-lite/data/regions/SC.js +1 -0
  1772. data/dashboard/node_modules/caniuse-lite/data/regions/SD.js +1 -0
  1773. data/dashboard/node_modules/caniuse-lite/data/regions/SE.js +1 -0
  1774. data/dashboard/node_modules/caniuse-lite/data/regions/SG.js +1 -0
  1775. data/dashboard/node_modules/caniuse-lite/data/regions/SH.js +1 -0
  1776. data/dashboard/node_modules/caniuse-lite/data/regions/SI.js +1 -0
  1777. data/dashboard/node_modules/caniuse-lite/data/regions/SK.js +1 -0
  1778. data/dashboard/node_modules/caniuse-lite/data/regions/SL.js +1 -0
  1779. data/dashboard/node_modules/caniuse-lite/data/regions/SM.js +1 -0
  1780. data/dashboard/node_modules/caniuse-lite/data/regions/SN.js +1 -0
  1781. data/dashboard/node_modules/caniuse-lite/data/regions/SO.js +1 -0
  1782. data/dashboard/node_modules/caniuse-lite/data/regions/SR.js +1 -0
  1783. data/dashboard/node_modules/caniuse-lite/data/regions/ST.js +1 -0
  1784. data/dashboard/node_modules/caniuse-lite/data/regions/SV.js +1 -0
  1785. data/dashboard/node_modules/caniuse-lite/data/regions/SY.js +1 -0
  1786. data/dashboard/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
  1787. data/dashboard/node_modules/caniuse-lite/data/regions/TC.js +1 -0
  1788. data/dashboard/node_modules/caniuse-lite/data/regions/TD.js +1 -0
  1789. data/dashboard/node_modules/caniuse-lite/data/regions/TG.js +1 -0
  1790. data/dashboard/node_modules/caniuse-lite/data/regions/TH.js +1 -0
  1791. data/dashboard/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
  1792. data/dashboard/node_modules/caniuse-lite/data/regions/TL.js +1 -0
  1793. data/dashboard/node_modules/caniuse-lite/data/regions/TM.js +1 -0
  1794. data/dashboard/node_modules/caniuse-lite/data/regions/TN.js +1 -0
  1795. data/dashboard/node_modules/caniuse-lite/data/regions/TO.js +1 -0
  1796. data/dashboard/node_modules/caniuse-lite/data/regions/TR.js +1 -0
  1797. data/dashboard/node_modules/caniuse-lite/data/regions/TT.js +1 -0
  1798. data/dashboard/node_modules/caniuse-lite/data/regions/TV.js +1 -0
  1799. data/dashboard/node_modules/caniuse-lite/data/regions/TW.js +1 -0
  1800. data/dashboard/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
  1801. data/dashboard/node_modules/caniuse-lite/data/regions/UA.js +1 -0
  1802. data/dashboard/node_modules/caniuse-lite/data/regions/UG.js +1 -0
  1803. data/dashboard/node_modules/caniuse-lite/data/regions/US.js +1 -0
  1804. data/dashboard/node_modules/caniuse-lite/data/regions/UY.js +1 -0
  1805. data/dashboard/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
  1806. data/dashboard/node_modules/caniuse-lite/data/regions/VA.js +1 -0
  1807. data/dashboard/node_modules/caniuse-lite/data/regions/VC.js +1 -0
  1808. data/dashboard/node_modules/caniuse-lite/data/regions/VE.js +1 -0
  1809. data/dashboard/node_modules/caniuse-lite/data/regions/VG.js +1 -0
  1810. data/dashboard/node_modules/caniuse-lite/data/regions/VI.js +1 -0
  1811. data/dashboard/node_modules/caniuse-lite/data/regions/VN.js +1 -0
  1812. data/dashboard/node_modules/caniuse-lite/data/regions/VU.js +1 -0
  1813. data/dashboard/node_modules/caniuse-lite/data/regions/WF.js +1 -0
  1814. data/dashboard/node_modules/caniuse-lite/data/regions/WS.js +1 -0
  1815. data/dashboard/node_modules/caniuse-lite/data/regions/YE.js +1 -0
  1816. data/dashboard/node_modules/caniuse-lite/data/regions/YT.js +1 -0
  1817. data/dashboard/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
  1818. data/dashboard/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
  1819. data/dashboard/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
  1820. data/dashboard/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
  1821. data/dashboard/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
  1822. data/dashboard/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
  1823. data/dashboard/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
  1824. data/dashboard/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
  1825. data/dashboard/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
  1826. data/dashboard/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
  1827. data/dashboard/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
  1828. data/dashboard/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
  1829. data/dashboard/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
  1830. data/dashboard/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
  1831. data/dashboard/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
  1832. data/dashboard/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
  1833. data/dashboard/node_modules/caniuse-lite/dist/unpacker/feature.js +52 -0
  1834. data/dashboard/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
  1835. data/dashboard/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
  1836. data/dashboard/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
  1837. data/dashboard/node_modules/caniuse-lite/package.json +34 -0
  1838. data/dashboard/node_modules/convert-source-map/LICENSE +23 -0
  1839. data/dashboard/node_modules/convert-source-map/README.md +206 -0
  1840. data/dashboard/node_modules/convert-source-map/index.js +233 -0
  1841. data/dashboard/node_modules/convert-source-map/package.json +38 -0
  1842. data/dashboard/node_modules/debug/LICENSE +20 -0
  1843. data/dashboard/node_modules/debug/README.md +481 -0
  1844. data/dashboard/node_modules/debug/package.json +64 -0
  1845. data/dashboard/node_modules/debug/src/browser.js +272 -0
  1846. data/dashboard/node_modules/debug/src/common.js +292 -0
  1847. data/dashboard/node_modules/debug/src/index.js +10 -0
  1848. data/dashboard/node_modules/debug/src/node.js +263 -0
  1849. data/dashboard/node_modules/electron-to-chromium/LICENSE +5 -0
  1850. data/dashboard/node_modules/electron-to-chromium/README.md +186 -0
  1851. data/dashboard/node_modules/electron-to-chromium/chromium-versions.js +81 -0
  1852. data/dashboard/node_modules/electron-to-chromium/chromium-versions.json +1 -0
  1853. data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.js +2539 -0
  1854. data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
  1855. data/dashboard/node_modules/electron-to-chromium/full-versions.js +1625 -0
  1856. data/dashboard/node_modules/electron-to-chromium/full-versions.json +1 -0
  1857. data/dashboard/node_modules/electron-to-chromium/index.js +36 -0
  1858. data/dashboard/node_modules/electron-to-chromium/package.json +44 -0
  1859. data/dashboard/node_modules/electron-to-chromium/versions.js +210 -0
  1860. data/dashboard/node_modules/electron-to-chromium/versions.json +1 -0
  1861. data/dashboard/node_modules/esbuild/LICENSE.md +21 -0
  1862. data/dashboard/node_modules/esbuild/README.md +3 -0
  1863. data/dashboard/node_modules/esbuild/bin/esbuild +0 -0
  1864. data/dashboard/node_modules/esbuild/install.js +289 -0
  1865. data/dashboard/node_modules/esbuild/lib/main.d.ts +716 -0
  1866. data/dashboard/node_modules/esbuild/lib/main.js +2242 -0
  1867. data/dashboard/node_modules/esbuild/package.json +49 -0
  1868. data/dashboard/node_modules/escalade/dist/index.js +22 -0
  1869. data/dashboard/node_modules/escalade/dist/index.mjs +22 -0
  1870. data/dashboard/node_modules/escalade/index.d.mts +11 -0
  1871. data/dashboard/node_modules/escalade/index.d.ts +15 -0
  1872. data/dashboard/node_modules/escalade/license +9 -0
  1873. data/dashboard/node_modules/escalade/package.json +74 -0
  1874. data/dashboard/node_modules/escalade/readme.md +211 -0
  1875. data/dashboard/node_modules/escalade/sync/index.d.mts +9 -0
  1876. data/dashboard/node_modules/escalade/sync/index.d.ts +13 -0
  1877. data/dashboard/node_modules/escalade/sync/index.js +18 -0
  1878. data/dashboard/node_modules/escalade/sync/index.mjs +18 -0
  1879. data/dashboard/node_modules/fdir/LICENSE +7 -0
  1880. data/dashboard/node_modules/fdir/README.md +91 -0
  1881. data/dashboard/node_modules/fdir/dist/index.cjs +588 -0
  1882. data/dashboard/node_modules/fdir/dist/index.d.cts +155 -0
  1883. data/dashboard/node_modules/fdir/dist/index.d.mts +155 -0
  1884. data/dashboard/node_modules/fdir/dist/index.mjs +570 -0
  1885. data/dashboard/node_modules/fdir/package.json +103 -0
  1886. data/dashboard/node_modules/fsevents/LICENSE +22 -0
  1887. data/dashboard/node_modules/fsevents/README.md +89 -0
  1888. data/dashboard/node_modules/fsevents/fsevents.d.ts +46 -0
  1889. data/dashboard/node_modules/fsevents/fsevents.js +83 -0
  1890. data/dashboard/node_modules/fsevents/fsevents.node +0 -0
  1891. data/dashboard/node_modules/fsevents/package.json +62 -0
  1892. data/dashboard/node_modules/gensync/LICENSE +7 -0
  1893. data/dashboard/node_modules/gensync/README.md +196 -0
  1894. data/dashboard/node_modules/gensync/index.js +373 -0
  1895. data/dashboard/node_modules/gensync/index.js.flow +32 -0
  1896. data/dashboard/node_modules/gensync/package.json +37 -0
  1897. data/dashboard/node_modules/gensync/test/index.test.js +489 -0
  1898. data/dashboard/node_modules/js-tokens/CHANGELOG.md +151 -0
  1899. data/dashboard/node_modules/js-tokens/LICENSE +21 -0
  1900. data/dashboard/node_modules/js-tokens/README.md +240 -0
  1901. data/dashboard/node_modules/js-tokens/index.js +23 -0
  1902. data/dashboard/node_modules/js-tokens/package.json +30 -0
  1903. data/dashboard/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  1904. data/dashboard/node_modules/jsesc/README.md +422 -0
  1905. data/dashboard/node_modules/jsesc/bin/jsesc +148 -0
  1906. data/dashboard/node_modules/jsesc/jsesc.js +337 -0
  1907. data/dashboard/node_modules/jsesc/man/jsesc.1 +94 -0
  1908. data/dashboard/node_modules/jsesc/package.json +56 -0
  1909. data/dashboard/node_modules/json5/LICENSE.md +23 -0
  1910. data/dashboard/node_modules/json5/README.md +282 -0
  1911. data/dashboard/node_modules/json5/dist/index.js +1737 -0
  1912. data/dashboard/node_modules/json5/dist/index.min.js +1 -0
  1913. data/dashboard/node_modules/json5/dist/index.min.mjs +1 -0
  1914. data/dashboard/node_modules/json5/dist/index.mjs +1426 -0
  1915. data/dashboard/node_modules/json5/lib/cli.js +152 -0
  1916. data/dashboard/node_modules/json5/lib/index.d.ts +4 -0
  1917. data/dashboard/node_modules/json5/lib/index.js +9 -0
  1918. data/dashboard/node_modules/json5/lib/parse.d.ts +15 -0
  1919. data/dashboard/node_modules/json5/lib/parse.js +1114 -0
  1920. data/dashboard/node_modules/json5/lib/register.js +13 -0
  1921. data/dashboard/node_modules/json5/lib/require.js +4 -0
  1922. data/dashboard/node_modules/json5/lib/stringify.d.ts +89 -0
  1923. data/dashboard/node_modules/json5/lib/stringify.js +261 -0
  1924. data/dashboard/node_modules/json5/lib/unicode.d.ts +3 -0
  1925. data/dashboard/node_modules/json5/lib/unicode.js +4 -0
  1926. data/dashboard/node_modules/json5/lib/util.d.ts +5 -0
  1927. data/dashboard/node_modules/json5/lib/util.js +35 -0
  1928. data/dashboard/node_modules/json5/package.json +72 -0
  1929. data/dashboard/node_modules/lru-cache/LICENSE +15 -0
  1930. data/dashboard/node_modules/lru-cache/README.md +166 -0
  1931. data/dashboard/node_modules/lru-cache/index.js +334 -0
  1932. data/dashboard/node_modules/lru-cache/package.json +32 -0
  1933. data/dashboard/node_modules/ms/index.js +162 -0
  1934. data/dashboard/node_modules/ms/license.md +21 -0
  1935. data/dashboard/node_modules/ms/package.json +38 -0
  1936. data/dashboard/node_modules/ms/readme.md +59 -0
  1937. data/dashboard/node_modules/nanoid/LICENSE +20 -0
  1938. data/dashboard/node_modules/nanoid/README.md +39 -0
  1939. data/dashboard/node_modules/nanoid/async/index.browser.cjs +69 -0
  1940. data/dashboard/node_modules/nanoid/async/index.browser.js +34 -0
  1941. data/dashboard/node_modules/nanoid/async/index.cjs +71 -0
  1942. data/dashboard/node_modules/nanoid/async/index.d.ts +56 -0
  1943. data/dashboard/node_modules/nanoid/async/index.js +35 -0
  1944. data/dashboard/node_modules/nanoid/async/index.native.js +26 -0
  1945. data/dashboard/node_modules/nanoid/async/package.json +12 -0
  1946. data/dashboard/node_modules/nanoid/bin/nanoid.cjs +55 -0
  1947. data/dashboard/node_modules/nanoid/index.browser.cjs +72 -0
  1948. data/dashboard/node_modules/nanoid/index.browser.js +34 -0
  1949. data/dashboard/node_modules/nanoid/index.cjs +85 -0
  1950. data/dashboard/node_modules/nanoid/index.d.cts +91 -0
  1951. data/dashboard/node_modules/nanoid/index.d.ts +91 -0
  1952. data/dashboard/node_modules/nanoid/index.js +45 -0
  1953. data/dashboard/node_modules/nanoid/nanoid.js +1 -0
  1954. data/dashboard/node_modules/nanoid/non-secure/index.cjs +34 -0
  1955. data/dashboard/node_modules/nanoid/non-secure/index.d.ts +33 -0
  1956. data/dashboard/node_modules/nanoid/non-secure/index.js +21 -0
  1957. data/dashboard/node_modules/nanoid/non-secure/package.json +6 -0
  1958. data/dashboard/node_modules/nanoid/package.json +89 -0
  1959. data/dashboard/node_modules/nanoid/url-alphabet/index.cjs +7 -0
  1960. data/dashboard/node_modules/nanoid/url-alphabet/index.js +3 -0
  1961. data/dashboard/node_modules/nanoid/url-alphabet/package.json +6 -0
  1962. data/dashboard/node_modules/node-releases/LICENSE +21 -0
  1963. data/dashboard/node_modules/node-releases/README.md +12 -0
  1964. data/dashboard/node_modules/node-releases/data/processed/envs.json +1 -0
  1965. data/dashboard/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
  1966. data/dashboard/node_modules/node-releases/package.json +22 -0
  1967. data/dashboard/node_modules/picocolors/LICENSE +15 -0
  1968. data/dashboard/node_modules/picocolors/README.md +21 -0
  1969. data/dashboard/node_modules/picocolors/package.json +25 -0
  1970. data/dashboard/node_modules/picocolors/picocolors.browser.js +4 -0
  1971. data/dashboard/node_modules/picocolors/picocolors.d.ts +5 -0
  1972. data/dashboard/node_modules/picocolors/picocolors.js +75 -0
  1973. data/dashboard/node_modules/picocolors/types.d.ts +51 -0
  1974. data/dashboard/node_modules/picomatch/LICENSE +21 -0
  1975. data/dashboard/node_modules/picomatch/README.md +738 -0
  1976. data/dashboard/node_modules/picomatch/index.js +17 -0
  1977. data/dashboard/node_modules/picomatch/lib/constants.js +180 -0
  1978. data/dashboard/node_modules/picomatch/lib/parse.js +1085 -0
  1979. data/dashboard/node_modules/picomatch/lib/picomatch.js +341 -0
  1980. data/dashboard/node_modules/picomatch/lib/scan.js +391 -0
  1981. data/dashboard/node_modules/picomatch/lib/utils.js +72 -0
  1982. data/dashboard/node_modules/picomatch/package.json +83 -0
  1983. data/dashboard/node_modules/picomatch/posix.js +3 -0
  1984. data/dashboard/node_modules/postcss/LICENSE +20 -0
  1985. data/dashboard/node_modules/postcss/README.md +29 -0
  1986. data/dashboard/node_modules/postcss/lib/at-rule.d.ts +140 -0
  1987. data/dashboard/node_modules/postcss/lib/at-rule.js +25 -0
  1988. data/dashboard/node_modules/postcss/lib/comment.d.ts +68 -0
  1989. data/dashboard/node_modules/postcss/lib/comment.js +13 -0
  1990. data/dashboard/node_modules/postcss/lib/container.d.ts +483 -0
  1991. data/dashboard/node_modules/postcss/lib/container.js +447 -0
  1992. data/dashboard/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
  1993. data/dashboard/node_modules/postcss/lib/css-syntax-error.js +133 -0
  1994. data/dashboard/node_modules/postcss/lib/declaration.d.ts +151 -0
  1995. data/dashboard/node_modules/postcss/lib/declaration.js +24 -0
  1996. data/dashboard/node_modules/postcss/lib/document.d.ts +69 -0
  1997. data/dashboard/node_modules/postcss/lib/document.js +33 -0
  1998. data/dashboard/node_modules/postcss/lib/fromJSON.d.ts +9 -0
  1999. data/dashboard/node_modules/postcss/lib/fromJSON.js +54 -0
  2000. data/dashboard/node_modules/postcss/lib/input.d.ts +227 -0
  2001. data/dashboard/node_modules/postcss/lib/input.js +265 -0
  2002. data/dashboard/node_modules/postcss/lib/lazy-result.d.ts +190 -0
  2003. data/dashboard/node_modules/postcss/lib/lazy-result.js +550 -0
  2004. data/dashboard/node_modules/postcss/lib/list.d.ts +60 -0
  2005. data/dashboard/node_modules/postcss/lib/list.js +58 -0
  2006. data/dashboard/node_modules/postcss/lib/map-generator.js +368 -0
  2007. data/dashboard/node_modules/postcss/lib/no-work-result.d.ts +46 -0
  2008. data/dashboard/node_modules/postcss/lib/no-work-result.js +138 -0
  2009. data/dashboard/node_modules/postcss/lib/node.d.ts +556 -0
  2010. data/dashboard/node_modules/postcss/lib/node.js +449 -0
  2011. data/dashboard/node_modules/postcss/lib/parse.d.ts +9 -0
  2012. data/dashboard/node_modules/postcss/lib/parse.js +42 -0
  2013. data/dashboard/node_modules/postcss/lib/parser.js +611 -0
  2014. data/dashboard/node_modules/postcss/lib/postcss.d.mts +69 -0
  2015. data/dashboard/node_modules/postcss/lib/postcss.d.ts +458 -0
  2016. data/dashboard/node_modules/postcss/lib/postcss.js +101 -0
  2017. data/dashboard/node_modules/postcss/lib/postcss.mjs +30 -0
  2018. data/dashboard/node_modules/postcss/lib/previous-map.d.ts +81 -0
  2019. data/dashboard/node_modules/postcss/lib/previous-map.js +144 -0
  2020. data/dashboard/node_modules/postcss/lib/processor.d.ts +115 -0
  2021. data/dashboard/node_modules/postcss/lib/processor.js +67 -0
  2022. data/dashboard/node_modules/postcss/lib/result.d.ts +205 -0
  2023. data/dashboard/node_modules/postcss/lib/result.js +42 -0
  2024. data/dashboard/node_modules/postcss/lib/root.d.ts +87 -0
  2025. data/dashboard/node_modules/postcss/lib/root.js +61 -0
  2026. data/dashboard/node_modules/postcss/lib/rule.d.ts +126 -0
  2027. data/dashboard/node_modules/postcss/lib/rule.js +27 -0
  2028. data/dashboard/node_modules/postcss/lib/stringifier.d.ts +46 -0
  2029. data/dashboard/node_modules/postcss/lib/stringifier.js +353 -0
  2030. data/dashboard/node_modules/postcss/lib/stringify.d.ts +9 -0
  2031. data/dashboard/node_modules/postcss/lib/stringify.js +11 -0
  2032. data/dashboard/node_modules/postcss/lib/symbols.js +5 -0
  2033. data/dashboard/node_modules/postcss/lib/terminal-highlight.js +70 -0
  2034. data/dashboard/node_modules/postcss/lib/tokenize.js +266 -0
  2035. data/dashboard/node_modules/postcss/lib/warn-once.js +13 -0
  2036. data/dashboard/node_modules/postcss/lib/warning.d.ts +147 -0
  2037. data/dashboard/node_modules/postcss/lib/warning.js +37 -0
  2038. data/dashboard/node_modules/postcss/package.json +88 -0
  2039. data/dashboard/node_modules/react/LICENSE +21 -0
  2040. data/dashboard/node_modules/react/README.md +37 -0
  2041. data/dashboard/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  2042. data/dashboard/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  2043. data/dashboard/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  2044. data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.development.js +349 -0
  2045. data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  2046. data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  2047. data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +385 -0
  2048. data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  2049. data/dashboard/node_modules/react/cjs/react-jsx-runtime.development.js +358 -0
  2050. data/dashboard/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  2051. data/dashboard/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  2052. data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +385 -0
  2053. data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  2054. data/dashboard/node_modules/react/cjs/react.development.js +1243 -0
  2055. data/dashboard/node_modules/react/cjs/react.production.js +546 -0
  2056. data/dashboard/node_modules/react/cjs/react.react-server.development.js +817 -0
  2057. data/dashboard/node_modules/react/cjs/react.react-server.production.js +429 -0
  2058. data/dashboard/node_modules/react/compiler-runtime.js +14 -0
  2059. data/dashboard/node_modules/react/index.js +7 -0
  2060. data/dashboard/node_modules/react/jsx-dev-runtime.js +7 -0
  2061. data/dashboard/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  2062. data/dashboard/node_modules/react/jsx-runtime.js +7 -0
  2063. data/dashboard/node_modules/react/jsx-runtime.react-server.js +7 -0
  2064. data/dashboard/node_modules/react/package.json +51 -0
  2065. data/dashboard/node_modules/react/react.react-server.js +7 -0
  2066. data/dashboard/node_modules/react-dom/LICENSE +21 -0
  2067. data/dashboard/node_modules/react-dom/README.md +60 -0
  2068. data/dashboard/node_modules/react-dom/cjs/react-dom-client.development.js +24993 -0
  2069. data/dashboard/node_modules/react-dom/cjs/react-dom-client.production.js +15393 -0
  2070. data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.development.js +25380 -0
  2071. data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.profiling.js +16218 -0
  2072. data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +9035 -0
  2073. data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +5892 -0
  2074. data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +9035 -0
  2075. data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +5972 -0
  2076. data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.development.js +9424 -0
  2077. data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.production.js +6384 -0
  2078. data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.development.js +8738 -0
  2079. data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.production.js +5967 -0
  2080. data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.development.js +9443 -0
  2081. data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.production.js +6477 -0
  2082. data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.development.js +9317 -0
  2083. data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.production.js +6372 -0
  2084. data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.development.js +24 -0
  2085. data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.production.js +21 -0
  2086. data/dashboard/node_modules/react-dom/cjs/react-dom.development.js +424 -0
  2087. data/dashboard/node_modules/react-dom/cjs/react-dom.production.js +210 -0
  2088. data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.development.js +340 -0
  2089. data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.production.js +152 -0
  2090. data/dashboard/node_modules/react-dom/client.js +38 -0
  2091. data/dashboard/node_modules/react-dom/client.react-server.js +5 -0
  2092. data/dashboard/node_modules/react-dom/index.js +38 -0
  2093. data/dashboard/node_modules/react-dom/package.json +117 -0
  2094. data/dashboard/node_modules/react-dom/profiling.js +38 -0
  2095. data/dashboard/node_modules/react-dom/profiling.react-server.js +5 -0
  2096. data/dashboard/node_modules/react-dom/react-dom.react-server.js +7 -0
  2097. data/dashboard/node_modules/react-dom/server.browser.js +18 -0
  2098. data/dashboard/node_modules/react-dom/server.bun.js +19 -0
  2099. data/dashboard/node_modules/react-dom/server.edge.js +19 -0
  2100. data/dashboard/node_modules/react-dom/server.js +3 -0
  2101. data/dashboard/node_modules/react-dom/server.node.js +18 -0
  2102. data/dashboard/node_modules/react-dom/server.react-server.js +5 -0
  2103. data/dashboard/node_modules/react-dom/static.browser.js +12 -0
  2104. data/dashboard/node_modules/react-dom/static.edge.js +12 -0
  2105. data/dashboard/node_modules/react-dom/static.js +3 -0
  2106. data/dashboard/node_modules/react-dom/static.node.js +12 -0
  2107. data/dashboard/node_modules/react-dom/static.react-server.js +5 -0
  2108. data/dashboard/node_modules/react-dom/test-utils.js +7 -0
  2109. data/dashboard/node_modules/react-refresh/LICENSE +21 -0
  2110. data/dashboard/node_modules/react-refresh/README.md +5 -0
  2111. data/dashboard/node_modules/react-refresh/babel.js +7 -0
  2112. data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.development.js +601 -0
  2113. data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.production.js +586 -0
  2114. data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.development.js +338 -0
  2115. data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.production.js +14 -0
  2116. data/dashboard/node_modules/react-refresh/package.json +38 -0
  2117. data/dashboard/node_modules/react-refresh/runtime.js +7 -0
  2118. data/dashboard/node_modules/rollup/LICENSE.md +679 -0
  2119. data/dashboard/node_modules/rollup/README.md +134 -0
  2120. data/dashboard/node_modules/rollup/dist/bin/rollup +1885 -0
  2121. data/dashboard/node_modules/rollup/dist/es/getLogFilter.js +64 -0
  2122. data/dashboard/node_modules/rollup/dist/es/package.json +1 -0
  2123. data/dashboard/node_modules/rollup/dist/es/parseAst.js +12 -0
  2124. data/dashboard/node_modules/rollup/dist/es/rollup.js +17 -0
  2125. data/dashboard/node_modules/rollup/dist/es/shared/node-entry.js +23892 -0
  2126. data/dashboard/node_modules/rollup/dist/es/shared/parseAst.js +2086 -0
  2127. data/dashboard/node_modules/rollup/dist/es/shared/watch.js +9297 -0
  2128. data/dashboard/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
  2129. data/dashboard/node_modules/rollup/dist/getLogFilter.js +69 -0
  2130. data/dashboard/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
  2131. data/dashboard/node_modules/rollup/dist/loadConfigFile.js +29 -0
  2132. data/dashboard/node_modules/rollup/dist/native.js +113 -0
  2133. data/dashboard/node_modules/rollup/dist/parseAst.d.ts +4 -0
  2134. data/dashboard/node_modules/rollup/dist/parseAst.js +22 -0
  2135. data/dashboard/node_modules/rollup/dist/rollup.d.ts +1182 -0
  2136. data/dashboard/node_modules/rollup/dist/rollup.js +127 -0
  2137. data/dashboard/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
  2138. data/dashboard/node_modules/rollup/dist/shared/index.js +9003 -0
  2139. data/dashboard/node_modules/rollup/dist/shared/loadConfigFile.js +572 -0
  2140. data/dashboard/node_modules/rollup/dist/shared/parseAst.js +2318 -0
  2141. data/dashboard/node_modules/rollup/dist/shared/rollup.js +23814 -0
  2142. data/dashboard/node_modules/rollup/dist/shared/watch-cli.js +542 -0
  2143. data/dashboard/node_modules/rollup/dist/shared/watch.js +324 -0
  2144. data/dashboard/node_modules/rollup/package.json +268 -0
  2145. data/dashboard/node_modules/scheduler/LICENSE +21 -0
  2146. data/dashboard/node_modules/scheduler/README.md +9 -0
  2147. data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
  2148. data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
  2149. data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
  2150. data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
  2151. data/dashboard/node_modules/scheduler/cjs/scheduler.development.js +364 -0
  2152. data/dashboard/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
  2153. data/dashboard/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
  2154. data/dashboard/node_modules/scheduler/cjs/scheduler.production.js +340 -0
  2155. data/dashboard/node_modules/scheduler/index.js +7 -0
  2156. data/dashboard/node_modules/scheduler/index.native.js +7 -0
  2157. data/dashboard/node_modules/scheduler/package.json +27 -0
  2158. data/dashboard/node_modules/scheduler/unstable_mock.js +7 -0
  2159. data/dashboard/node_modules/scheduler/unstable_post_task.js +7 -0
  2160. data/dashboard/node_modules/semver/LICENSE +15 -0
  2161. data/dashboard/node_modules/semver/README.md +443 -0
  2162. data/dashboard/node_modules/semver/bin/semver.js +174 -0
  2163. data/dashboard/node_modules/semver/package.json +38 -0
  2164. data/dashboard/node_modules/semver/range.bnf +16 -0
  2165. data/dashboard/node_modules/semver/semver.js +1643 -0
  2166. data/dashboard/node_modules/source-map-js/LICENSE +28 -0
  2167. data/dashboard/node_modules/source-map-js/README.md +765 -0
  2168. data/dashboard/node_modules/source-map-js/lib/array-set.js +121 -0
  2169. data/dashboard/node_modules/source-map-js/lib/base64-vlq.js +140 -0
  2170. data/dashboard/node_modules/source-map-js/lib/base64.js +67 -0
  2171. data/dashboard/node_modules/source-map-js/lib/binary-search.js +111 -0
  2172. data/dashboard/node_modules/source-map-js/lib/mapping-list.js +79 -0
  2173. data/dashboard/node_modules/source-map-js/lib/quick-sort.js +132 -0
  2174. data/dashboard/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
  2175. data/dashboard/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
  2176. data/dashboard/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
  2177. data/dashboard/node_modules/source-map-js/lib/source-map-generator.js +444 -0
  2178. data/dashboard/node_modules/source-map-js/lib/source-node.d.ts +1 -0
  2179. data/dashboard/node_modules/source-map-js/lib/source-node.js +413 -0
  2180. data/dashboard/node_modules/source-map-js/lib/util.js +594 -0
  2181. data/dashboard/node_modules/source-map-js/package.json +71 -0
  2182. data/dashboard/node_modules/source-map-js/source-map.d.ts +104 -0
  2183. data/dashboard/node_modules/source-map-js/source-map.js +8 -0
  2184. data/dashboard/node_modules/tinyglobby/LICENSE +21 -0
  2185. data/dashboard/node_modules/tinyglobby/README.md +25 -0
  2186. data/dashboard/node_modules/tinyglobby/dist/index.cjs +350 -0
  2187. data/dashboard/node_modules/tinyglobby/dist/index.d.cts +147 -0
  2188. data/dashboard/node_modules/tinyglobby/dist/index.d.mts +147 -0
  2189. data/dashboard/node_modules/tinyglobby/dist/index.mjs +318 -0
  2190. data/dashboard/node_modules/tinyglobby/package.json +73 -0
  2191. data/dashboard/node_modules/update-browserslist-db/LICENSE +20 -0
  2192. data/dashboard/node_modules/update-browserslist-db/README.md +22 -0
  2193. data/dashboard/node_modules/update-browserslist-db/check-npm-version.js +17 -0
  2194. data/dashboard/node_modules/update-browserslist-db/cli.js +42 -0
  2195. data/dashboard/node_modules/update-browserslist-db/index.d.ts +6 -0
  2196. data/dashboard/node_modules/update-browserslist-db/index.js +341 -0
  2197. data/dashboard/node_modules/update-browserslist-db/package.json +40 -0
  2198. data/dashboard/node_modules/update-browserslist-db/utils.js +25 -0
  2199. data/dashboard/node_modules/vite/LICENSE.md +2173 -0
  2200. data/dashboard/node_modules/vite/README.md +20 -0
  2201. data/dashboard/node_modules/vite/bin/openChrome.js +68 -0
  2202. data/dashboard/node_modules/vite/bin/vite.js +79 -0
  2203. data/dashboard/node_modules/vite/client.d.ts +279 -0
  2204. data/dashboard/node_modules/vite/dist/client/client.mjs +1098 -0
  2205. data/dashboard/node_modules/vite/dist/client/env.mjs +19 -0
  2206. data/dashboard/node_modules/vite/dist/node/chunks/dep-BuoK8Wda.js +377 -0
  2207. data/dashboard/node_modules/vite/dist/node/chunks/dep-BvyJBvVx.js +4 -0
  2208. data/dashboard/node_modules/vite/dist/node/chunks/dep-Cs9lwdKu.js +4 -0
  2209. data/dashboard/node_modules/vite/dist/node/chunks/dep-DCVhRpiz.js +5595 -0
  2210. data/dashboard/node_modules/vite/dist/node/chunks/dep-DDbTn5rw.js +482 -0
  2211. data/dashboard/node_modules/vite/dist/node/chunks/dep-D_YDhiNx.js +4 -0
  2212. data/dashboard/node_modules/vite/dist/node/chunks/dep-M_KD0XSK.js +36707 -0
  2213. data/dashboard/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js +320 -0
  2214. data/dashboard/node_modules/vite/dist/node/chunks/dep-cWFO4sv4.js +4 -0
  2215. data/dashboard/node_modules/vite/dist/node/chunks/dep-lCKrEJQm.js +31 -0
  2216. data/dashboard/node_modules/vite/dist/node/chunks/dep-sDKrrA4S.js +6814 -0
  2217. data/dashboard/node_modules/vite/dist/node/chunks/dep-yxQqhtZq.js +4 -0
  2218. data/dashboard/node_modules/vite/dist/node/cli.js +708 -0
  2219. data/dashboard/node_modules/vite/dist/node/index.d.ts +3668 -0
  2220. data/dashboard/node_modules/vite/dist/node/index.js +30 -0
  2221. data/dashboard/node_modules/vite/dist/node/module-runner.d.ts +312 -0
  2222. data/dashboard/node_modules/vite/dist/node/module-runner.js +1133 -0
  2223. data/dashboard/node_modules/vite/dist/node/moduleRunnerTransport-BWUZBVLX.d.ts +88 -0
  2224. data/dashboard/node_modules/vite/misc/false.js +1 -0
  2225. data/dashboard/node_modules/vite/misc/true.js +1 -0
  2226. data/dashboard/node_modules/vite/package.json +201 -0
  2227. data/dashboard/node_modules/vite/types/customEvent.d.ts +45 -0
  2228. data/dashboard/node_modules/vite/types/hmrPayload.d.ts +74 -0
  2229. data/dashboard/node_modules/vite/types/hot.d.ts +39 -0
  2230. data/dashboard/node_modules/vite/types/import-meta.d.ts +5 -0
  2231. data/dashboard/node_modules/vite/types/importGlob.d.ts +89 -0
  2232. data/dashboard/node_modules/vite/types/importMeta.d.ts +31 -0
  2233. data/dashboard/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
  2234. data/dashboard/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
  2235. data/dashboard/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
  2236. data/dashboard/node_modules/vite/types/metadata.d.ts +33 -0
  2237. data/dashboard/node_modules/vite/types/package.json +4 -0
  2238. data/dashboard/node_modules/yallist/LICENSE +15 -0
  2239. data/dashboard/node_modules/yallist/README.md +204 -0
  2240. data/dashboard/node_modules/yallist/iterator.js +8 -0
  2241. data/dashboard/node_modules/yallist/package.json +29 -0
  2242. data/dashboard/node_modules/yallist/yallist.js +426 -0
  2243. data/dashboard/package-lock.json +1714 -0
  2244. data/dashboard/package.json +20 -0
  2245. data/dashboard/src/App.jsx +637 -0
  2246. data/dashboard/src/LogViewer.jsx +29 -0
  2247. data/dashboard/src/StepDetail.jsx +36 -0
  2248. data/dashboard/src/index.html +11 -0
  2249. data/dashboard/src/main.jsx +9 -0
  2250. data/dashboard/vite.config.js +10 -0
  2251. data/lib/capydash/instrumentation.rb +21 -2
  2252. data/lib/capydash/test_data_collector.rb +76 -0
  2253. data/lib/capydash/version.rb +1 -1
  2254. data/lib/capydash.rb +1 -0
  2255. metadata +2250 -2
  2256. data/capydash.gemspec +0 -30
@@ -0,0 +1,2086 @@
1
+ /*
2
+ @license
3
+ Rollup.js v4.50.1
4
+ Sun, 07 Sep 2025 10:51:49 GMT - commit 79d5563ab4787f9425a5fa317bad0d6ae4be480b
5
+
6
+ https://github.com/rollup/rollup
7
+
8
+ Released under the MIT License.
9
+ */
10
+ import { parse, parseAsync } from '../../native.js';
11
+ import { resolve, dirname, basename, extname } from 'node:path';
12
+
13
+ // This file is generated by scripts/generate-node-types.js.
14
+ // Do not edit this file directly.
15
+ const ArrowFunctionExpression = 'ArrowFunctionExpression';
16
+ const AwaitExpression = 'AwaitExpression';
17
+ const BlockStatement = 'BlockStatement';
18
+ const CallExpression = 'CallExpression';
19
+ const CatchClause = 'CatchClause';
20
+ const ExportDefaultDeclaration = 'ExportDefaultDeclaration';
21
+ const ExpressionStatement = 'ExpressionStatement';
22
+ const FunctionExpression = 'FunctionExpression';
23
+ const Identifier = 'Identifier';
24
+ const ImportExpression = 'ImportExpression';
25
+ const Literal = 'Literal';
26
+ const MemberExpression = 'MemberExpression';
27
+ const ObjectExpression = 'ObjectExpression';
28
+ const PanicError = 'PanicError';
29
+ const ParseError = 'ParseError';
30
+ const Program = 'Program';
31
+ const Property = 'Property';
32
+ const RestElement = 'RestElement';
33
+ const ReturnStatement = 'ReturnStatement';
34
+ const StaticBlock = 'StaticBlock';
35
+ const TemplateLiteral = 'TemplateLiteral';
36
+ const VariableDeclarator = 'VariableDeclarator';
37
+
38
+ const BLANK = Object.freeze(Object.create(null));
39
+ const EMPTY_OBJECT = Object.freeze({});
40
+ const EMPTY_ARRAY = Object.freeze([]);
41
+ const EMPTY_SET = Object.freeze(new (class extends Set {
42
+ add() {
43
+ throw new Error('Cannot add to empty set');
44
+ }
45
+ })());
46
+
47
+ // This file is generated by scripts/generate-string-constants.js.
48
+ // Do not edit this file directly.
49
+ const FIXED_STRINGS = [
50
+ 'var',
51
+ 'let',
52
+ 'const',
53
+ 'init',
54
+ 'get',
55
+ 'set',
56
+ 'constructor',
57
+ 'method',
58
+ '-',
59
+ '+',
60
+ '!',
61
+ '~',
62
+ 'typeof',
63
+ 'void',
64
+ 'delete',
65
+ '++',
66
+ '--',
67
+ '==',
68
+ '!=',
69
+ '===',
70
+ '!==',
71
+ '<',
72
+ '<=',
73
+ '>',
74
+ '>=',
75
+ '<<',
76
+ '>>',
77
+ '>>>',
78
+ '+',
79
+ '-',
80
+ '*',
81
+ '/',
82
+ '%',
83
+ '|',
84
+ '^',
85
+ '&',
86
+ '||',
87
+ '&&',
88
+ 'in',
89
+ 'instanceof',
90
+ '**',
91
+ '??',
92
+ '=',
93
+ '+=',
94
+ '-=',
95
+ '*=',
96
+ '/=',
97
+ '%=',
98
+ '<<=',
99
+ '>>=',
100
+ '>>>=',
101
+ '|=',
102
+ '^=',
103
+ '&=',
104
+ '**=',
105
+ '&&=',
106
+ '||=',
107
+ '??=',
108
+ 'pure',
109
+ 'noSideEffects',
110
+ 'sourcemap',
111
+ 'using',
112
+ 'await using'
113
+ ];
114
+
115
+ const ANNOTATION_KEY = '_rollupAnnotations';
116
+ const INVALID_ANNOTATION_KEY = '_rollupRemoved';
117
+ const convertAnnotations = (position, buffer) => {
118
+ if (position === 0)
119
+ return EMPTY_ARRAY;
120
+ const length = buffer[position++];
121
+ const list = new Array(length);
122
+ for (let index = 0; index < length; index++) {
123
+ list[index] = convertAnnotation(buffer[position++], buffer);
124
+ }
125
+ return list;
126
+ };
127
+ const convertAnnotation = (position, buffer) => {
128
+ const start = buffer[position++];
129
+ const end = buffer[position++];
130
+ const type = FIXED_STRINGS[buffer[position]];
131
+ return { end, start, type };
132
+ };
133
+
134
+ /** @typedef {import('./types').Location} Location */
135
+
136
+ /**
137
+ * @param {import('./types').Range} range
138
+ * @param {number} index
139
+ */
140
+ function rangeContains(range, index) {
141
+ return range.start <= index && index < range.end;
142
+ }
143
+
144
+ /**
145
+ * @param {string} source
146
+ * @param {import('./types').Options} [options]
147
+ */
148
+ function getLocator(source, options = {}) {
149
+ const { offsetLine = 0, offsetColumn = 0 } = options;
150
+
151
+ let start = 0;
152
+ const ranges = source.split('\n').map((line, i) => {
153
+ const end = start + line.length + 1;
154
+
155
+ /** @type {import('./types').Range} */
156
+ const range = { start, end, line: i };
157
+
158
+ start = end;
159
+ return range;
160
+ });
161
+
162
+ let i = 0;
163
+
164
+ /**
165
+ * @param {string | number} search
166
+ * @param {number} [index]
167
+ * @returns {Location | undefined}
168
+ */
169
+ function locator(search, index) {
170
+ if (typeof search === 'string') {
171
+ search = source.indexOf(search, index ?? 0);
172
+ }
173
+
174
+ if (search === -1) return undefined;
175
+
176
+ let range = ranges[i];
177
+
178
+ const d = search >= range.end ? 1 : -1;
179
+
180
+ while (range) {
181
+ if (rangeContains(range, search)) {
182
+ return {
183
+ line: offsetLine + range.line,
184
+ column: offsetColumn + search - range.start,
185
+ character: search
186
+ };
187
+ }
188
+
189
+ i += d;
190
+ range = ranges[i];
191
+ }
192
+ }
193
+
194
+ return locator;
195
+ }
196
+
197
+ /**
198
+ * @param {string} source
199
+ * @param {string | number} search
200
+ * @param {import('./types').Options} [options]
201
+ * @returns {Location | undefined}
202
+ */
203
+ function locate(source, search, options) {
204
+ return getLocator(source, options)(search, options && options.startIndex);
205
+ }
206
+
207
+ function spaces(index) {
208
+ let result = '';
209
+ while (index--)
210
+ result += ' ';
211
+ return result;
212
+ }
213
+ function tabsToSpaces(value) {
214
+ return value.replace(/^\t+/, match => match.split('\t').join(' '));
215
+ }
216
+ const LINE_TRUNCATE_LENGTH = 120;
217
+ const MIN_CHARACTERS_SHOWN_AFTER_LOCATION = 10;
218
+ const ELLIPSIS = '...';
219
+ function getCodeFrame(source, line, column) {
220
+ let lines = source.split('\n');
221
+ // Needed if a plugin did not generate correct sourcemaps
222
+ if (line > lines.length)
223
+ return '';
224
+ const maxLineLength = Math.max(tabsToSpaces(lines[line - 1].slice(0, column)).length +
225
+ MIN_CHARACTERS_SHOWN_AFTER_LOCATION +
226
+ ELLIPSIS.length, LINE_TRUNCATE_LENGTH);
227
+ const frameStart = Math.max(0, line - 3);
228
+ let frameEnd = Math.min(line + 2, lines.length);
229
+ lines = lines.slice(frameStart, frameEnd);
230
+ while (!/\S/.test(lines[lines.length - 1])) {
231
+ lines.pop();
232
+ frameEnd -= 1;
233
+ }
234
+ const digits = String(frameEnd).length;
235
+ return lines
236
+ .map((sourceLine, index) => {
237
+ const isErrorLine = frameStart + index + 1 === line;
238
+ let lineNumber = String(index + frameStart + 1);
239
+ while (lineNumber.length < digits)
240
+ lineNumber = ` ${lineNumber}`;
241
+ let displayedLine = tabsToSpaces(sourceLine);
242
+ if (displayedLine.length > maxLineLength) {
243
+ displayedLine = `${displayedLine.slice(0, maxLineLength - ELLIPSIS.length)}${ELLIPSIS}`;
244
+ }
245
+ if (isErrorLine) {
246
+ const indicator = spaces(digits + 2 + tabsToSpaces(sourceLine.slice(0, column)).length) + '^';
247
+ return `${lineNumber}: ${displayedLine}\n${indicator}`;
248
+ }
249
+ return `${lineNumber}: ${displayedLine}`;
250
+ })
251
+ .join('\n');
252
+ }
253
+
254
+ const LOGLEVEL_SILENT = 'silent';
255
+ const LOGLEVEL_ERROR = 'error';
256
+ const LOGLEVEL_WARN = 'warn';
257
+ const LOGLEVEL_INFO = 'info';
258
+ const LOGLEVEL_DEBUG = 'debug';
259
+ const logLevelPriority = {
260
+ [LOGLEVEL_DEBUG]: 0,
261
+ [LOGLEVEL_INFO]: 1,
262
+ [LOGLEVEL_SILENT]: 3,
263
+ [LOGLEVEL_WARN]: 2
264
+ };
265
+
266
+ const ABSOLUTE_PATH_REGEX = /^(?:\/|(?:[A-Za-z]:)?[/\\|])/;
267
+ const RELATIVE_PATH_REGEX = /^\.?\.(\/|$)/;
268
+ function isAbsolute(path) {
269
+ return ABSOLUTE_PATH_REGEX.test(path);
270
+ }
271
+ function isRelative(path) {
272
+ return RELATIVE_PATH_REGEX.test(path);
273
+ }
274
+ const BACKSLASH_REGEX = /\\/g;
275
+ function normalize(path) {
276
+ return path.replace(BACKSLASH_REGEX, '/');
277
+ }
278
+
279
+ function printQuotedStringList(list, verbs) {
280
+ const isSingleItem = list.length <= 1;
281
+ const quotedList = list.map(item => `"${item}"`);
282
+ let output = isSingleItem
283
+ ? quotedList[0]
284
+ : `${quotedList.slice(0, -1).join(', ')} and ${quotedList.slice(-1)[0]}`;
285
+ if (verbs) {
286
+ output += ` ${isSingleItem ? verbs[0] : verbs[1]}`;
287
+ }
288
+ return output;
289
+ }
290
+
291
+ const ANY_SLASH_REGEX = /[/\\]/;
292
+ function relative(from, to) {
293
+ const fromParts = from.split(ANY_SLASH_REGEX).filter(Boolean);
294
+ const toParts = to.split(ANY_SLASH_REGEX).filter(Boolean);
295
+ if (fromParts[0] === '.')
296
+ fromParts.shift();
297
+ if (toParts[0] === '.')
298
+ toParts.shift();
299
+ while (fromParts[0] && toParts[0] && fromParts[0] === toParts[0]) {
300
+ fromParts.shift();
301
+ toParts.shift();
302
+ }
303
+ while (toParts[0] === '..' && fromParts.length > 0) {
304
+ toParts.shift();
305
+ fromParts.pop();
306
+ }
307
+ while (fromParts.pop()) {
308
+ toParts.unshift('..');
309
+ }
310
+ return toParts.join('/');
311
+ }
312
+
313
+ function getAliasName(id) {
314
+ const base = basename(id);
315
+ return base.slice(0, Math.max(0, base.length - extname(id).length));
316
+ }
317
+ function relativeId(id) {
318
+ if (!isAbsolute(id))
319
+ return id;
320
+ return relative(resolve(), id);
321
+ }
322
+ function isPathFragment(name) {
323
+ // starting with "/", "./", "../", "C:/"
324
+ return (name[0] === '/' || (name[0] === '.' && (name[1] === '/' || name[1] === '.')) || isAbsolute(name));
325
+ }
326
+ const UPPER_DIR_REGEX = /^(\.\.\/)*\.\.$/;
327
+ function getImportPath(importerId, targetPath, stripJsExtension, ensureFileName) {
328
+ while (targetPath.startsWith('../')) {
329
+ targetPath = targetPath.slice(3);
330
+ importerId = '_/' + importerId;
331
+ }
332
+ let relativePath = normalize(relative(dirname(importerId), targetPath));
333
+ if (stripJsExtension && relativePath.endsWith('.js')) {
334
+ relativePath = relativePath.slice(0, -3);
335
+ }
336
+ if (ensureFileName) {
337
+ if (relativePath === '')
338
+ return '../' + basename(targetPath);
339
+ if (UPPER_DIR_REGEX.test(relativePath)) {
340
+ return [...relativePath.split('/'), '..', basename(targetPath)].join('/');
341
+ }
342
+ }
343
+ return relativePath ? (relativePath.startsWith('..') ? relativePath : './' + relativePath) : '.';
344
+ }
345
+
346
+ function isValidUrl(url) {
347
+ try {
348
+ new URL(url);
349
+ }
350
+ catch {
351
+ return false;
352
+ }
353
+ return true;
354
+ }
355
+ function getRollupUrl(snippet) {
356
+ return `https://rollupjs.org/${snippet}`;
357
+ }
358
+ function addTrailingSlashIfMissed(url) {
359
+ if (!url.endsWith('/')) {
360
+ return url + '/';
361
+ }
362
+ return url;
363
+ }
364
+
365
+ // troubleshooting
366
+ const URL_AVOIDING_EVAL = 'troubleshooting/#avoiding-eval';
367
+ const URL_NAME_IS_NOT_EXPORTED = 'troubleshooting/#error-name-is-not-exported-by-module';
368
+ const URL_THIS_IS_UNDEFINED = 'troubleshooting/#error-this-is-undefined';
369
+ const URL_TREATING_MODULE_AS_EXTERNAL_DEPENDENCY = 'troubleshooting/#warning-treating-module-as-external-dependency';
370
+ const URL_SOURCEMAP_IS_LIKELY_TO_BE_INCORRECT = 'troubleshooting/#warning-sourcemap-is-likely-to-be-incorrect';
371
+ // configuration-options
372
+ const URL_JSX = 'configuration-options/#jsx';
373
+ const URL_OUTPUT_AMD_ID = 'configuration-options/#output-amd-id';
374
+ const URL_OUTPUT_AMD_BASEPATH = 'configuration-options/#output-amd-basepath';
375
+ const URL_OUTPUT_DIR = 'configuration-options/#output-dir';
376
+ const URL_OUTPUT_EXPORTS = 'configuration-options/#output-exports';
377
+ const URL_OUTPUT_EXTEND = 'configuration-options/#output-extend';
378
+ const URL_OUTPUT_EXTERNALIMPORTATTRIBUTES = 'configuration-options/#output-externalimportattributes';
379
+ const URL_OUTPUT_FORMAT = 'configuration-options/#output-format';
380
+ const URL_OUTPUT_GENERATEDCODE = 'configuration-options/#output-generatedcode';
381
+ const URL_OUTPUT_GLOBALS = 'configuration-options/#output-globals';
382
+ const URL_OUTPUT_INLINEDYNAMICIMPORTS = 'configuration-options/#output-inlinedynamicimports';
383
+ const URL_OUTPUT_INTEROP = 'configuration-options/#output-interop';
384
+ const URL_OUTPUT_MANUALCHUNKS = 'configuration-options/#output-manualchunks';
385
+ const URL_OUTPUT_NAME = 'configuration-options/#output-name';
386
+ const URL_OUTPUT_SOURCEMAPBASEURL = 'configuration-options/#output-sourcemapbaseurl';
387
+ const URL_OUTPUT_SOURCEMAPFILE = 'configuration-options/#output-sourcemapfile';
388
+ const URL_PRESERVEENTRYSIGNATURES = 'configuration-options/#preserveentrysignatures';
389
+ const URL_TREESHAKE = 'configuration-options/#treeshake';
390
+ const URL_TREESHAKE_PURE = 'configuration-options/#pure';
391
+ const URL_TREESHAKE_NOSIDEEFFECTS = 'configuration-options/#no-side-effects';
392
+ const URL_TREESHAKE_MODULESIDEEFFECTS = 'configuration-options/#treeshake-modulesideeffects';
393
+ const URL_WATCH = 'configuration-options/#watch';
394
+ const URL_GENERATEBUNDLE = 'plugin-development/#generatebundle';
395
+
396
+ function error(base) {
397
+ throw base instanceof Error ? base : getRollupError(base);
398
+ }
399
+ function getRollupError(base) {
400
+ augmentLogMessage(base);
401
+ const errorInstance = Object.assign(new Error(base.message), base);
402
+ Object.defineProperty(errorInstance, 'name', {
403
+ value: 'RollupError',
404
+ writable: true
405
+ });
406
+ return errorInstance;
407
+ }
408
+ function augmentCodeLocation(properties, pos, source, id) {
409
+ if (typeof pos === 'object') {
410
+ const { line, column } = pos;
411
+ properties.loc = { column, file: id, line };
412
+ }
413
+ else {
414
+ properties.pos = pos;
415
+ const location = locate(source, pos, { offsetLine: 1 });
416
+ if (!location) {
417
+ return;
418
+ }
419
+ const { line, column } = location;
420
+ properties.loc = { column, file: id, line };
421
+ }
422
+ if (properties.frame === undefined) {
423
+ const { line, column } = properties.loc;
424
+ properties.frame = getCodeFrame(source, line, column);
425
+ }
426
+ }
427
+ const symbolAugmented = Symbol('augmented');
428
+ function augmentLogMessage(log) {
429
+ // Make sure to only augment the log message once
430
+ if (!(log.plugin || log.loc) || log[symbolAugmented]) {
431
+ return;
432
+ }
433
+ log[symbolAugmented] = true;
434
+ let prefix = '';
435
+ if (log.plugin) {
436
+ prefix += `[plugin ${log.plugin}] `;
437
+ }
438
+ const id = log.id || log.loc?.file;
439
+ if (id) {
440
+ const position = log.loc ? ` (${log.loc.line}:${log.loc.column})` : '';
441
+ prefix += `${relativeId(id)}${position}: `;
442
+ }
443
+ const oldMessage = log.message;
444
+ log.message = prefix + log.message;
445
+ tweakStackMessage(log, oldMessage);
446
+ }
447
+ // Error codes should be sorted alphabetically while errors should be sorted by
448
+ // error code below
449
+ const ADDON_ERROR = 'ADDON_ERROR', ALREADY_CLOSED = 'ALREADY_CLOSED', AMBIGUOUS_EXTERNAL_NAMESPACES = 'AMBIGUOUS_EXTERNAL_NAMESPACES', ANONYMOUS_PLUGIN_CACHE = 'ANONYMOUS_PLUGIN_CACHE', ASSET_NOT_FINALISED = 'ASSET_NOT_FINALISED', ASSET_NOT_FOUND = 'ASSET_NOT_FOUND', ASSET_SOURCE_ALREADY_SET = 'ASSET_SOURCE_ALREADY_SET', ASSET_SOURCE_MISSING = 'ASSET_SOURCE_MISSING', BAD_LOADER = 'BAD_LOADER', CANNOT_CALL_NAMESPACE = 'CANNOT_CALL_NAMESPACE', CANNOT_EMIT_FROM_OPTIONS_HOOK = 'CANNOT_EMIT_FROM_OPTIONS_HOOK', CHUNK_NOT_GENERATED = 'CHUNK_NOT_GENERATED', CHUNK_INVALID = 'CHUNK_INVALID', CIRCULAR_DEPENDENCY = 'CIRCULAR_DEPENDENCY', CIRCULAR_REEXPORT = 'CIRCULAR_REEXPORT', CONST_REASSIGN = 'CONST_REASSIGN', CYCLIC_CROSS_CHUNK_REEXPORT = 'CYCLIC_CROSS_CHUNK_REEXPORT', DEPRECATED_FEATURE = 'DEPRECATED_FEATURE', DUPLICATE_ARGUMENT_NAME = 'DUPLICATE_ARGUMENT_NAME', DUPLICATE_EXPORT = 'DUPLICATE_EXPORT', DUPLICATE_PLUGIN_NAME = 'DUPLICATE_PLUGIN_NAME', EMPTY_BUNDLE = 'EMPTY_BUNDLE', EVAL = 'EVAL', EXTERNAL_MODULES_CANNOT_BE_INCLUDED_IN_MANUAL_CHUNKS = 'EXTERNAL_MODULES_CANNOT_BE_INCLUDED_IN_MANUAL_CHUNKS', EXTERNAL_MODULES_CANNOT_BE_TRANSFORMED_TO_MODULES = 'EXTERNAL_MODULES_CANNOT_BE_TRANSFORMED_TO_MODULES', EXTERNAL_SYNTHETIC_EXPORTS = 'EXTERNAL_SYNTHETIC_EXPORTS', FILE_NAME_CONFLICT = 'FILE_NAME_CONFLICT', FILE_NOT_FOUND = 'FILE_NOT_FOUND', FIRST_SIDE_EFFECT = 'FIRST_SIDE_EFFECT', ILLEGAL_IDENTIFIER_AS_NAME = 'ILLEGAL_IDENTIFIER_AS_NAME', ILLEGAL_REASSIGNMENT = 'ILLEGAL_REASSIGNMENT', INCONSISTENT_IMPORT_ATTRIBUTES = 'INCONSISTENT_IMPORT_ATTRIBUTES', INVALID_ANNOTATION = 'INVALID_ANNOTATION', INPUT_HOOK_IN_OUTPUT_PLUGIN = 'INPUT_HOOK_IN_OUTPUT_PLUGIN', INVALID_CHUNK = 'INVALID_CHUNK', INVALID_EXPORT_OPTION = 'INVALID_EXPORT_OPTION', INVALID_EXTERNAL_ID = 'INVALID_EXTERNAL_ID', INVALID_IMPORT_ATTRIBUTE = 'INVALID_IMPORT_ATTRIBUTE', INVALID_LOG_POSITION = 'INVALID_LOG_POSITION', INVALID_OPTION = 'INVALID_OPTION', INVALID_PLUGIN_HOOK = 'INVALID_PLUGIN_HOOK', INVALID_ROLLUP_PHASE = 'INVALID_ROLLUP_PHASE', INVALID_SETASSETSOURCE = 'INVALID_SETASSETSOURCE', INVALID_TLA_FORMAT = 'INVALID_TLA_FORMAT', MISSING_EXPORT = 'MISSING_EXPORT', MISSING_GLOBAL_NAME = 'MISSING_GLOBAL_NAME', MISSING_IMPLICIT_DEPENDANT = 'MISSING_IMPLICIT_DEPENDANT', MISSING_JSX_EXPORT = 'MISSING_JSX_EXPORT', MISSING_NAME_OPTION_FOR_IIFE_EXPORT = 'MISSING_NAME_OPTION_FOR_IIFE_EXPORT', MISSING_NODE_BUILTINS = 'MISSING_NODE_BUILTINS', MISSING_OPTION = 'MISSING_OPTION', MIXED_EXPORTS = 'MIXED_EXPORTS', MODULE_LEVEL_DIRECTIVE = 'MODULE_LEVEL_DIRECTIVE', NAMESPACE_CONFLICT = 'NAMESPACE_CONFLICT', NO_TRANSFORM_MAP_OR_AST_WITHOUT_CODE = 'NO_TRANSFORM_MAP_OR_AST_WITHOUT_CODE', OPTIMIZE_CHUNK_STATUS = 'OPTIMIZE_CHUNK_STATUS', PARSE_ERROR = 'PARSE_ERROR', PLUGIN_ERROR = 'PLUGIN_ERROR', REDECLARATION_ERROR = 'REDECLARATION_ERROR', RESERVED_NAMESPACE = 'RESERVED_NAMESPACE', SHIMMED_EXPORT = 'SHIMMED_EXPORT', SOURCEMAP_BROKEN = 'SOURCEMAP_BROKEN', SOURCEMAP_ERROR = 'SOURCEMAP_ERROR', SYNTHETIC_NAMED_EXPORTS_NEED_NAMESPACE_EXPORT = 'SYNTHETIC_NAMED_EXPORTS_NEED_NAMESPACE_EXPORT', THIS_IS_UNDEFINED = 'THIS_IS_UNDEFINED', UNEXPECTED_NAMED_IMPORT = 'UNEXPECTED_NAMED_IMPORT', UNKNOWN_OPTION = 'UNKNOWN_OPTION', UNRESOLVED_ENTRY = 'UNRESOLVED_ENTRY', UNRESOLVED_IMPORT = 'UNRESOLVED_IMPORT', UNUSED_EXTERNAL_IMPORT = 'UNUSED_EXTERNAL_IMPORT', VALIDATION_ERROR = 'VALIDATION_ERROR';
450
+ function logAddonNotGenerated(message, hook, plugin) {
451
+ return {
452
+ code: ADDON_ERROR,
453
+ message: `Could not retrieve "${hook}". Check configuration of plugin "${plugin}".
454
+ \tError Message: ${message}`
455
+ };
456
+ }
457
+ function logAlreadyClosed() {
458
+ return {
459
+ code: ALREADY_CLOSED,
460
+ message: 'Bundle is already closed, no more calls to "generate" or "write" are allowed.'
461
+ };
462
+ }
463
+ function logAmbiguousExternalNamespaces(binding, reexportingModule, usedModule, sources) {
464
+ return {
465
+ binding,
466
+ code: AMBIGUOUS_EXTERNAL_NAMESPACES,
467
+ ids: sources,
468
+ message: `Ambiguous external namespace resolution: "${relativeId(reexportingModule)}" re-exports "${binding}" from one of the external modules ${printQuotedStringList(sources.map(module => relativeId(module)))}, guessing "${relativeId(usedModule)}".`,
469
+ reexporter: reexportingModule
470
+ };
471
+ }
472
+ function logAnonymousPluginCache() {
473
+ return {
474
+ code: ANONYMOUS_PLUGIN_CACHE,
475
+ message: 'A plugin is trying to use the Rollup cache but is not declaring a plugin name or cacheKey.'
476
+ };
477
+ }
478
+ function logAssetNotFinalisedForFileName(name) {
479
+ return {
480
+ code: ASSET_NOT_FINALISED,
481
+ message: `Plugin error - Unable to get file name for asset "${name}". Ensure that the source is set and that generate is called first. If you reference assets via import.meta.ROLLUP_FILE_URL_<referenceId>, you need to either have set their source after "renderStart" or need to provide an explicit "fileName" when emitting them.`
482
+ };
483
+ }
484
+ function logAssetReferenceIdNotFoundForSetSource(assetReferenceId) {
485
+ return {
486
+ code: ASSET_NOT_FOUND,
487
+ message: `Plugin error - Unable to set the source for unknown asset "${assetReferenceId}".`
488
+ };
489
+ }
490
+ function logAssetSourceAlreadySet(name) {
491
+ return {
492
+ code: ASSET_SOURCE_ALREADY_SET,
493
+ message: `Unable to set the source for asset "${name}", source already set.`
494
+ };
495
+ }
496
+ function logNoAssetSourceSet(assetName) {
497
+ return {
498
+ code: ASSET_SOURCE_MISSING,
499
+ message: `Plugin error creating asset "${assetName}" - no asset source set.`
500
+ };
501
+ }
502
+ function logBadLoader(id) {
503
+ return {
504
+ code: BAD_LOADER,
505
+ message: `Error loading "${relativeId(id)}": plugin load hook should return a string, a { code, map } object, or nothing/null.`
506
+ };
507
+ }
508
+ function logCannotCallNamespace(name) {
509
+ return {
510
+ code: CANNOT_CALL_NAMESPACE,
511
+ message: `Cannot call a namespace ("${name}").`
512
+ };
513
+ }
514
+ function logCannotEmitFromOptionsHook() {
515
+ return {
516
+ code: CANNOT_EMIT_FROM_OPTIONS_HOOK,
517
+ message: `Cannot emit files or set asset sources in the "outputOptions" hook, use the "renderStart" hook instead.`
518
+ };
519
+ }
520
+ function logChunkNotGeneratedForFileName(name) {
521
+ return {
522
+ code: CHUNK_NOT_GENERATED,
523
+ message: `Plugin error - Unable to get file name for emitted chunk "${name}". You can only get file names once chunks have been generated after the "renderStart" hook.`
524
+ };
525
+ }
526
+ function logChunkInvalid({ fileName, code }, { pos, message }) {
527
+ const errorProperties = {
528
+ code: CHUNK_INVALID,
529
+ message: `Chunk "${fileName}" is not valid JavaScript: ${message}.`
530
+ };
531
+ augmentCodeLocation(errorProperties, pos, code, fileName);
532
+ return errorProperties;
533
+ }
534
+ function logCircularDependency(cyclePath) {
535
+ return {
536
+ code: CIRCULAR_DEPENDENCY,
537
+ ids: cyclePath,
538
+ message: `Circular dependency: ${cyclePath.map(relativeId).join(' -> ')}`
539
+ };
540
+ }
541
+ function logCircularReexport(exportName, exporter) {
542
+ return {
543
+ code: CIRCULAR_REEXPORT,
544
+ exporter,
545
+ message: `"${exportName}" cannot be exported from "${relativeId(exporter)}" as it is a reexport that references itself.`
546
+ };
547
+ }
548
+ function logCyclicCrossChunkReexport(exportName, exporter, reexporter, importer, preserveModules) {
549
+ return {
550
+ code: CYCLIC_CROSS_CHUNK_REEXPORT,
551
+ exporter,
552
+ id: importer,
553
+ message: `Export "${exportName}" of module "${relativeId(exporter)}" was reexported through module "${relativeId(reexporter)}" while both modules are dependencies of each other and will end up in different chunks by current Rollup settings. This scenario is not well supported at the moment as it will produce a circular dependency between chunks and will likely lead to broken execution order.\nEither change the import in "${relativeId(importer)}" to point directly to the exporting module or ${preserveModules ? 'do not use "output.preserveModules"' : 'reconfigure "output.manualChunks"'} to ensure these modules end up in the same chunk.`,
554
+ reexporter
555
+ };
556
+ }
557
+ function logDeprecation(deprecation, urlSnippet, plugin) {
558
+ return {
559
+ code: DEPRECATED_FEATURE,
560
+ message: deprecation,
561
+ url: getRollupUrl(urlSnippet),
562
+ ...({})
563
+ };
564
+ }
565
+ function logConstVariableReassignError() {
566
+ return {
567
+ code: CONST_REASSIGN,
568
+ message: 'Cannot reassign a variable declared with `const`'
569
+ };
570
+ }
571
+ function logDuplicateArgumentNameError(name) {
572
+ return {
573
+ code: DUPLICATE_ARGUMENT_NAME,
574
+ message: `Duplicate argument name "${name}"`
575
+ };
576
+ }
577
+ function logDuplicateExportError(name) {
578
+ return { code: DUPLICATE_EXPORT, message: `Duplicate export "${name}"` };
579
+ }
580
+ function logDuplicatePluginName(plugin) {
581
+ return {
582
+ code: DUPLICATE_PLUGIN_NAME,
583
+ message: `The plugin name ${plugin} is being used twice in the same build. Plugin names must be distinct or provide a cacheKey (please post an issue to the plugin if you are a plugin user).`
584
+ };
585
+ }
586
+ function logEmptyChunk(chunkName) {
587
+ return {
588
+ code: EMPTY_BUNDLE,
589
+ message: `Generated an empty chunk: "${chunkName}".`,
590
+ names: [chunkName]
591
+ };
592
+ }
593
+ function logEval(id) {
594
+ return {
595
+ code: EVAL,
596
+ id,
597
+ message: `Use of eval in "${relativeId(id)}" is strongly discouraged as it poses security risks and may cause issues with minification.`,
598
+ url: getRollupUrl(URL_AVOIDING_EVAL)
599
+ };
600
+ }
601
+ function logExternalSyntheticExports(id, importer) {
602
+ return {
603
+ code: EXTERNAL_SYNTHETIC_EXPORTS,
604
+ exporter: id,
605
+ message: `External "${id}" cannot have "syntheticNamedExports" enabled (imported by "${relativeId(importer)}").`
606
+ };
607
+ }
608
+ function logFileNameConflict(fileName) {
609
+ return {
610
+ code: FILE_NAME_CONFLICT,
611
+ message: `The emitted file "${fileName}" overwrites a previously emitted file of the same name.`
612
+ };
613
+ }
614
+ function logFileReferenceIdNotFoundForFilename(assetReferenceId) {
615
+ return {
616
+ code: FILE_NOT_FOUND,
617
+ message: `Plugin error - Unable to get file name for unknown file "${assetReferenceId}".`
618
+ };
619
+ }
620
+ function logFirstSideEffect(source, id, { line, column }) {
621
+ return {
622
+ code: FIRST_SIDE_EFFECT,
623
+ message: `First side effect in ${relativeId(id)} is at (${line}:${column})\n${getCodeFrame(source, line, column)}`
624
+ };
625
+ }
626
+ function logIllegalIdentifierAsName(name) {
627
+ return {
628
+ code: ILLEGAL_IDENTIFIER_AS_NAME,
629
+ message: `Given name "${name}" is not a legal JS identifier. If you need this, you can try "output.extend: true".`,
630
+ url: getRollupUrl(URL_OUTPUT_EXTEND)
631
+ };
632
+ }
633
+ function logIllegalImportReassignment(name, importingId) {
634
+ return {
635
+ code: ILLEGAL_REASSIGNMENT,
636
+ message: `Illegal reassignment of import "${name}" in "${relativeId(importingId)}".`
637
+ };
638
+ }
639
+ function logInconsistentImportAttributes(existingAttributes, newAttributes, source, importer) {
640
+ return {
641
+ code: INCONSISTENT_IMPORT_ATTRIBUTES,
642
+ message: `Module "${relativeId(importer)}" tried to import "${relativeId(source)}" with ${formatAttributes(newAttributes)} attributes, but it was already imported elsewhere with ${formatAttributes(existingAttributes)} attributes. Please ensure that import attributes for the same module are always consistent.`
643
+ };
644
+ }
645
+ const formatAttributes = (attributes) => {
646
+ const entries = Object.entries(attributes);
647
+ if (entries.length === 0)
648
+ return 'no';
649
+ return entries.map(([key, value]) => `"${key}": "${value}"`).join(', ');
650
+ };
651
+ function logInvalidAnnotation(comment, id, type) {
652
+ return {
653
+ code: INVALID_ANNOTATION,
654
+ id,
655
+ message: `A comment\n\n"${comment}"\n\nin "${relativeId(id)}" contains an annotation that Rollup cannot interpret due to the position of the comment. The comment will be removed to avoid issues.`,
656
+ url: getRollupUrl(type === 'noSideEffects' ? URL_TREESHAKE_NOSIDEEFFECTS : URL_TREESHAKE_PURE)
657
+ };
658
+ }
659
+ function logInputHookInOutputPlugin(pluginName, hookName) {
660
+ return {
661
+ code: INPUT_HOOK_IN_OUTPUT_PLUGIN,
662
+ message: `The "${hookName}" hook used by the output plugin ${pluginName} is a build time hook and will not be run for that plugin. Either this plugin cannot be used as an output plugin, or it should have an option to configure it as an output plugin.`
663
+ };
664
+ }
665
+ function logCannotAssignModuleToChunk(moduleId, assignToAlias, currentAlias) {
666
+ return {
667
+ code: INVALID_CHUNK,
668
+ message: `Cannot assign "${relativeId(moduleId)}" to the "${assignToAlias}" chunk as it is already in the "${currentAlias}" chunk.`
669
+ };
670
+ }
671
+ function tweakStackMessage(error, oldMessage) {
672
+ if (!error.stack) {
673
+ return error;
674
+ }
675
+ error.stack = error.stack.replace(oldMessage, error.message);
676
+ return error;
677
+ }
678
+ function logInvalidExportOptionValue(optionValue) {
679
+ return {
680
+ code: INVALID_EXPORT_OPTION,
681
+ message: `"output.exports" must be "default", "named", "none", "auto", or left unspecified (defaults to "auto"), received "${optionValue}".`,
682
+ url: getRollupUrl(URL_OUTPUT_EXPORTS)
683
+ };
684
+ }
685
+ function logIncompatibleExportOptionValue(optionValue, keys, entryModule) {
686
+ return {
687
+ code: INVALID_EXPORT_OPTION,
688
+ message: `"${optionValue}" was specified for "output.exports", but entry module "${relativeId(entryModule)}" has the following exports: ${printQuotedStringList(keys)}`,
689
+ url: getRollupUrl(URL_OUTPUT_EXPORTS)
690
+ };
691
+ }
692
+ function logInternalIdCannotBeExternal(source, importer) {
693
+ return {
694
+ code: INVALID_EXTERNAL_ID,
695
+ message: `"${source}" is imported as an external by "${relativeId(importer)}", but is already an existing non-external module id.`
696
+ };
697
+ }
698
+ function logImportOptionsAreInvalid(importer) {
699
+ return {
700
+ code: INVALID_IMPORT_ATTRIBUTE,
701
+ message: `Rollup could not statically analyze the options argument of a dynamic import in "${relativeId(importer)}". Dynamic import options need to be an object with a nested attributes object.`
702
+ };
703
+ }
704
+ function logImportAttributeIsInvalid(importer) {
705
+ return {
706
+ code: INVALID_IMPORT_ATTRIBUTE,
707
+ message: `Rollup could not statically analyze an import attribute of a dynamic import in "${relativeId(importer)}". Import attributes need to have string keys and values.`
708
+ };
709
+ }
710
+ function logInvalidLogPosition(plugin) {
711
+ return {
712
+ code: INVALID_LOG_POSITION,
713
+ message: `Plugin "${plugin}" tried to add a file position to a log or warning. This is only supported in the "transform" hook at the moment and will be ignored.`
714
+ };
715
+ }
716
+ function logInvalidOption(option, urlSnippet, explanation, value) {
717
+ return {
718
+ code: INVALID_OPTION,
719
+ message: `Invalid value ${value === undefined ? '' : `${JSON.stringify(value)} `}for option "${option}" - ${explanation}.`,
720
+ url: getRollupUrl(urlSnippet)
721
+ };
722
+ }
723
+ function logInvalidAddonPluginHook(hook, plugin) {
724
+ return {
725
+ code: INVALID_PLUGIN_HOOK,
726
+ hook,
727
+ message: `Error running plugin hook "${hook}" for plugin "${plugin}", expected a string, a function hook or an object with a "handler" string or function.`,
728
+ plugin
729
+ };
730
+ }
731
+ function logInvalidFunctionPluginHook(hook, plugin) {
732
+ return {
733
+ code: INVALID_PLUGIN_HOOK,
734
+ hook,
735
+ message: `Error running plugin hook "${hook}" for plugin "${plugin}", expected a function hook or an object with a "handler" function.`,
736
+ plugin
737
+ };
738
+ }
739
+ function logInvalidRollupPhaseForChunkEmission() {
740
+ return {
741
+ code: INVALID_ROLLUP_PHASE,
742
+ message: `Cannot emit chunks after module loading has finished.`
743
+ };
744
+ }
745
+ function logInvalidSetAssetSourceCall() {
746
+ return {
747
+ code: INVALID_SETASSETSOURCE,
748
+ message: `setAssetSource cannot be called in transform for caching reasons. Use emitFile with a source, or call setAssetSource in another hook.`
749
+ };
750
+ }
751
+ function logInvalidFormatForTopLevelAwait(id, format) {
752
+ return {
753
+ code: INVALID_TLA_FORMAT,
754
+ id,
755
+ message: `Module format "${format}" does not support top-level await. Use the "es" or "system" output formats rather.`
756
+ };
757
+ }
758
+ function logMissingEntryExport(binding, exporter) {
759
+ return {
760
+ binding,
761
+ code: MISSING_EXPORT,
762
+ exporter,
763
+ message: `Exported variable "${binding}" is not defined in "${relativeId(exporter)}".`,
764
+ url: getRollupUrl(URL_NAME_IS_NOT_EXPORTED)
765
+ };
766
+ }
767
+ function logMissingExport(binding, importingModule, exporter, missingButExportExists) {
768
+ const baseLog = {
769
+ binding,
770
+ code: MISSING_EXPORT,
771
+ exporter,
772
+ id: importingModule,
773
+ url: getRollupUrl(URL_NAME_IS_NOT_EXPORTED)
774
+ };
775
+ if (missingButExportExists) {
776
+ return {
777
+ ...baseLog,
778
+ message: `Exported variable "${binding}" is not defined in "${relativeId(exporter)}", but it is imported by "${relativeId(importingModule)}".`
779
+ };
780
+ }
781
+ const isJson = extname(exporter) === '.json';
782
+ return {
783
+ ...baseLog,
784
+ message: `"${binding}" is not exported by "${relativeId(exporter)}", imported by "${relativeId(importingModule)}".${isJson ? ' (Note that you need @rollup/plugin-json to import JSON files)' : ''}`
785
+ };
786
+ }
787
+ function logMissingGlobalName(externalId, guess) {
788
+ return {
789
+ code: MISSING_GLOBAL_NAME,
790
+ id: externalId,
791
+ message: `No name was provided for external module "${externalId}" in "output.globals" – guessing "${guess}".`,
792
+ names: [guess],
793
+ url: getRollupUrl(URL_OUTPUT_GLOBALS)
794
+ };
795
+ }
796
+ function logImplicitDependantCannotBeExternal(unresolvedId, implicitlyLoadedBefore) {
797
+ return {
798
+ code: MISSING_IMPLICIT_DEPENDANT,
799
+ message: `Module "${relativeId(unresolvedId)}" that should be implicitly loaded before "${relativeId(implicitlyLoadedBefore)}" cannot be external.`
800
+ };
801
+ }
802
+ function logUnresolvedImplicitDependant(unresolvedId, implicitlyLoadedBefore) {
803
+ return {
804
+ code: MISSING_IMPLICIT_DEPENDANT,
805
+ message: `Module "${relativeId(unresolvedId)}" that should be implicitly loaded before "${relativeId(implicitlyLoadedBefore)}" could not be resolved.`
806
+ };
807
+ }
808
+ function logImplicitDependantIsNotIncluded(module) {
809
+ const implicitDependencies = [...module.implicitlyLoadedBefore]
810
+ .map(dependency => relativeId(dependency.id))
811
+ .sort();
812
+ return {
813
+ code: MISSING_IMPLICIT_DEPENDANT,
814
+ message: `Module "${relativeId(module.id)}" that should be implicitly loaded before ${printQuotedStringList(implicitDependencies)} is not included in the module graph. Either it was not imported by an included module or only via a tree-shaken dynamic import, or no imported bindings were used and it had otherwise no side-effects.`
815
+ };
816
+ }
817
+ function logMissingJsxExport(name, exporter, importer) {
818
+ return {
819
+ code: MISSING_JSX_EXPORT,
820
+ exporter,
821
+ id: importer,
822
+ message: `Export "${name}" is not defined in module "${relativeId(exporter)}" even though it is needed in "${relativeId(importer)}" to provide JSX syntax. Please check your "jsx" option.`,
823
+ names: [name],
824
+ url: getRollupUrl(URL_JSX)
825
+ };
826
+ }
827
+ function logMissingNameOptionForIifeExport() {
828
+ return {
829
+ code: MISSING_NAME_OPTION_FOR_IIFE_EXPORT,
830
+ message: `If you do not supply "output.name", you may not be able to access the exports of an IIFE bundle.`,
831
+ url: getRollupUrl(URL_OUTPUT_NAME)
832
+ };
833
+ }
834
+ function logMissingNameOptionForUmdExport() {
835
+ return {
836
+ code: MISSING_NAME_OPTION_FOR_IIFE_EXPORT,
837
+ message: 'You must supply "output.name" for UMD bundles that have exports so that the exports are accessible in environments without a module loader.',
838
+ url: getRollupUrl(URL_OUTPUT_NAME)
839
+ };
840
+ }
841
+ function logMissingNodeBuiltins(externalBuiltins) {
842
+ return {
843
+ code: MISSING_NODE_BUILTINS,
844
+ ids: externalBuiltins,
845
+ message: `Creating a browser bundle that depends on Node.js built-in modules (${printQuotedStringList(externalBuiltins)}). You might need to include https://github.com/FredKSchott/rollup-plugin-polyfill-node`
846
+ };
847
+ }
848
+ function logMissingFileOrDirOption() {
849
+ return {
850
+ code: MISSING_OPTION,
851
+ message: 'You must specify "output.file" or "output.dir" for the build.',
852
+ url: getRollupUrl(URL_OUTPUT_DIR)
853
+ };
854
+ }
855
+ function logMixedExport(facadeModuleId, name) {
856
+ return {
857
+ code: MIXED_EXPORTS,
858
+ id: facadeModuleId,
859
+ message: `Entry module "${relativeId(facadeModuleId)}" is using named and default exports together. Consumers of your bundle will have to use \`${name || 'chunk'}.default\` to access the default export, which may not be what you want. Use \`output.exports: "named"\` to disable this warning.`,
860
+ url: getRollupUrl(URL_OUTPUT_EXPORTS)
861
+ };
862
+ }
863
+ function logModuleLevelDirective(directive, id) {
864
+ return {
865
+ code: MODULE_LEVEL_DIRECTIVE,
866
+ id,
867
+ message: `Module level directives cause errors when bundled, "${directive}" in "${relativeId(id)}" was ignored.`
868
+ };
869
+ }
870
+ function logNamespaceConflict(binding, reexportingModuleId, sources) {
871
+ return {
872
+ binding,
873
+ code: NAMESPACE_CONFLICT,
874
+ ids: sources,
875
+ message: `Conflicting namespaces: "${relativeId(reexportingModuleId)}" re-exports "${binding}" from one of the modules ${printQuotedStringList(sources.map(moduleId => relativeId(moduleId)))} (will be ignored).`,
876
+ reexporter: reexportingModuleId
877
+ };
878
+ }
879
+ function logNoTransformMapOrAstWithoutCode(pluginName) {
880
+ return {
881
+ code: NO_TRANSFORM_MAP_OR_AST_WITHOUT_CODE,
882
+ message: `The plugin "${pluginName}" returned a "map" or "ast" without returning ` +
883
+ 'a "code". This will be ignored.'
884
+ };
885
+ }
886
+ function logOptimizeChunkStatus(chunks, smallChunks, pointInTime) {
887
+ return {
888
+ code: OPTIMIZE_CHUNK_STATUS,
889
+ message: `${pointInTime}, there are\n` +
890
+ `${chunks} chunks, of which\n` +
891
+ `${smallChunks} are below minChunkSize.`
892
+ };
893
+ }
894
+ function logParseError(message, pos) {
895
+ return { code: PARSE_ERROR, message, pos };
896
+ }
897
+ function logRedeclarationError(name) {
898
+ return {
899
+ code: REDECLARATION_ERROR,
900
+ message: `Identifier "${name}" has already been declared`
901
+ };
902
+ }
903
+ function logReservedNamespace(namespace) {
904
+ return {
905
+ code: RESERVED_NAMESPACE,
906
+ message: `You have overridden reserved namespace "${namespace}"`
907
+ };
908
+ }
909
+ function logModuleParseError(error, moduleId) {
910
+ let message = error.message.replace(/ \(\d+:\d+\)$/, '');
911
+ if (moduleId.endsWith('.json')) {
912
+ message += ' (Note that you need @rollup/plugin-json to import JSON files)';
913
+ }
914
+ else if (!moduleId.endsWith('.js')) {
915
+ message += ' (Note that you need plugins to import files that are not JavaScript)';
916
+ }
917
+ return tweakStackMessage({
918
+ cause: error,
919
+ code: PARSE_ERROR,
920
+ id: moduleId,
921
+ message,
922
+ stack: error.stack
923
+ }, error.message);
924
+ }
925
+ function logPluginError(error, plugin, { hook, id } = {}) {
926
+ const code = error.code;
927
+ if (!error.pluginCode &&
928
+ code != null &&
929
+ (typeof code !== 'string' || !code.startsWith('PLUGIN_'))) {
930
+ error.pluginCode = code;
931
+ }
932
+ error.code = PLUGIN_ERROR;
933
+ error.plugin = plugin;
934
+ if (hook) {
935
+ error.hook = hook;
936
+ }
937
+ if (id) {
938
+ error.id = id;
939
+ }
940
+ return error;
941
+ }
942
+ function logShimmedExport(id, binding) {
943
+ return {
944
+ binding,
945
+ code: SHIMMED_EXPORT,
946
+ exporter: id,
947
+ message: `Missing export "${binding}" has been shimmed in module "${relativeId(id)}".`
948
+ };
949
+ }
950
+ function logSourcemapBroken(plugin) {
951
+ return {
952
+ code: SOURCEMAP_BROKEN,
953
+ message: `Sourcemap is likely to be incorrect: a plugin (${plugin}) was used to transform files, but didn't generate a sourcemap for the transformation. Consult the plugin documentation for help`,
954
+ plugin,
955
+ url: getRollupUrl(URL_SOURCEMAP_IS_LIKELY_TO_BE_INCORRECT)
956
+ };
957
+ }
958
+ function logConflictingSourcemapSources(filename) {
959
+ return {
960
+ code: SOURCEMAP_BROKEN,
961
+ message: `Multiple conflicting contents for sourcemap source ${filename}`
962
+ };
963
+ }
964
+ function logInvalidSourcemapForError(error, id, column, line, pos) {
965
+ return {
966
+ cause: error,
967
+ code: SOURCEMAP_ERROR,
968
+ id,
969
+ loc: {
970
+ column,
971
+ file: id,
972
+ line
973
+ },
974
+ message: `Error when using sourcemap for reporting an error: ${error.message}`,
975
+ pos
976
+ };
977
+ }
978
+ function logSyntheticNamedExportsNeedNamespaceExport(id, syntheticNamedExportsOption) {
979
+ return {
980
+ code: SYNTHETIC_NAMED_EXPORTS_NEED_NAMESPACE_EXPORT,
981
+ exporter: id,
982
+ message: `Module "${relativeId(id)}" that is marked with \`syntheticNamedExports: ${JSON.stringify(syntheticNamedExportsOption)}\` needs ${typeof syntheticNamedExportsOption === 'string' && syntheticNamedExportsOption !== 'default'
983
+ ? `an explicit export named "${syntheticNamedExportsOption}"`
984
+ : 'a default export'} that does not reexport an unresolved named export of the same module.`
985
+ };
986
+ }
987
+ function logThisIsUndefined() {
988
+ return {
989
+ code: THIS_IS_UNDEFINED,
990
+ message: `The 'this' keyword is equivalent to 'undefined' at the top level of an ES module, and has been rewritten`,
991
+ url: getRollupUrl(URL_THIS_IS_UNDEFINED)
992
+ };
993
+ }
994
+ function logUnexpectedNamedImport(id, imported, isReexport) {
995
+ const importType = isReexport ? 'reexport' : 'import';
996
+ return {
997
+ code: UNEXPECTED_NAMED_IMPORT,
998
+ exporter: id,
999
+ message: `The named export "${imported}" was ${importType}ed from the external module "${relativeId(id)}" even though its interop type is "defaultOnly". Either remove or change this ${importType} or change the value of the "output.interop" option.`,
1000
+ url: getRollupUrl(URL_OUTPUT_INTEROP)
1001
+ };
1002
+ }
1003
+ function logUnexpectedNamespaceReexport(id) {
1004
+ return {
1005
+ code: UNEXPECTED_NAMED_IMPORT,
1006
+ exporter: id,
1007
+ message: `There was a namespace "*" reexport from the external module "${relativeId(id)}" even though its interop type is "defaultOnly". This will be ignored as namespace reexports only reexport named exports. If this is not intended, either remove or change this reexport or change the value of the "output.interop" option.`,
1008
+ url: getRollupUrl(URL_OUTPUT_INTEROP)
1009
+ };
1010
+ }
1011
+ function logUnknownOption(optionType, unknownOptions, validOptions) {
1012
+ return {
1013
+ code: UNKNOWN_OPTION,
1014
+ message: `Unknown ${optionType}: ${unknownOptions.join(', ')}. Allowed options: ${validOptions.join(', ')}`
1015
+ };
1016
+ }
1017
+ function logEntryCannotBeExternal(unresolvedId) {
1018
+ return {
1019
+ code: UNRESOLVED_ENTRY,
1020
+ message: `Entry module "${relativeId(unresolvedId)}" cannot be external.`
1021
+ };
1022
+ }
1023
+ function logExternalModulesCannotBeIncludedInManualChunks(source) {
1024
+ return {
1025
+ code: EXTERNAL_MODULES_CANNOT_BE_INCLUDED_IN_MANUAL_CHUNKS,
1026
+ message: `"${source}" cannot be included in manualChunks because it is resolved as an external module by the "external" option or plugins.`
1027
+ };
1028
+ }
1029
+ function logExternalModulesCannotBeTransformedToModules(source) {
1030
+ return {
1031
+ code: EXTERNAL_MODULES_CANNOT_BE_TRANSFORMED_TO_MODULES,
1032
+ message: `${source} is resolved as a module now, but it was an external module before. Please check whether there are conflicts in your Rollup options "external" and "manualChunks", manualChunks cannot include external modules.`
1033
+ };
1034
+ }
1035
+ function logUnresolvedEntry(unresolvedId) {
1036
+ return {
1037
+ code: UNRESOLVED_ENTRY,
1038
+ message: `Could not resolve entry module "${relativeId(unresolvedId)}".`
1039
+ };
1040
+ }
1041
+ function logUnresolvedImport(source, importer) {
1042
+ return {
1043
+ code: UNRESOLVED_IMPORT,
1044
+ exporter: source,
1045
+ id: importer,
1046
+ message: `Could not resolve "${source}" from "${relativeId(importer)}"`
1047
+ };
1048
+ }
1049
+ function logUnresolvedImportTreatedAsExternal(source, importer) {
1050
+ return {
1051
+ code: UNRESOLVED_IMPORT,
1052
+ exporter: source,
1053
+ id: importer,
1054
+ message: `"${source}" is imported by "${relativeId(importer)}", but could not be resolved – treating it as an external dependency.`,
1055
+ url: getRollupUrl(URL_TREATING_MODULE_AS_EXTERNAL_DEPENDENCY)
1056
+ };
1057
+ }
1058
+ function logUnusedExternalImports(externalId, names, importers) {
1059
+ return {
1060
+ code: UNUSED_EXTERNAL_IMPORT,
1061
+ exporter: externalId,
1062
+ ids: importers,
1063
+ message: `${printQuotedStringList(names, [
1064
+ 'is',
1065
+ 'are'
1066
+ ])} imported from external module "${externalId}" but never used in ${printQuotedStringList(importers.map(importer => relativeId(importer)))}.`,
1067
+ names
1068
+ };
1069
+ }
1070
+ function logFailedValidation(message) {
1071
+ return {
1072
+ code: VALIDATION_ERROR,
1073
+ message
1074
+ };
1075
+ }
1076
+ function warnDeprecation(deprecation, urlSnippet, activeDeprecation, options, plugin) {
1077
+ warnDeprecationWithOptions(deprecation, urlSnippet, activeDeprecation, options.onLog, options.strictDeprecations);
1078
+ }
1079
+ function warnDeprecationWithOptions(deprecation, urlSnippet, activeDeprecation, log, strictDeprecations, plugin) {
1080
+ if (activeDeprecation || strictDeprecations) {
1081
+ const warning = logDeprecation(deprecation, urlSnippet);
1082
+ if (strictDeprecations) {
1083
+ return error(warning);
1084
+ }
1085
+ log(LOGLEVEL_WARN, warning);
1086
+ }
1087
+ }
1088
+
1089
+ // This file is generated by scripts/generate-buffer-to-ast.js.
1090
+ // Do not edit this file directly.
1091
+ function convertProgram(buffer) {
1092
+ const node = convertNode(0, buffer);
1093
+ switch (node.type) {
1094
+ case PanicError: {
1095
+ return error(getRollupError(logParseError(node.message)));
1096
+ }
1097
+ case ParseError: {
1098
+ return error(getRollupError(logParseError(node.message, node.start)));
1099
+ }
1100
+ default: {
1101
+ return node;
1102
+ }
1103
+ }
1104
+ }
1105
+ /* eslint-disable sort-keys */
1106
+ const nodeConverters = [
1107
+ function panicError(position, buffer) {
1108
+ return {
1109
+ type: 'PanicError',
1110
+ start: buffer[position],
1111
+ end: buffer[position + 1],
1112
+ message: buffer.convertString(buffer[position + 2])
1113
+ };
1114
+ },
1115
+ function parseError(position, buffer) {
1116
+ return {
1117
+ type: 'ParseError',
1118
+ start: buffer[position],
1119
+ end: buffer[position + 1],
1120
+ message: buffer.convertString(buffer[position + 2])
1121
+ };
1122
+ },
1123
+ function arrayExpression(position, buffer) {
1124
+ return {
1125
+ type: 'ArrayExpression',
1126
+ start: buffer[position],
1127
+ end: buffer[position + 1],
1128
+ elements: convertNodeList(buffer[position + 2], buffer)
1129
+ };
1130
+ },
1131
+ function arrayPattern(position, buffer) {
1132
+ return {
1133
+ type: 'ArrayPattern',
1134
+ start: buffer[position],
1135
+ end: buffer[position + 1],
1136
+ elements: convertNodeList(buffer[position + 2], buffer)
1137
+ };
1138
+ },
1139
+ function arrowFunctionExpression(position, buffer) {
1140
+ const flags = buffer[position + 2];
1141
+ const annotations = convertAnnotations(buffer[position + 3], buffer);
1142
+ return {
1143
+ type: 'ArrowFunctionExpression',
1144
+ start: buffer[position],
1145
+ end: buffer[position + 1],
1146
+ async: (flags & 1) === 1,
1147
+ expression: (flags & 2) === 2,
1148
+ generator: (flags & 4) === 4,
1149
+ ...(annotations.length > 0 ? { [ANNOTATION_KEY]: annotations } : {}),
1150
+ params: convertNodeList(buffer[position + 4], buffer),
1151
+ body: convertNode(buffer[position + 5], buffer),
1152
+ id: null
1153
+ };
1154
+ },
1155
+ function assignmentExpression(position, buffer) {
1156
+ return {
1157
+ type: 'AssignmentExpression',
1158
+ start: buffer[position],
1159
+ end: buffer[position + 1],
1160
+ operator: FIXED_STRINGS[buffer[position + 2]],
1161
+ left: convertNode(buffer[position + 3], buffer),
1162
+ right: convertNode(buffer[position + 4], buffer)
1163
+ };
1164
+ },
1165
+ function assignmentPattern(position, buffer) {
1166
+ return {
1167
+ type: 'AssignmentPattern',
1168
+ start: buffer[position],
1169
+ end: buffer[position + 1],
1170
+ left: convertNode(buffer[position + 2], buffer),
1171
+ right: convertNode(buffer[position + 3], buffer)
1172
+ };
1173
+ },
1174
+ function awaitExpression(position, buffer) {
1175
+ return {
1176
+ type: 'AwaitExpression',
1177
+ start: buffer[position],
1178
+ end: buffer[position + 1],
1179
+ argument: convertNode(buffer[position + 2], buffer)
1180
+ };
1181
+ },
1182
+ function binaryExpression(position, buffer) {
1183
+ return {
1184
+ type: 'BinaryExpression',
1185
+ start: buffer[position],
1186
+ end: buffer[position + 1],
1187
+ operator: FIXED_STRINGS[buffer[position + 2]],
1188
+ left: convertNode(buffer[position + 3], buffer),
1189
+ right: convertNode(buffer[position + 4], buffer)
1190
+ };
1191
+ },
1192
+ function blockStatement(position, buffer) {
1193
+ return {
1194
+ type: 'BlockStatement',
1195
+ start: buffer[position],
1196
+ end: buffer[position + 1],
1197
+ body: convertNodeList(buffer[position + 2], buffer)
1198
+ };
1199
+ },
1200
+ function breakStatement(position, buffer) {
1201
+ const labelPosition = buffer[position + 2];
1202
+ return {
1203
+ type: 'BreakStatement',
1204
+ start: buffer[position],
1205
+ end: buffer[position + 1],
1206
+ label: labelPosition === 0 ? null : convertNode(labelPosition, buffer)
1207
+ };
1208
+ },
1209
+ function callExpression(position, buffer) {
1210
+ const flags = buffer[position + 2];
1211
+ const annotations = convertAnnotations(buffer[position + 3], buffer);
1212
+ return {
1213
+ type: 'CallExpression',
1214
+ start: buffer[position],
1215
+ end: buffer[position + 1],
1216
+ optional: (flags & 1) === 1,
1217
+ ...(annotations.length > 0 ? { [ANNOTATION_KEY]: annotations } : {}),
1218
+ callee: convertNode(buffer[position + 4], buffer),
1219
+ arguments: convertNodeList(buffer[position + 5], buffer)
1220
+ };
1221
+ },
1222
+ function catchClause(position, buffer) {
1223
+ const parameterPosition = buffer[position + 2];
1224
+ return {
1225
+ type: 'CatchClause',
1226
+ start: buffer[position],
1227
+ end: buffer[position + 1],
1228
+ param: parameterPosition === 0 ? null : convertNode(parameterPosition, buffer),
1229
+ body: convertNode(buffer[position + 3], buffer)
1230
+ };
1231
+ },
1232
+ function chainExpression(position, buffer) {
1233
+ return {
1234
+ type: 'ChainExpression',
1235
+ start: buffer[position],
1236
+ end: buffer[position + 1],
1237
+ expression: convertNode(buffer[position + 2], buffer)
1238
+ };
1239
+ },
1240
+ function classBody(position, buffer) {
1241
+ return {
1242
+ type: 'ClassBody',
1243
+ start: buffer[position],
1244
+ end: buffer[position + 1],
1245
+ body: convertNodeList(buffer[position + 2], buffer)
1246
+ };
1247
+ },
1248
+ function classDeclaration(position, buffer) {
1249
+ const idPosition = buffer[position + 3];
1250
+ const superClassPosition = buffer[position + 4];
1251
+ return {
1252
+ type: 'ClassDeclaration',
1253
+ start: buffer[position],
1254
+ end: buffer[position + 1],
1255
+ decorators: convertNodeList(buffer[position + 2], buffer),
1256
+ id: idPosition === 0 ? null : convertNode(idPosition, buffer),
1257
+ superClass: superClassPosition === 0 ? null : convertNode(superClassPosition, buffer),
1258
+ body: convertNode(buffer[position + 5], buffer)
1259
+ };
1260
+ },
1261
+ function classExpression(position, buffer) {
1262
+ const idPosition = buffer[position + 3];
1263
+ const superClassPosition = buffer[position + 4];
1264
+ return {
1265
+ type: 'ClassExpression',
1266
+ start: buffer[position],
1267
+ end: buffer[position + 1],
1268
+ decorators: convertNodeList(buffer[position + 2], buffer),
1269
+ id: idPosition === 0 ? null : convertNode(idPosition, buffer),
1270
+ superClass: superClassPosition === 0 ? null : convertNode(superClassPosition, buffer),
1271
+ body: convertNode(buffer[position + 5], buffer)
1272
+ };
1273
+ },
1274
+ function conditionalExpression(position, buffer) {
1275
+ return {
1276
+ type: 'ConditionalExpression',
1277
+ start: buffer[position],
1278
+ end: buffer[position + 1],
1279
+ test: convertNode(buffer[position + 2], buffer),
1280
+ consequent: convertNode(buffer[position + 3], buffer),
1281
+ alternate: convertNode(buffer[position + 4], buffer)
1282
+ };
1283
+ },
1284
+ function continueStatement(position, buffer) {
1285
+ const labelPosition = buffer[position + 2];
1286
+ return {
1287
+ type: 'ContinueStatement',
1288
+ start: buffer[position],
1289
+ end: buffer[position + 1],
1290
+ label: labelPosition === 0 ? null : convertNode(labelPosition, buffer)
1291
+ };
1292
+ },
1293
+ function debuggerStatement(position, buffer) {
1294
+ return {
1295
+ type: 'DebuggerStatement',
1296
+ start: buffer[position],
1297
+ end: buffer[position + 1]
1298
+ };
1299
+ },
1300
+ function decorator(position, buffer) {
1301
+ return {
1302
+ type: 'Decorator',
1303
+ start: buffer[position],
1304
+ end: buffer[position + 1],
1305
+ expression: convertNode(buffer[position + 2], buffer)
1306
+ };
1307
+ },
1308
+ function directive(position, buffer) {
1309
+ return {
1310
+ type: 'ExpressionStatement',
1311
+ start: buffer[position],
1312
+ end: buffer[position + 1],
1313
+ directive: buffer.convertString(buffer[position + 2]),
1314
+ expression: convertNode(buffer[position + 3], buffer)
1315
+ };
1316
+ },
1317
+ function doWhileStatement(position, buffer) {
1318
+ return {
1319
+ type: 'DoWhileStatement',
1320
+ start: buffer[position],
1321
+ end: buffer[position + 1],
1322
+ body: convertNode(buffer[position + 2], buffer),
1323
+ test: convertNode(buffer[position + 3], buffer)
1324
+ };
1325
+ },
1326
+ function emptyStatement(position, buffer) {
1327
+ return {
1328
+ type: 'EmptyStatement',
1329
+ start: buffer[position],
1330
+ end: buffer[position + 1]
1331
+ };
1332
+ },
1333
+ function exportAllDeclaration(position, buffer) {
1334
+ const exportedPosition = buffer[position + 2];
1335
+ return {
1336
+ type: 'ExportAllDeclaration',
1337
+ start: buffer[position],
1338
+ end: buffer[position + 1],
1339
+ exported: exportedPosition === 0 ? null : convertNode(exportedPosition, buffer),
1340
+ source: convertNode(buffer[position + 3], buffer),
1341
+ attributes: convertNodeList(buffer[position + 4], buffer)
1342
+ };
1343
+ },
1344
+ function exportDefaultDeclaration(position, buffer) {
1345
+ return {
1346
+ type: 'ExportDefaultDeclaration',
1347
+ start: buffer[position],
1348
+ end: buffer[position + 1],
1349
+ declaration: convertNode(buffer[position + 2], buffer)
1350
+ };
1351
+ },
1352
+ function exportNamedDeclaration(position, buffer) {
1353
+ const sourcePosition = buffer[position + 3];
1354
+ const declarationPosition = buffer[position + 5];
1355
+ return {
1356
+ type: 'ExportNamedDeclaration',
1357
+ start: buffer[position],
1358
+ end: buffer[position + 1],
1359
+ specifiers: convertNodeList(buffer[position + 2], buffer),
1360
+ source: sourcePosition === 0 ? null : convertNode(sourcePosition, buffer),
1361
+ attributes: convertNodeList(buffer[position + 4], buffer),
1362
+ declaration: declarationPosition === 0 ? null : convertNode(declarationPosition, buffer)
1363
+ };
1364
+ },
1365
+ function exportSpecifier(position, buffer) {
1366
+ const local = convertNode(buffer[position + 2], buffer);
1367
+ const exportedPosition = buffer[position + 3];
1368
+ return {
1369
+ type: 'ExportSpecifier',
1370
+ start: buffer[position],
1371
+ end: buffer[position + 1],
1372
+ local,
1373
+ exported: exportedPosition === 0 ? { ...local } : convertNode(exportedPosition, buffer)
1374
+ };
1375
+ },
1376
+ function expressionStatement(position, buffer) {
1377
+ return {
1378
+ type: 'ExpressionStatement',
1379
+ start: buffer[position],
1380
+ end: buffer[position + 1],
1381
+ expression: convertNode(buffer[position + 2], buffer)
1382
+ };
1383
+ },
1384
+ function forInStatement(position, buffer) {
1385
+ return {
1386
+ type: 'ForInStatement',
1387
+ start: buffer[position],
1388
+ end: buffer[position + 1],
1389
+ left: convertNode(buffer[position + 2], buffer),
1390
+ right: convertNode(buffer[position + 3], buffer),
1391
+ body: convertNode(buffer[position + 4], buffer)
1392
+ };
1393
+ },
1394
+ function forOfStatement(position, buffer) {
1395
+ const flags = buffer[position + 2];
1396
+ return {
1397
+ type: 'ForOfStatement',
1398
+ start: buffer[position],
1399
+ end: buffer[position + 1],
1400
+ await: (flags & 1) === 1,
1401
+ left: convertNode(buffer[position + 3], buffer),
1402
+ right: convertNode(buffer[position + 4], buffer),
1403
+ body: convertNode(buffer[position + 5], buffer)
1404
+ };
1405
+ },
1406
+ function forStatement(position, buffer) {
1407
+ const initPosition = buffer[position + 2];
1408
+ const testPosition = buffer[position + 3];
1409
+ const updatePosition = buffer[position + 4];
1410
+ return {
1411
+ type: 'ForStatement',
1412
+ start: buffer[position],
1413
+ end: buffer[position + 1],
1414
+ init: initPosition === 0 ? null : convertNode(initPosition, buffer),
1415
+ test: testPosition === 0 ? null : convertNode(testPosition, buffer),
1416
+ update: updatePosition === 0 ? null : convertNode(updatePosition, buffer),
1417
+ body: convertNode(buffer[position + 5], buffer)
1418
+ };
1419
+ },
1420
+ function functionDeclaration(position, buffer) {
1421
+ const flags = buffer[position + 2];
1422
+ const annotations = convertAnnotations(buffer[position + 3], buffer);
1423
+ const idPosition = buffer[position + 4];
1424
+ return {
1425
+ type: 'FunctionDeclaration',
1426
+ start: buffer[position],
1427
+ end: buffer[position + 1],
1428
+ async: (flags & 1) === 1,
1429
+ generator: (flags & 2) === 2,
1430
+ ...(annotations.length > 0 ? { [ANNOTATION_KEY]: annotations } : {}),
1431
+ id: idPosition === 0 ? null : convertNode(idPosition, buffer),
1432
+ params: convertNodeList(buffer[position + 5], buffer),
1433
+ body: convertNode(buffer[position + 6], buffer),
1434
+ expression: false
1435
+ };
1436
+ },
1437
+ function functionExpression(position, buffer) {
1438
+ const flags = buffer[position + 2];
1439
+ const annotations = convertAnnotations(buffer[position + 3], buffer);
1440
+ const idPosition = buffer[position + 4];
1441
+ return {
1442
+ type: 'FunctionExpression',
1443
+ start: buffer[position],
1444
+ end: buffer[position + 1],
1445
+ async: (flags & 1) === 1,
1446
+ generator: (flags & 2) === 2,
1447
+ ...(annotations.length > 0 ? { [ANNOTATION_KEY]: annotations } : {}),
1448
+ id: idPosition === 0 ? null : convertNode(idPosition, buffer),
1449
+ params: convertNodeList(buffer[position + 5], buffer),
1450
+ body: convertNode(buffer[position + 6], buffer),
1451
+ expression: false
1452
+ };
1453
+ },
1454
+ function identifier(position, buffer) {
1455
+ return {
1456
+ type: 'Identifier',
1457
+ start: buffer[position],
1458
+ end: buffer[position + 1],
1459
+ name: buffer.convertString(buffer[position + 2])
1460
+ };
1461
+ },
1462
+ function ifStatement(position, buffer) {
1463
+ const alternatePosition = buffer[position + 4];
1464
+ return {
1465
+ type: 'IfStatement',
1466
+ start: buffer[position],
1467
+ end: buffer[position + 1],
1468
+ test: convertNode(buffer[position + 2], buffer),
1469
+ consequent: convertNode(buffer[position + 3], buffer),
1470
+ alternate: alternatePosition === 0 ? null : convertNode(alternatePosition, buffer)
1471
+ };
1472
+ },
1473
+ function importAttribute(position, buffer) {
1474
+ return {
1475
+ type: 'ImportAttribute',
1476
+ start: buffer[position],
1477
+ end: buffer[position + 1],
1478
+ key: convertNode(buffer[position + 2], buffer),
1479
+ value: convertNode(buffer[position + 3], buffer)
1480
+ };
1481
+ },
1482
+ function importDeclaration(position, buffer) {
1483
+ return {
1484
+ type: 'ImportDeclaration',
1485
+ start: buffer[position],
1486
+ end: buffer[position + 1],
1487
+ specifiers: convertNodeList(buffer[position + 2], buffer),
1488
+ source: convertNode(buffer[position + 3], buffer),
1489
+ attributes: convertNodeList(buffer[position + 4], buffer)
1490
+ };
1491
+ },
1492
+ function importDefaultSpecifier(position, buffer) {
1493
+ return {
1494
+ type: 'ImportDefaultSpecifier',
1495
+ start: buffer[position],
1496
+ end: buffer[position + 1],
1497
+ local: convertNode(buffer[position + 2], buffer)
1498
+ };
1499
+ },
1500
+ function importExpression(position, buffer) {
1501
+ const optionsPosition = buffer[position + 3];
1502
+ return {
1503
+ type: 'ImportExpression',
1504
+ start: buffer[position],
1505
+ end: buffer[position + 1],
1506
+ source: convertNode(buffer[position + 2], buffer),
1507
+ options: optionsPosition === 0 ? null : convertNode(optionsPosition, buffer)
1508
+ };
1509
+ },
1510
+ function importNamespaceSpecifier(position, buffer) {
1511
+ return {
1512
+ type: 'ImportNamespaceSpecifier',
1513
+ start: buffer[position],
1514
+ end: buffer[position + 1],
1515
+ local: convertNode(buffer[position + 2], buffer)
1516
+ };
1517
+ },
1518
+ function importSpecifier(position, buffer) {
1519
+ const importedPosition = buffer[position + 2];
1520
+ const local = convertNode(buffer[position + 3], buffer);
1521
+ return {
1522
+ type: 'ImportSpecifier',
1523
+ start: buffer[position],
1524
+ end: buffer[position + 1],
1525
+ imported: importedPosition === 0 ? { ...local } : convertNode(importedPosition, buffer),
1526
+ local
1527
+ };
1528
+ },
1529
+ function jsxAttribute(position, buffer) {
1530
+ const valuePosition = buffer[position + 3];
1531
+ return {
1532
+ type: 'JSXAttribute',
1533
+ start: buffer[position],
1534
+ end: buffer[position + 1],
1535
+ name: convertNode(buffer[position + 2], buffer),
1536
+ value: valuePosition === 0 ? null : convertNode(valuePosition, buffer)
1537
+ };
1538
+ },
1539
+ function jsxClosingElement(position, buffer) {
1540
+ return {
1541
+ type: 'JSXClosingElement',
1542
+ start: buffer[position],
1543
+ end: buffer[position + 1],
1544
+ name: convertNode(buffer[position + 2], buffer)
1545
+ };
1546
+ },
1547
+ function jsxClosingFragment(position, buffer) {
1548
+ return {
1549
+ type: 'JSXClosingFragment',
1550
+ start: buffer[position],
1551
+ end: buffer[position + 1]
1552
+ };
1553
+ },
1554
+ function jsxElement(position, buffer) {
1555
+ const closingElementPosition = buffer[position + 4];
1556
+ return {
1557
+ type: 'JSXElement',
1558
+ start: buffer[position],
1559
+ end: buffer[position + 1],
1560
+ openingElement: convertNode(buffer[position + 2], buffer),
1561
+ children: convertNodeList(buffer[position + 3], buffer),
1562
+ closingElement: closingElementPosition === 0 ? null : convertNode(closingElementPosition, buffer)
1563
+ };
1564
+ },
1565
+ function jsxEmptyExpression(position, buffer) {
1566
+ return {
1567
+ type: 'JSXEmptyExpression',
1568
+ start: buffer[position],
1569
+ end: buffer[position + 1]
1570
+ };
1571
+ },
1572
+ function jsxExpressionContainer(position, buffer) {
1573
+ return {
1574
+ type: 'JSXExpressionContainer',
1575
+ start: buffer[position],
1576
+ end: buffer[position + 1],
1577
+ expression: convertNode(buffer[position + 2], buffer)
1578
+ };
1579
+ },
1580
+ function jsxFragment(position, buffer) {
1581
+ return {
1582
+ type: 'JSXFragment',
1583
+ start: buffer[position],
1584
+ end: buffer[position + 1],
1585
+ openingFragment: convertNode(buffer[position + 2], buffer),
1586
+ children: convertNodeList(buffer[position + 3], buffer),
1587
+ closingFragment: convertNode(buffer[position + 4], buffer)
1588
+ };
1589
+ },
1590
+ function jsxIdentifier(position, buffer) {
1591
+ return {
1592
+ type: 'JSXIdentifier',
1593
+ start: buffer[position],
1594
+ end: buffer[position + 1],
1595
+ name: buffer.convertString(buffer[position + 2])
1596
+ };
1597
+ },
1598
+ function jsxMemberExpression(position, buffer) {
1599
+ return {
1600
+ type: 'JSXMemberExpression',
1601
+ start: buffer[position],
1602
+ end: buffer[position + 1],
1603
+ object: convertNode(buffer[position + 2], buffer),
1604
+ property: convertNode(buffer[position + 3], buffer)
1605
+ };
1606
+ },
1607
+ function jsxNamespacedName(position, buffer) {
1608
+ return {
1609
+ type: 'JSXNamespacedName',
1610
+ start: buffer[position],
1611
+ end: buffer[position + 1],
1612
+ namespace: convertNode(buffer[position + 2], buffer),
1613
+ name: convertNode(buffer[position + 3], buffer)
1614
+ };
1615
+ },
1616
+ function jsxOpeningElement(position, buffer) {
1617
+ const flags = buffer[position + 2];
1618
+ return {
1619
+ type: 'JSXOpeningElement',
1620
+ start: buffer[position],
1621
+ end: buffer[position + 1],
1622
+ selfClosing: (flags & 1) === 1,
1623
+ name: convertNode(buffer[position + 3], buffer),
1624
+ attributes: convertNodeList(buffer[position + 4], buffer)
1625
+ };
1626
+ },
1627
+ function jsxOpeningFragment(position, buffer) {
1628
+ return {
1629
+ type: 'JSXOpeningFragment',
1630
+ start: buffer[position],
1631
+ end: buffer[position + 1],
1632
+ attributes: [],
1633
+ selfClosing: false
1634
+ };
1635
+ },
1636
+ function jsxSpreadAttribute(position, buffer) {
1637
+ return {
1638
+ type: 'JSXSpreadAttribute',
1639
+ start: buffer[position],
1640
+ end: buffer[position + 1],
1641
+ argument: convertNode(buffer[position + 2], buffer)
1642
+ };
1643
+ },
1644
+ function jsxSpreadChild(position, buffer) {
1645
+ return {
1646
+ type: 'JSXSpreadChild',
1647
+ start: buffer[position],
1648
+ end: buffer[position + 1],
1649
+ expression: convertNode(buffer[position + 2], buffer)
1650
+ };
1651
+ },
1652
+ function jsxText(position, buffer) {
1653
+ return {
1654
+ type: 'JSXText',
1655
+ start: buffer[position],
1656
+ end: buffer[position + 1],
1657
+ value: buffer.convertString(buffer[position + 2]),
1658
+ raw: buffer.convertString(buffer[position + 3])
1659
+ };
1660
+ },
1661
+ function labeledStatement(position, buffer) {
1662
+ return {
1663
+ type: 'LabeledStatement',
1664
+ start: buffer[position],
1665
+ end: buffer[position + 1],
1666
+ label: convertNode(buffer[position + 2], buffer),
1667
+ body: convertNode(buffer[position + 3], buffer)
1668
+ };
1669
+ },
1670
+ function literalBigInt(position, buffer) {
1671
+ const bigint = buffer.convertString(buffer[position + 2]);
1672
+ return {
1673
+ type: 'Literal',
1674
+ start: buffer[position],
1675
+ end: buffer[position + 1],
1676
+ bigint,
1677
+ raw: buffer.convertString(buffer[position + 3]),
1678
+ value: BigInt(bigint)
1679
+ };
1680
+ },
1681
+ function literalBoolean(position, buffer) {
1682
+ const flags = buffer[position + 2];
1683
+ const value = (flags & 1) === 1;
1684
+ return {
1685
+ type: 'Literal',
1686
+ start: buffer[position],
1687
+ end: buffer[position + 1],
1688
+ value,
1689
+ raw: value ? 'true' : 'false'
1690
+ };
1691
+ },
1692
+ function literalNull(position, buffer) {
1693
+ return {
1694
+ type: 'Literal',
1695
+ start: buffer[position],
1696
+ end: buffer[position + 1],
1697
+ raw: 'null',
1698
+ value: null
1699
+ };
1700
+ },
1701
+ function literalNumber(position, buffer) {
1702
+ const rawPosition = buffer[position + 2];
1703
+ return {
1704
+ type: 'Literal',
1705
+ start: buffer[position],
1706
+ end: buffer[position + 1],
1707
+ raw: rawPosition === 0 ? undefined : buffer.convertString(rawPosition),
1708
+ value: new DataView(buffer.buffer).getFloat64((position + 3) << 2, true)
1709
+ };
1710
+ },
1711
+ function literalRegExp(position, buffer) {
1712
+ const flags = buffer.convertString(buffer[position + 2]);
1713
+ const pattern = buffer.convertString(buffer[position + 3]);
1714
+ return {
1715
+ type: 'Literal',
1716
+ start: buffer[position],
1717
+ end: buffer[position + 1],
1718
+ raw: `/${pattern}/${flags}`,
1719
+ regex: { flags, pattern },
1720
+ value: new RegExp(pattern, flags)
1721
+ };
1722
+ },
1723
+ function literalString(position, buffer) {
1724
+ const rawPosition = buffer[position + 3];
1725
+ return {
1726
+ type: 'Literal',
1727
+ start: buffer[position],
1728
+ end: buffer[position + 1],
1729
+ value: buffer.convertString(buffer[position + 2]),
1730
+ raw: rawPosition === 0 ? undefined : buffer.convertString(rawPosition)
1731
+ };
1732
+ },
1733
+ function logicalExpression(position, buffer) {
1734
+ return {
1735
+ type: 'LogicalExpression',
1736
+ start: buffer[position],
1737
+ end: buffer[position + 1],
1738
+ operator: FIXED_STRINGS[buffer[position + 2]],
1739
+ left: convertNode(buffer[position + 3], buffer),
1740
+ right: convertNode(buffer[position + 4], buffer)
1741
+ };
1742
+ },
1743
+ function memberExpression(position, buffer) {
1744
+ const flags = buffer[position + 2];
1745
+ return {
1746
+ type: 'MemberExpression',
1747
+ start: buffer[position],
1748
+ end: buffer[position + 1],
1749
+ computed: (flags & 1) === 1,
1750
+ optional: (flags & 2) === 2,
1751
+ object: convertNode(buffer[position + 3], buffer),
1752
+ property: convertNode(buffer[position + 4], buffer)
1753
+ };
1754
+ },
1755
+ function metaProperty(position, buffer) {
1756
+ return {
1757
+ type: 'MetaProperty',
1758
+ start: buffer[position],
1759
+ end: buffer[position + 1],
1760
+ meta: convertNode(buffer[position + 2], buffer),
1761
+ property: convertNode(buffer[position + 3], buffer)
1762
+ };
1763
+ },
1764
+ function methodDefinition(position, buffer) {
1765
+ const flags = buffer[position + 2];
1766
+ return {
1767
+ type: 'MethodDefinition',
1768
+ start: buffer[position],
1769
+ end: buffer[position + 1],
1770
+ static: (flags & 1) === 1,
1771
+ computed: (flags & 2) === 2,
1772
+ decorators: convertNodeList(buffer[position + 3], buffer),
1773
+ key: convertNode(buffer[position + 4], buffer),
1774
+ value: convertNode(buffer[position + 5], buffer),
1775
+ kind: FIXED_STRINGS[buffer[position + 6]]
1776
+ };
1777
+ },
1778
+ function newExpression(position, buffer) {
1779
+ const annotations = convertAnnotations(buffer[position + 2], buffer);
1780
+ return {
1781
+ type: 'NewExpression',
1782
+ start: buffer[position],
1783
+ end: buffer[position + 1],
1784
+ ...(annotations.length > 0 ? { [ANNOTATION_KEY]: annotations } : {}),
1785
+ callee: convertNode(buffer[position + 3], buffer),
1786
+ arguments: convertNodeList(buffer[position + 4], buffer)
1787
+ };
1788
+ },
1789
+ function objectExpression(position, buffer) {
1790
+ return {
1791
+ type: 'ObjectExpression',
1792
+ start: buffer[position],
1793
+ end: buffer[position + 1],
1794
+ properties: convertNodeList(buffer[position + 2], buffer)
1795
+ };
1796
+ },
1797
+ function objectPattern(position, buffer) {
1798
+ return {
1799
+ type: 'ObjectPattern',
1800
+ start: buffer[position],
1801
+ end: buffer[position + 1],
1802
+ properties: convertNodeList(buffer[position + 2], buffer)
1803
+ };
1804
+ },
1805
+ function privateIdentifier(position, buffer) {
1806
+ return {
1807
+ type: 'PrivateIdentifier',
1808
+ start: buffer[position],
1809
+ end: buffer[position + 1],
1810
+ name: buffer.convertString(buffer[position + 2])
1811
+ };
1812
+ },
1813
+ function program(position, buffer) {
1814
+ const invalidAnnotations = convertAnnotations(buffer[position + 3], buffer);
1815
+ return {
1816
+ type: 'Program',
1817
+ start: buffer[position],
1818
+ end: buffer[position + 1],
1819
+ body: convertNodeList(buffer[position + 2], buffer),
1820
+ ...(invalidAnnotations.length > 0 ? { [INVALID_ANNOTATION_KEY]: invalidAnnotations } : {}),
1821
+ sourceType: 'module'
1822
+ };
1823
+ },
1824
+ function property(position, buffer) {
1825
+ const flags = buffer[position + 2];
1826
+ const keyPosition = buffer[position + 3];
1827
+ const value = convertNode(buffer[position + 4], buffer);
1828
+ return {
1829
+ type: 'Property',
1830
+ start: buffer[position],
1831
+ end: buffer[position + 1],
1832
+ method: (flags & 1) === 1,
1833
+ shorthand: (flags & 2) === 2,
1834
+ computed: (flags & 4) === 4,
1835
+ key: keyPosition === 0 ? { ...value } : convertNode(keyPosition, buffer),
1836
+ value,
1837
+ kind: FIXED_STRINGS[buffer[position + 5]]
1838
+ };
1839
+ },
1840
+ function propertyDefinition(position, buffer) {
1841
+ const flags = buffer[position + 2];
1842
+ const valuePosition = buffer[position + 5];
1843
+ return {
1844
+ type: 'PropertyDefinition',
1845
+ start: buffer[position],
1846
+ end: buffer[position + 1],
1847
+ static: (flags & 1) === 1,
1848
+ computed: (flags & 2) === 2,
1849
+ decorators: convertNodeList(buffer[position + 3], buffer),
1850
+ key: convertNode(buffer[position + 4], buffer),
1851
+ value: valuePosition === 0 ? null : convertNode(valuePosition, buffer)
1852
+ };
1853
+ },
1854
+ function restElement(position, buffer) {
1855
+ return {
1856
+ type: 'RestElement',
1857
+ start: buffer[position],
1858
+ end: buffer[position + 1],
1859
+ argument: convertNode(buffer[position + 2], buffer)
1860
+ };
1861
+ },
1862
+ function returnStatement(position, buffer) {
1863
+ const argumentPosition = buffer[position + 2];
1864
+ return {
1865
+ type: 'ReturnStatement',
1866
+ start: buffer[position],
1867
+ end: buffer[position + 1],
1868
+ argument: argumentPosition === 0 ? null : convertNode(argumentPosition, buffer)
1869
+ };
1870
+ },
1871
+ function sequenceExpression(position, buffer) {
1872
+ return {
1873
+ type: 'SequenceExpression',
1874
+ start: buffer[position],
1875
+ end: buffer[position + 1],
1876
+ expressions: convertNodeList(buffer[position + 2], buffer)
1877
+ };
1878
+ },
1879
+ function spreadElement(position, buffer) {
1880
+ return {
1881
+ type: 'SpreadElement',
1882
+ start: buffer[position],
1883
+ end: buffer[position + 1],
1884
+ argument: convertNode(buffer[position + 2], buffer)
1885
+ };
1886
+ },
1887
+ function staticBlock(position, buffer) {
1888
+ return {
1889
+ type: 'StaticBlock',
1890
+ start: buffer[position],
1891
+ end: buffer[position + 1],
1892
+ body: convertNodeList(buffer[position + 2], buffer)
1893
+ };
1894
+ },
1895
+ function superElement(position, buffer) {
1896
+ return {
1897
+ type: 'Super',
1898
+ start: buffer[position],
1899
+ end: buffer[position + 1]
1900
+ };
1901
+ },
1902
+ function switchCase(position, buffer) {
1903
+ const testPosition = buffer[position + 2];
1904
+ return {
1905
+ type: 'SwitchCase',
1906
+ start: buffer[position],
1907
+ end: buffer[position + 1],
1908
+ test: testPosition === 0 ? null : convertNode(testPosition, buffer),
1909
+ consequent: convertNodeList(buffer[position + 3], buffer)
1910
+ };
1911
+ },
1912
+ function switchStatement(position, buffer) {
1913
+ return {
1914
+ type: 'SwitchStatement',
1915
+ start: buffer[position],
1916
+ end: buffer[position + 1],
1917
+ discriminant: convertNode(buffer[position + 2], buffer),
1918
+ cases: convertNodeList(buffer[position + 3], buffer)
1919
+ };
1920
+ },
1921
+ function taggedTemplateExpression(position, buffer) {
1922
+ return {
1923
+ type: 'TaggedTemplateExpression',
1924
+ start: buffer[position],
1925
+ end: buffer[position + 1],
1926
+ tag: convertNode(buffer[position + 2], buffer),
1927
+ quasi: convertNode(buffer[position + 3], buffer)
1928
+ };
1929
+ },
1930
+ function templateElement(position, buffer) {
1931
+ const flags = buffer[position + 2];
1932
+ const cookedPosition = buffer[position + 3];
1933
+ const cooked = cookedPosition === 0 ? undefined : buffer.convertString(cookedPosition);
1934
+ const raw = buffer.convertString(buffer[position + 4]);
1935
+ return {
1936
+ type: 'TemplateElement',
1937
+ start: buffer[position],
1938
+ end: buffer[position + 1],
1939
+ tail: (flags & 1) === 1,
1940
+ value: { cooked, raw }
1941
+ };
1942
+ },
1943
+ function templateLiteral(position, buffer) {
1944
+ return {
1945
+ type: 'TemplateLiteral',
1946
+ start: buffer[position],
1947
+ end: buffer[position + 1],
1948
+ quasis: convertNodeList(buffer[position + 2], buffer),
1949
+ expressions: convertNodeList(buffer[position + 3], buffer)
1950
+ };
1951
+ },
1952
+ function thisExpression(position, buffer) {
1953
+ return {
1954
+ type: 'ThisExpression',
1955
+ start: buffer[position],
1956
+ end: buffer[position + 1]
1957
+ };
1958
+ },
1959
+ function throwStatement(position, buffer) {
1960
+ return {
1961
+ type: 'ThrowStatement',
1962
+ start: buffer[position],
1963
+ end: buffer[position + 1],
1964
+ argument: convertNode(buffer[position + 2], buffer)
1965
+ };
1966
+ },
1967
+ function tryStatement(position, buffer) {
1968
+ const handlerPosition = buffer[position + 3];
1969
+ const finalizerPosition = buffer[position + 4];
1970
+ return {
1971
+ type: 'TryStatement',
1972
+ start: buffer[position],
1973
+ end: buffer[position + 1],
1974
+ block: convertNode(buffer[position + 2], buffer),
1975
+ handler: handlerPosition === 0 ? null : convertNode(handlerPosition, buffer),
1976
+ finalizer: finalizerPosition === 0 ? null : convertNode(finalizerPosition, buffer)
1977
+ };
1978
+ },
1979
+ function unaryExpression(position, buffer) {
1980
+ return {
1981
+ type: 'UnaryExpression',
1982
+ start: buffer[position],
1983
+ end: buffer[position + 1],
1984
+ operator: FIXED_STRINGS[buffer[position + 2]],
1985
+ argument: convertNode(buffer[position + 3], buffer),
1986
+ prefix: true
1987
+ };
1988
+ },
1989
+ function updateExpression(position, buffer) {
1990
+ const flags = buffer[position + 2];
1991
+ return {
1992
+ type: 'UpdateExpression',
1993
+ start: buffer[position],
1994
+ end: buffer[position + 1],
1995
+ prefix: (flags & 1) === 1,
1996
+ operator: FIXED_STRINGS[buffer[position + 3]],
1997
+ argument: convertNode(buffer[position + 4], buffer)
1998
+ };
1999
+ },
2000
+ function variableDeclaration(position, buffer) {
2001
+ return {
2002
+ type: 'VariableDeclaration',
2003
+ start: buffer[position],
2004
+ end: buffer[position + 1],
2005
+ kind: FIXED_STRINGS[buffer[position + 2]],
2006
+ declarations: convertNodeList(buffer[position + 3], buffer)
2007
+ };
2008
+ },
2009
+ function variableDeclarator(position, buffer) {
2010
+ const initPosition = buffer[position + 3];
2011
+ return {
2012
+ type: 'VariableDeclarator',
2013
+ start: buffer[position],
2014
+ end: buffer[position + 1],
2015
+ id: convertNode(buffer[position + 2], buffer),
2016
+ init: initPosition === 0 ? null : convertNode(initPosition, buffer)
2017
+ };
2018
+ },
2019
+ function whileStatement(position, buffer) {
2020
+ return {
2021
+ type: 'WhileStatement',
2022
+ start: buffer[position],
2023
+ end: buffer[position + 1],
2024
+ test: convertNode(buffer[position + 2], buffer),
2025
+ body: convertNode(buffer[position + 3], buffer)
2026
+ };
2027
+ },
2028
+ function yieldExpression(position, buffer) {
2029
+ const flags = buffer[position + 2];
2030
+ const argumentPosition = buffer[position + 3];
2031
+ return {
2032
+ type: 'YieldExpression',
2033
+ start: buffer[position],
2034
+ end: buffer[position + 1],
2035
+ delegate: (flags & 1) === 1,
2036
+ argument: argumentPosition === 0 ? null : convertNode(argumentPosition, buffer)
2037
+ };
2038
+ }
2039
+ ];
2040
+ function convertNode(position, buffer) {
2041
+ const nodeType = buffer[position];
2042
+ const converter = nodeConverters[nodeType];
2043
+ /* istanbul ignore if: This should never be executed but is a safeguard against faulty buffers */
2044
+ if (!converter) {
2045
+ console.trace();
2046
+ throw new Error(`Unknown node type: ${nodeType}`);
2047
+ }
2048
+ return converter(position + 1, buffer);
2049
+ }
2050
+ function convertNodeList(position, buffer) {
2051
+ if (position === 0)
2052
+ return EMPTY_ARRAY;
2053
+ const length = buffer[position++];
2054
+ const list = new Array(length);
2055
+ for (let index = 0; index < length; index++) {
2056
+ const nodePosition = buffer[position++];
2057
+ list[index] = nodePosition ? convertNode(nodePosition, buffer) : null;
2058
+ }
2059
+ return list;
2060
+ }
2061
+
2062
+ function getAstBuffer(astBuffer) {
2063
+ const array = new Uint32Array(astBuffer.buffer);
2064
+ let convertString;
2065
+ if (typeof Buffer !== 'undefined' && astBuffer instanceof Buffer) {
2066
+ convertString = (position) => {
2067
+ const length = array[position++];
2068
+ const bytePosition = position << 2;
2069
+ return astBuffer.toString('utf8', bytePosition, bytePosition + length);
2070
+ };
2071
+ }
2072
+ else {
2073
+ const textDecoder = new TextDecoder();
2074
+ convertString = (position) => {
2075
+ const length = array[position++];
2076
+ const bytePosition = position << 2;
2077
+ return textDecoder.decode(astBuffer.subarray(bytePosition, bytePosition + length));
2078
+ };
2079
+ }
2080
+ return Object.assign(array, { convertString });
2081
+ }
2082
+
2083
+ const parseAst = (input, { allowReturnOutsideFunction = false, jsx = false } = {}) => convertProgram(getAstBuffer(parse(input, allowReturnOutsideFunction, jsx)));
2084
+ const parseAstAsync = async (input, { allowReturnOutsideFunction = false, jsx = false, signal } = {}) => convertProgram(getAstBuffer(await parseAsync(input, allowReturnOutsideFunction, jsx, signal)));
2085
+
2086
+ export { ANNOTATION_KEY, ArrowFunctionExpression, AwaitExpression, BLANK, BlockStatement, CallExpression, CatchClause, EMPTY_ARRAY, EMPTY_OBJECT, EMPTY_SET, ExportDefaultDeclaration, ExpressionStatement, FIXED_STRINGS, FunctionExpression, INVALID_ANNOTATION_KEY, Identifier, ImportExpression, LOGLEVEL_DEBUG, LOGLEVEL_ERROR, LOGLEVEL_INFO, LOGLEVEL_WARN, Literal, MemberExpression, ObjectExpression, Program, Property, RestElement, ReturnStatement, StaticBlock, TemplateLiteral, URL_GENERATEBUNDLE, URL_JSX, URL_OUTPUT_AMD_BASEPATH, URL_OUTPUT_AMD_ID, URL_OUTPUT_DIR, URL_OUTPUT_EXTERNALIMPORTATTRIBUTES, URL_OUTPUT_FORMAT, URL_OUTPUT_GENERATEDCODE, URL_OUTPUT_INLINEDYNAMICIMPORTS, URL_OUTPUT_INTEROP, URL_OUTPUT_MANUALCHUNKS, URL_OUTPUT_SOURCEMAPBASEURL, URL_OUTPUT_SOURCEMAPFILE, URL_PRESERVEENTRYSIGNATURES, URL_TREESHAKE, URL_TREESHAKE_MODULESIDEEFFECTS, URL_WATCH, VariableDeclarator, addTrailingSlashIfMissed, augmentCodeLocation, augmentLogMessage, convertAnnotations, convertNode, error, getAliasName, getAstBuffer, getImportPath, getRollupError, isAbsolute, isPathFragment, isRelative, isValidUrl, locate, logAddonNotGenerated, logAlreadyClosed, logAmbiguousExternalNamespaces, logAnonymousPluginCache, logAssetNotFinalisedForFileName, logAssetReferenceIdNotFoundForSetSource, logAssetSourceAlreadySet, logBadLoader, logCannotAssignModuleToChunk, logCannotCallNamespace, logCannotEmitFromOptionsHook, logChunkInvalid, logChunkNotGeneratedForFileName, logCircularDependency, logCircularReexport, logConflictingSourcemapSources, logConstVariableReassignError, logCyclicCrossChunkReexport, logDuplicateArgumentNameError, logDuplicateExportError, logDuplicatePluginName, logEmptyChunk, logEntryCannotBeExternal, logEval, logExternalModulesCannotBeIncludedInManualChunks, logExternalModulesCannotBeTransformedToModules, logExternalSyntheticExports, logFailedValidation, logFileNameConflict, logFileReferenceIdNotFoundForFilename, logFirstSideEffect, logIllegalIdentifierAsName, logIllegalImportReassignment, logImplicitDependantCannotBeExternal, logImplicitDependantIsNotIncluded, logImportAttributeIsInvalid, logImportOptionsAreInvalid, logIncompatibleExportOptionValue, logInconsistentImportAttributes, logInputHookInOutputPlugin, logInternalIdCannotBeExternal, logInvalidAddonPluginHook, logInvalidAnnotation, logInvalidExportOptionValue, logInvalidFormatForTopLevelAwait, logInvalidFunctionPluginHook, logInvalidLogPosition, logInvalidOption, logInvalidRollupPhaseForChunkEmission, logInvalidSetAssetSourceCall, logInvalidSourcemapForError, logLevelPriority, logMissingEntryExport, logMissingExport, logMissingFileOrDirOption, logMissingGlobalName, logMissingJsxExport, logMissingNameOptionForIifeExport, logMissingNameOptionForUmdExport, logMissingNodeBuiltins, logMixedExport, logModuleLevelDirective, logModuleParseError, logNamespaceConflict, logNoAssetSourceSet, logNoTransformMapOrAstWithoutCode, logOptimizeChunkStatus, logParseError, logPluginError, logRedeclarationError, logReservedNamespace, logShimmedExport, logSourcemapBroken, logSyntheticNamedExportsNeedNamespaceExport, logThisIsUndefined, logUnexpectedNamedImport, logUnexpectedNamespaceReexport, logUnknownOption, logUnresolvedEntry, logUnresolvedImplicitDependant, logUnresolvedImport, logUnresolvedImportTreatedAsExternal, logUnusedExternalImports, normalize, parseAst, parseAstAsync, printQuotedStringList, relative, relativeId, warnDeprecation };