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,3668 @@
1
+ /// <reference types="node" />
2
+ import { ModuleRunnerTransport } from "./moduleRunnerTransport-BWUZBVLX.js";
3
+ import { ConnectedPayload, CustomPayload, CustomPayload as hmrPayload_CustomPayload, ErrorPayload, FullReloadPayload, HMRPayload, HotPayload, HotPayload as hmrPayload_HotPayload, PrunePayload, Update, UpdatePayload } from "../../types/hmrPayload.js";
4
+ import { CustomEventMap, InferCustomEventPayload, InferCustomEventPayload as hmrPayload_InferCustomEventPayload, InvalidatePayload } from "../../types/customEvent.js";
5
+ import * as Rollup from "rollup";
6
+ import { CustomPluginOptions, ExistingRawSourceMap, InputOption, InputOptions, LoadResult, MinimalPluginContext, ModuleFormat, ModuleInfo, ObjectHook, OutputBundle, OutputChunk, PartialResolvedId, PluginContext, PluginContextMeta, PluginHooks, ResolveIdResult, RollupError, RollupLog, RollupOptions, RollupOutput, RollupWatcher, SourceDescription, SourceMap, SourceMapInput, TransformPluginContext, WatcherOptions } from "rollup";
7
+ import { parseAst, parseAstAsync } from "rollup/parseAst";
8
+ import * as http from "node:http";
9
+ import { Agent, ClientRequest, ClientRequestArgs, OutgoingHttpHeaders, ServerResponse } from "node:http";
10
+ import { Http2SecureServer } from "node:http2";
11
+ import * as fs from "node:fs";
12
+ import { EventEmitter } from "node:events";
13
+ import { Server as HttpsServer, ServerOptions as HttpsServerOptions } from "node:https";
14
+ import * as net from "node:net";
15
+ import { Duplex, DuplexOptions, Stream } from "node:stream";
16
+ import { FetchFunction, FetchFunctionOptions, FetchResult, FetchResult as moduleRunner_FetchResult, ModuleEvaluator, ModuleRunner, ModuleRunnerHmr, ModuleRunnerOptions } from "vite/module-runner";
17
+ import { BuildOptions as esbuild_BuildOptions, TransformOptions as EsbuildTransformOptions, TransformOptions as esbuild_TransformOptions, TransformResult as esbuild_TransformResult, version as esbuildVersion } from "esbuild";
18
+ import { SecureContextOptions } from "node:tls";
19
+ import { URL as url_URL } from "node:url";
20
+ import { ZlibOptions } from "node:zlib";
21
+ import { Terser, TerserMinifyOptions } from "../../types/internal/terserOptions.js";
22
+ import * as PostCSS from "postcss";
23
+ import { LightningCSSOptions, LightningCSSOptions as lightningcssOptions_LightningCSSOptions } from "../../types/internal/lightningcssOptions.js";
24
+ import { LessPreprocessorBaseOptions, SassModernPreprocessBaseOptions, StylusPreprocessorBaseOptions } from "../../types/internal/cssPreprocessorOptions.js";
25
+ import { GeneralImportGlobOptions, ImportGlobFunction, ImportGlobOptions, KnownAsTypeMap } from "../../types/importGlob.js";
26
+ import { ChunkMetadata, CustomPluginOptionsVite } from "../../types/metadata.js";
27
+
28
+ //#region rolldown:runtime
29
+
30
+ //#endregion
31
+ //#region src/types/alias.d.ts
32
+ interface Alias {
33
+ find: string | RegExp;
34
+ replacement: string;
35
+ /**
36
+ * Instructs the plugin to use an alternative resolving algorithm,
37
+ * rather than the Rollup's resolver.
38
+ * @default null
39
+ */
40
+ customResolver?: ResolverFunction | ResolverObject | null;
41
+ }
42
+ type MapToFunction<T> = T extends Function ? T : never;
43
+ type ResolverFunction = MapToFunction<PluginHooks['resolveId']>;
44
+ interface ResolverObject {
45
+ buildStart?: PluginHooks['buildStart'];
46
+ resolveId: ResolverFunction;
47
+ }
48
+
49
+ /**
50
+ * Specifies an `Object`, or an `Array` of `Object`,
51
+ * which defines aliases used to replace values in `import` or `require` statements.
52
+ * With either format, the order of the entries is important,
53
+ * in that the first defined rules are applied first.
54
+ *
55
+ * This is passed to \@rollup/plugin-alias as the "entries" field
56
+ * https://github.com/rollup/plugins/tree/master/packages/alias#entries
57
+ */
58
+ type AliasOptions = readonly Alias[] | {
59
+ [find: string]: string;
60
+ };
61
+ //#endregion
62
+ //#region src/types/anymatch.d.ts
63
+ type AnymatchFn = (testString: string) => boolean;
64
+ type AnymatchPattern = string | RegExp | AnymatchFn;
65
+ type AnymatchMatcher = AnymatchPattern | AnymatchPattern[];
66
+ //#endregion
67
+ //#region src/types/chokidar.d.ts
68
+ declare class FSWatcher extends EventEmitter implements fs.FSWatcher {
69
+ options: WatchOptions;
70
+
71
+ /**
72
+ * Constructs a new FSWatcher instance with optional WatchOptions parameter.
73
+ */
74
+ constructor(options?: WatchOptions);
75
+
76
+ /**
77
+ * When called, requests that the Node.js event loop not exit so long as the fs.FSWatcher is active.
78
+ * Calling watcher.ref() multiple times will have no effect.
79
+ */
80
+ ref(): this;
81
+
82
+ /**
83
+ * When called, the active fs.FSWatcher object will not require the Node.js event loop to remain active.
84
+ * If there is no other activity keeping the event loop running, the process may exit before the fs.FSWatcher object's callback is invoked.
85
+ * Calling watcher.unref() multiple times will have no effect.
86
+ */
87
+ unref(): this;
88
+
89
+ /**
90
+ * Add files, directories, or glob patterns for tracking. Takes an array of strings or just one
91
+ * string.
92
+ */
93
+ add(paths: string | ReadonlyArray<string>): this;
94
+
95
+ /**
96
+ * Stop watching files, directories, or glob patterns. Takes an array of strings or just one
97
+ * string.
98
+ */
99
+ unwatch(paths: string | ReadonlyArray<string>): this;
100
+
101
+ /**
102
+ * Returns an object representing all the paths on the file system being watched by this
103
+ * `FSWatcher` instance. The object's keys are all the directories (using absolute paths unless
104
+ * the `cwd` option was used), and the values are arrays of the names of the items contained in
105
+ * each directory.
106
+ */
107
+ getWatched(): {
108
+ [directory: string]: string[];
109
+ };
110
+
111
+ /**
112
+ * Removes all listeners from watched files.
113
+ */
114
+ close(): Promise<void>;
115
+ on(event: 'add' | 'addDir' | 'change', listener: (path: string, stats?: fs.Stats) => void): this;
116
+ on(event: 'all', listener: (eventName: 'add' | 'addDir' | 'change' | 'unlink' | 'unlinkDir', path: string, stats?: fs.Stats) => void): this;
117
+
118
+ /**
119
+ * Error occurred
120
+ */
121
+ on(event: 'error', listener: (error: Error) => void): this;
122
+
123
+ /**
124
+ * Exposes the native Node `fs.FSWatcher events`
125
+ */
126
+ on(event: 'raw', listener: (eventName: string, path: string, details: any) => void): this;
127
+
128
+ /**
129
+ * Fires when the initial scan is complete
130
+ */
131
+ on(event: 'ready', listener: () => void): this;
132
+ on(event: 'unlink' | 'unlinkDir', listener: (path: string) => void): this;
133
+ on(event: string, listener: (...args: any[]) => void): this;
134
+ }
135
+ interface WatchOptions {
136
+ /**
137
+ * Indicates whether the process should continue to run as long as files are being watched. If
138
+ * set to `false` when using `fsevents` to watch, no more events will be emitted after `ready`,
139
+ * even if the process continues to run.
140
+ */
141
+ persistent?: boolean;
142
+
143
+ /**
144
+ * ([anymatch](https://github.com/micromatch/anymatch)-compatible definition) Defines files/paths to
145
+ * be ignored. The whole relative or absolute path is tested, not just filename. If a function
146
+ * with two arguments is provided, it gets called twice per path - once with a single argument
147
+ * (the path), second time with two arguments (the path and the
148
+ * [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object of that path).
149
+ */
150
+ ignored?: AnymatchMatcher;
151
+
152
+ /**
153
+ * If set to `false` then `add`/`addDir` events are also emitted for matching paths while
154
+ * instantiating the watching as chokidar discovers these file paths (before the `ready` event).
155
+ */
156
+ ignoreInitial?: boolean;
157
+
158
+ /**
159
+ * When `false`, only the symlinks themselves will be watched for changes instead of following
160
+ * the link references and bubbling events through the link's path.
161
+ */
162
+ followSymlinks?: boolean;
163
+
164
+ /**
165
+ * The base directory from which watch `paths` are to be derived. Paths emitted with events will
166
+ * be relative to this.
167
+ */
168
+ cwd?: string;
169
+
170
+ /**
171
+ * If set to true then the strings passed to .watch() and .add() are treated as literal path
172
+ * names, even if they look like globs.
173
+ *
174
+ * @default false
175
+ */
176
+ disableGlobbing?: boolean;
177
+
178
+ /**
179
+ * Whether to use fs.watchFile (backed by polling), or fs.watch. If polling leads to high CPU
180
+ * utilization, consider setting this to `false`. It is typically necessary to **set this to
181
+ * `true` to successfully watch files over a network**, and it may be necessary to successfully
182
+ * watch files in other non-standard situations. Setting to `true` explicitly on OS X overrides
183
+ * the `useFsEvents` default.
184
+ */
185
+ usePolling?: boolean;
186
+
187
+ /**
188
+ * Whether to use the `fsevents` watching interface if available. When set to `true` explicitly
189
+ * and `fsevents` is available this supersedes the `usePolling` setting. When set to `false` on
190
+ * OS X, `usePolling: true` becomes the default.
191
+ */
192
+ useFsEvents?: boolean;
193
+
194
+ /**
195
+ * If relying upon the [`fs.Stats`](https://nodejs.org/api/fs.html#fs_class_fs_stats) object that
196
+ * may get passed with `add`, `addDir`, and `change` events, set this to `true` to ensure it is
197
+ * provided even in cases where it wasn't already available from the underlying watch events.
198
+ */
199
+ alwaysStat?: boolean;
200
+
201
+ /**
202
+ * If set, limits how many levels of subdirectories will be traversed.
203
+ */
204
+ depth?: number;
205
+
206
+ /**
207
+ * Interval of file system polling.
208
+ */
209
+ interval?: number;
210
+
211
+ /**
212
+ * Interval of file system polling for binary files. ([see list of binary extensions](https://gi
213
+ * thub.com/sindresorhus/binary-extensions/blob/master/binary-extensions.json))
214
+ */
215
+ binaryInterval?: number;
216
+
217
+ /**
218
+ * Indicates whether to watch files that don't have read permissions if possible. If watching
219
+ * fails due to `EPERM` or `EACCES` with this set to `true`, the errors will be suppressed
220
+ * silently.
221
+ */
222
+ ignorePermissionErrors?: boolean;
223
+
224
+ /**
225
+ * `true` if `useFsEvents` and `usePolling` are `false`. Automatically filters out artifacts
226
+ * that occur when using editors that use "atomic writes" instead of writing directly to the
227
+ * source file. If a file is re-added within 100 ms of being deleted, Chokidar emits a `change`
228
+ * event rather than `unlink` then `add`. If the default of 100 ms does not work well for you,
229
+ * you can override it by setting `atomic` to a custom value, in milliseconds.
230
+ */
231
+ atomic?: boolean | number;
232
+
233
+ /**
234
+ * can be set to an object in order to adjust timing params:
235
+ */
236
+ awaitWriteFinish?: AwaitWriteFinishOptions | boolean;
237
+ }
238
+ interface AwaitWriteFinishOptions {
239
+ /**
240
+ * Amount of time in milliseconds for a file size to remain constant before emitting its event.
241
+ */
242
+ stabilityThreshold?: number;
243
+
244
+ /**
245
+ * File size polling interval.
246
+ */
247
+ pollInterval?: number;
248
+ }
249
+
250
+ /**
251
+ * produces an instance of `FSWatcher`.
252
+ */
253
+ //#endregion
254
+ //#region src/types/connect.d.ts
255
+ declare namespace Connect {
256
+ export type ServerHandle = HandleFunction | http.Server;
257
+ export class IncomingMessage extends http.IncomingMessage {
258
+ originalUrl?: http.IncomingMessage['url'] | undefined;
259
+ }
260
+ export type NextFunction = (err?: any) => void;
261
+ export type SimpleHandleFunction = (req: IncomingMessage, res: http.ServerResponse) => void;
262
+ export type NextHandleFunction = (req: IncomingMessage, res: http.ServerResponse, next: NextFunction) => void;
263
+ export type ErrorHandleFunction = (err: any, req: IncomingMessage, res: http.ServerResponse, next: NextFunction) => void;
264
+ export type HandleFunction = SimpleHandleFunction | NextHandleFunction | ErrorHandleFunction;
265
+ export interface ServerStackItem {
266
+ route: string;
267
+ handle: ServerHandle;
268
+ }
269
+ export interface Server extends NodeJS.EventEmitter {
270
+ (req: http.IncomingMessage, res: http.ServerResponse, next?: Function): void;
271
+ route: string;
272
+ stack: ServerStackItem[];
273
+
274
+ /**
275
+ * Utilize the given middleware `handle` to the given `route`,
276
+ * defaulting to _/_. This "route" is the mount-point for the
277
+ * middleware, when given a value other than _/_ the middleware
278
+ * is only effective when that segment is present in the request's
279
+ * pathname.
280
+ *
281
+ * For example if we were to mount a function at _/admin_, it would
282
+ * be invoked on _/admin_, and _/admin/settings_, however it would
283
+ * not be invoked for _/_, or _/posts_.
284
+ */
285
+ use(fn: NextHandleFunction): Server;
286
+ use(fn: HandleFunction): Server;
287
+ use(route: string, fn: NextHandleFunction): Server;
288
+ use(route: string, fn: HandleFunction): Server;
289
+
290
+ /**
291
+ * Handle server requests, punting them down
292
+ * the middleware stack.
293
+ */
294
+ handle(req: http.IncomingMessage, res: http.ServerResponse, next: Function): void;
295
+
296
+ /**
297
+ * Listen for connections.
298
+ *
299
+ * This method takes the same arguments
300
+ * as node's `http.Server#listen()`.
301
+ *
302
+ * HTTP and HTTPS:
303
+ *
304
+ * If you run your application both as HTTP
305
+ * and HTTPS you may wrap them individually,
306
+ * since your Connect "server" is really just
307
+ * a JavaScript `Function`.
308
+ *
309
+ * var connect = require('connect')
310
+ * , http = require('http')
311
+ * , https = require('https');
312
+ *
313
+ * var app = connect();
314
+ *
315
+ * http.createServer(app).listen(80);
316
+ * https.createServer(options, app).listen(443);
317
+ */
318
+ listen(port: number, hostname?: string, backlog?: number, callback?: Function): http.Server;
319
+ listen(port: number, hostname?: string, callback?: Function): http.Server;
320
+ listen(path: string, callback?: Function): http.Server;
321
+ listen(handle: any, listeningListener?: Function): http.Server;
322
+ }
323
+ }
324
+ //#endregion
325
+ //#region ../../node_modules/.pnpm/http-proxy-3@1.21.0/node_modules/http-proxy-3/dist/lib/http-proxy/index.d.ts
326
+ interface ProxyTargetDetailed {
327
+ host: string;
328
+ port: number;
329
+ protocol?: string;
330
+ hostname?: string;
331
+ socketPath?: string;
332
+ key?: string;
333
+ passphrase?: string;
334
+ pfx?: Buffer | string;
335
+ cert?: string;
336
+ ca?: string;
337
+ ciphers?: string;
338
+ secureProtocol?: string;
339
+ }
340
+ type ProxyType = "ws" | "web";
341
+ type ProxyTarget = ProxyTargetUrl | ProxyTargetDetailed;
342
+ type ProxyTargetUrl = URL | string | {
343
+ port: number;
344
+ host: string;
345
+ protocol?: string;
346
+ };
347
+ type NormalizeProxyTarget<T extends ProxyTargetUrl> = Exclude<T, string> | URL;
348
+ interface ServerOptions$3 {
349
+ /** URL string to be parsed with the url module. */
350
+ target?: ProxyTarget;
351
+ /** URL string to be parsed with the url module or a URL object. */
352
+ forward?: ProxyTargetUrl;
353
+ /** Object to be passed to http(s).request. */
354
+ agent?: any;
355
+ /** Object to be passed to https.createServer(). */
356
+ ssl?: any;
357
+ /** If you want to proxy websockets. */
358
+ ws?: boolean;
359
+ /** Adds x- forward headers. */
360
+ xfwd?: boolean;
361
+ /** Verify SSL certificate. */
362
+ secure?: boolean;
363
+ /** Explicitly specify if we are proxying to another proxy. */
364
+ toProxy?: boolean;
365
+ /** Specify whether you want to prepend the target's path to the proxy path. */
366
+ prependPath?: boolean;
367
+ /** Specify whether you want to ignore the proxy path of the incoming request. */
368
+ ignorePath?: boolean;
369
+ /** Local interface string to bind for outgoing connections. */
370
+ localAddress?: string;
371
+ /** Changes the origin of the host header to the target URL. */
372
+ changeOrigin?: boolean;
373
+ /** specify whether you want to keep letter case of response header key */
374
+ preserveHeaderKeyCase?: boolean;
375
+ /** Basic authentication i.e. 'user:password' to compute an Authorization header. */
376
+ auth?: string;
377
+ /** Rewrites the location hostname on (301 / 302 / 307 / 308) redirects, Default: null. */
378
+ hostRewrite?: string;
379
+ /** Rewrites the location host/ port on (301 / 302 / 307 / 308) redirects based on requested host/ port.Default: false. */
380
+ autoRewrite?: boolean;
381
+ /** Rewrites the location protocol on (301 / 302 / 307 / 308) redirects to 'http' or 'https'.Default: null. */
382
+ protocolRewrite?: string;
383
+ /** rewrites domain of set-cookie headers. */
384
+ cookieDomainRewrite?: false | string | {
385
+ [oldDomain: string]: string;
386
+ };
387
+ /** rewrites path of set-cookie headers. Default: false */
388
+ cookiePathRewrite?: false | string | {
389
+ [oldPath: string]: string;
390
+ };
391
+ /** object with extra headers to be added to target requests. */
392
+ headers?: {
393
+ [header: string]: string | string[] | undefined;
394
+ };
395
+ /** Timeout (in milliseconds) when proxy receives no response from target. Default: 120000 (2 minutes) */
396
+ proxyTimeout?: number;
397
+ /** Timeout (in milliseconds) for incoming requests */
398
+ timeout?: number;
399
+ /** Specify whether you want to follow redirects. Default: false */
400
+ followRedirects?: boolean;
401
+ /** If set to true, none of the webOutgoing passes are called and it's your responsibility to appropriately return the response by listening and acting on the proxyRes event */
402
+ selfHandleResponse?: boolean;
403
+ /** Buffer */
404
+ buffer?: Stream;
405
+ /** Explicitly set the method type of the ProxyReq */
406
+ method?: string;
407
+ /**
408
+ * Optionally override the trusted CA certificates.
409
+ * This is passed to https.request.
410
+ */
411
+ ca?: string;
412
+ }
413
+ interface NormalizedServerOptions extends ServerOptions$3 {
414
+ target?: NormalizeProxyTarget<ProxyTarget>;
415
+ forward?: NormalizeProxyTarget<ProxyTargetUrl>;
416
+ }
417
+ type ErrorCallback<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error> = (err: TError, req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse> | net.Socket, target?: ProxyTargetUrl) => void;
418
+ type ProxyServerEventMap<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error> = {
419
+ error: Parameters<ErrorCallback<TIncomingMessage, TServerResponse, TError>>;
420
+ start: [req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, target: ProxyTargetUrl];
421
+ open: [socket: net.Socket];
422
+ proxyReq: [proxyReq: http.ClientRequest, req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, options: ServerOptions$3, socket: net.Socket];
423
+ proxyRes: [proxyRes: InstanceType<TIncomingMessage>, req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>];
424
+ proxyReqWs: [proxyReq: http.ClientRequest, req: InstanceType<TIncomingMessage>, socket: net.Socket, options: ServerOptions$3, head: any];
425
+ econnreset: [err: Error, req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, target: ProxyTargetUrl];
426
+ end: [req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, proxyRes: InstanceType<TIncomingMessage>];
427
+ close: [proxyRes: InstanceType<TIncomingMessage>, proxySocket: net.Socket, proxyHead: any];
428
+ };
429
+ type ProxyMethodArgs<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error> = {
430
+ ws: [req: InstanceType<TIncomingMessage>, socket: any, head: any, ...args: [options?: ServerOptions$3, callback?: ErrorCallback<TIncomingMessage, TServerResponse, TError>] | [callback?: ErrorCallback<TIncomingMessage, TServerResponse, TError>]];
431
+ web: [req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, ...args: [options: ServerOptions$3, callback?: ErrorCallback<TIncomingMessage, TServerResponse, TError>] | [callback?: ErrorCallback<TIncomingMessage, TServerResponse, TError>]];
432
+ };
433
+ type PassFunctions<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error> = {
434
+ ws: (req: InstanceType<TIncomingMessage>, socket: net.Socket, options: NormalizedServerOptions, head: Buffer | undefined, server: ProxyServer<TIncomingMessage, TServerResponse, TError>, cb?: ErrorCallback<TIncomingMessage, TServerResponse, TError>) => unknown;
435
+ web: (req: InstanceType<TIncomingMessage>, res: InstanceType<TServerResponse>, options: NormalizedServerOptions, head: Buffer | undefined, server: ProxyServer<TIncomingMessage, TServerResponse, TError>, cb?: ErrorCallback<TIncomingMessage, TServerResponse, TError>) => unknown;
436
+ };
437
+ declare class ProxyServer<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error> extends EventEmitter<ProxyServerEventMap<TIncomingMessage, TServerResponse, TError>> {
438
+ /**
439
+ * Used for proxying WS(S) requests
440
+ * @param req - Client request.
441
+ * @param socket - Client socket.
442
+ * @param head - Client head.
443
+ * @param options - Additional options.
444
+ */
445
+ readonly ws: (...args: ProxyMethodArgs<TIncomingMessage, TServerResponse, TError>["ws"]) => void;
446
+ /**
447
+ * Used for proxying regular HTTP(S) requests
448
+ * @param req - Client request.
449
+ * @param res - Client response.
450
+ * @param options - Additional options.
451
+ */
452
+ readonly web: (...args: ProxyMethodArgs<TIncomingMessage, TServerResponse, TError>["web"]) => void;
453
+ private options;
454
+ private webPasses;
455
+ private wsPasses;
456
+ private _server?;
457
+ /**
458
+ * Creates the proxy server with specified options.
459
+ * @param options - Config object passed to the proxy
460
+ */
461
+ constructor(options?: ServerOptions$3);
462
+ /**
463
+ * Creates the proxy server with specified options.
464
+ * @param options Config object passed to the proxy
465
+ * @returns Proxy object with handlers for `ws` and `web` requests
466
+ */
467
+ static createProxyServer<TIncomingMessage extends typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse, TError = Error>(options?: ServerOptions$3): ProxyServer<TIncomingMessage, TServerResponse, TError>;
468
+ /**
469
+ * Creates the proxy server with specified options.
470
+ * @param options Config object passed to the proxy
471
+ * @returns Proxy object with handlers for `ws` and `web` requests
472
+ */
473
+ static createServer<TIncomingMessage extends typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse, TError = Error>(options?: ServerOptions$3): ProxyServer<TIncomingMessage, TServerResponse, TError>;
474
+ /**
475
+ * Creates the proxy server with specified options.
476
+ * @param options Config object passed to the proxy
477
+ * @returns Proxy object with handlers for `ws` and `web` requests
478
+ */
479
+ static createProxy<TIncomingMessage extends typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse, TError = Error>(options?: ServerOptions$3): ProxyServer<TIncomingMessage, TServerResponse, TError>;
480
+ createRightProxy: <PT extends ProxyType>(type: PT) => Function;
481
+ onError: (err: TError) => void;
482
+ /**
483
+ * A function that wraps the object in a webserver, for your convenience
484
+ * @param port - Port to listen on
485
+ * @param hostname - The hostname to listen on
486
+ */
487
+ listen: (port: number, hostname?: string) => this;
488
+ address: () => string | net.AddressInfo | null | undefined;
489
+ /**
490
+ * A function that closes the inner webserver and stops listening on given port
491
+ */
492
+ close: (cb?: Function) => void;
493
+ before: <PT extends ProxyType>(type: PT, passName: string, cb: PassFunctions<TIncomingMessage, TServerResponse, TError>[PT]) => void;
494
+ after: <PT extends ProxyType>(type: PT, passName: string, cb: PassFunctions<TIncomingMessage, TServerResponse, TError>[PT]) => void;
495
+ }
496
+ //#endregion
497
+ //#region ../../node_modules/.pnpm/http-proxy-3@1.21.0/node_modules/http-proxy-3/dist/lib/http-proxy/passes/ws-incoming.d.ts
498
+ declare function numOpenSockets(): number;
499
+ declare namespace index_d_exports {
500
+ export { ErrorCallback, ProxyServer, ProxyTarget, ProxyTargetUrl, ServerOptions$3 as ServerOptions, createProxyServer as createProxy, createProxyServer, createProxyServer as createServer, ProxyServer as default, numOpenSockets };
501
+ }
502
+ /**
503
+ * Creates the proxy server.
504
+ *
505
+ * Examples:
506
+ *
507
+ * httpProxy.createProxyServer({ .. }, 8000)
508
+ * // => '{ web: [Function], ws: [Function] ... }'
509
+ *
510
+ * @param {Object} Options Config object passed to the proxy
511
+ *
512
+ * @return {Object} Proxy Proxy object with handlers for `ws` and `web` requests
513
+ *
514
+ * @api public
515
+ */
516
+ declare function createProxyServer<TIncomingMessage extends typeof http.IncomingMessage = typeof http.IncomingMessage, TServerResponse extends typeof http.ServerResponse = typeof http.ServerResponse, TError = Error>(options?: ServerOptions$3): ProxyServer<TIncomingMessage, TServerResponse, TError>;
517
+ //#endregion
518
+ //#region src/node/server/middlewares/proxy.d.ts
519
+ interface ProxyOptions extends ServerOptions$3 {
520
+ /**
521
+ * rewrite path
522
+ */
523
+ rewrite?: (path: string) => string;
524
+ /**
525
+ * configure the proxy server (e.g. listen to events)
526
+ */
527
+ configure?: (proxy: ProxyServer, options: ProxyOptions) => void;
528
+ /**
529
+ * webpack-dev-server style bypass function
530
+ */
531
+ bypass?: (req: http.IncomingMessage, /** undefined for WebSocket upgrade requests */
532
+ res: http.ServerResponse | undefined, options: ProxyOptions) => void | null | undefined | false | string | Promise<void | null | undefined | boolean | string>;
533
+ /**
534
+ * rewrite the Origin header of a WebSocket request to match the target
535
+ *
536
+ * **Exercise caution as rewriting the Origin can leave the proxying open to [CSRF attacks](https://owasp.org/www-community/attacks/csrf).**
537
+ */
538
+ rewriteWsOrigin?: boolean | undefined;
539
+ }
540
+ //#endregion
541
+ //#region src/node/logger.d.ts
542
+ type LogType = 'error' | 'warn' | 'info';
543
+ type LogLevel = LogType | 'silent';
544
+ interface Logger {
545
+ info(msg: string, options?: LogOptions): void;
546
+ warn(msg: string, options?: LogOptions): void;
547
+ warnOnce(msg: string, options?: LogOptions): void;
548
+ error(msg: string, options?: LogErrorOptions): void;
549
+ clearScreen(type: LogType): void;
550
+ hasErrorLogged(error: Error | RollupError): boolean;
551
+ hasWarned: boolean;
552
+ }
553
+ interface LogOptions {
554
+ clear?: boolean;
555
+ timestamp?: boolean;
556
+ environment?: string;
557
+ }
558
+ interface LogErrorOptions extends LogOptions {
559
+ error?: Error | RollupError | null;
560
+ }
561
+ interface LoggerOptions {
562
+ prefix?: string;
563
+ allowClearScreen?: boolean;
564
+ customLogger?: Logger;
565
+ console?: Console;
566
+ }
567
+ declare function createLogger(level?: LogLevel, options?: LoggerOptions): Logger;
568
+ //#endregion
569
+ //#region src/node/http.d.ts
570
+ interface CommonServerOptions {
571
+ /**
572
+ * Specify server port. Note if the port is already being used, Vite will
573
+ * automatically try the next available port so this may not be the actual
574
+ * port the server ends up listening on.
575
+ */
576
+ port?: number;
577
+ /**
578
+ * If enabled, vite will exit if specified port is already in use
579
+ */
580
+ strictPort?: boolean;
581
+ /**
582
+ * Specify which IP addresses the server should listen on.
583
+ * Set to 0.0.0.0 to listen on all addresses, including LAN and public addresses.
584
+ */
585
+ host?: string | boolean;
586
+ /**
587
+ * The hostnames that Vite is allowed to respond to.
588
+ * `localhost` and subdomains under `.localhost` and all IP addresses are allowed by default.
589
+ * When using HTTPS, this check is skipped.
590
+ *
591
+ * If a string starts with `.`, it will allow that hostname without the `.` and all subdomains under the hostname.
592
+ * For example, `.example.com` will allow `example.com`, `foo.example.com`, and `foo.bar.example.com`.
593
+ *
594
+ * If set to `true`, the server is allowed to respond to requests for any hosts.
595
+ * This is not recommended as it will be vulnerable to DNS rebinding attacks.
596
+ */
597
+ allowedHosts?: string[] | true;
598
+ /**
599
+ * Enable TLS + HTTP/2.
600
+ * Note: this downgrades to TLS only when the proxy option is also used.
601
+ */
602
+ https?: HttpsServerOptions;
603
+ /**
604
+ * Open browser window on startup
605
+ */
606
+ open?: boolean | string;
607
+ /**
608
+ * Configure custom proxy rules for the dev server. Expects an object
609
+ * of `{ key: options }` pairs.
610
+ * Uses [`http-proxy-3`](https://github.com/sagemathinc/http-proxy-3).
611
+ * Full options [here](https://github.com/sagemathinc/http-proxy-3#options).
612
+ *
613
+ * Example `vite.config.js`:
614
+ * ``` js
615
+ * module.exports = {
616
+ * proxy: {
617
+ * // string shorthand: /foo -> http://localhost:4567/foo
618
+ * '/foo': 'http://localhost:4567',
619
+ * // with options
620
+ * '/api': {
621
+ * target: 'http://jsonplaceholder.typicode.com',
622
+ * changeOrigin: true,
623
+ * rewrite: path => path.replace(/^\/api/, '')
624
+ * }
625
+ * }
626
+ * }
627
+ * ```
628
+ */
629
+ proxy?: Record<string, string | ProxyOptions>;
630
+ /**
631
+ * Configure CORS for the dev server.
632
+ * Uses https://github.com/expressjs/cors.
633
+ *
634
+ * When enabling this option, **we recommend setting a specific value
635
+ * rather than `true`** to avoid exposing the source code to untrusted origins.
636
+ *
637
+ * Set to `true` to allow all methods from any origin, or configure separately
638
+ * using an object.
639
+ *
640
+ * @default false
641
+ */
642
+ cors?: CorsOptions | boolean;
643
+ /**
644
+ * Specify server response headers.
645
+ */
646
+ headers?: OutgoingHttpHeaders;
647
+ }
648
+ /**
649
+ * https://github.com/expressjs/cors#configuration-options
650
+ */
651
+ interface CorsOptions {
652
+ /**
653
+ * Configures the Access-Control-Allow-Origin CORS header.
654
+ *
655
+ * **We recommend setting a specific value rather than
656
+ * `true`** to avoid exposing the source code to untrusted origins.
657
+ */
658
+ origin?: CorsOrigin | ((origin: string | undefined, cb: (err: Error, origins: CorsOrigin) => void) => void);
659
+ methods?: string | string[];
660
+ allowedHeaders?: string | string[];
661
+ exposedHeaders?: string | string[];
662
+ credentials?: boolean;
663
+ maxAge?: number;
664
+ preflightContinue?: boolean;
665
+ optionsSuccessStatus?: number;
666
+ }
667
+ type CorsOrigin = boolean | string | RegExp | (string | RegExp)[];
668
+ //#endregion
669
+ //#region src/node/typeUtils.d.ts
670
+ type RequiredExceptFor<T, K extends keyof T> = Pick<T, K> & Required<Omit<T, K>>;
671
+ //#endregion
672
+ //#region src/node/preview.d.ts
673
+ interface PreviewOptions extends CommonServerOptions {}
674
+ interface ResolvedPreviewOptions extends RequiredExceptFor<PreviewOptions, 'host' | 'https' | 'proxy'> {}
675
+ interface PreviewServer {
676
+ /**
677
+ * The resolved vite config object
678
+ */
679
+ config: ResolvedConfig;
680
+ /**
681
+ * Stop the server.
682
+ */
683
+ close(): Promise<void>;
684
+ /**
685
+ * A connect app instance.
686
+ * - Can be used to attach custom middlewares to the preview server.
687
+ * - Can also be used as the handler function of a custom http server
688
+ * or as a middleware in any connect-style Node.js frameworks
689
+ *
690
+ * https://github.com/senchalabs/connect#use-middleware
691
+ */
692
+ middlewares: Connect.Server;
693
+ /**
694
+ * native Node http server instance
695
+ */
696
+ httpServer: HttpServer;
697
+ /**
698
+ * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
699
+ * if the server is not listening on any port.
700
+ */
701
+ resolvedUrls: ResolvedServerUrls | null;
702
+ /**
703
+ * Print server urls
704
+ */
705
+ printUrls(): void;
706
+ /**
707
+ * Bind CLI shortcuts
708
+ */
709
+ bindCLIShortcuts(options?: BindCLIShortcutsOptions<PreviewServer>): void;
710
+ }
711
+ type PreviewServerHook = (this: MinimalPluginContextWithoutEnvironment, server: PreviewServer) => (() => void) | void | Promise<(() => void) | void>;
712
+ /**
713
+ * Starts the Vite server in preview mode, to simulate a production deployment
714
+ */
715
+ declare function preview(inlineConfig?: InlineConfig): Promise<PreviewServer>;
716
+ //#endregion
717
+ //#region src/node/shortcuts.d.ts
718
+ type BindCLIShortcutsOptions<Server = ViteDevServer | PreviewServer> = {
719
+ /**
720
+ * Print a one-line shortcuts "help" hint to the terminal
721
+ */
722
+ print?: boolean;
723
+ /**
724
+ * Custom shortcuts to run when a key is pressed. These shortcuts take priority
725
+ * over the default shortcuts if they have the same keys (except the `h` key).
726
+ * To disable a default shortcut, define the same key but with `action: undefined`.
727
+ */
728
+ customShortcuts?: CLIShortcut<Server>[];
729
+ };
730
+ type CLIShortcut<Server = ViteDevServer | PreviewServer> = {
731
+ key: string;
732
+ description: string;
733
+ action?(server: Server): void | Promise<void>;
734
+ };
735
+ //#endregion
736
+ //#region src/node/baseEnvironment.d.ts
737
+ declare class PartialEnvironment {
738
+ name: string;
739
+ getTopLevelConfig(): ResolvedConfig;
740
+ config: ResolvedConfig & ResolvedEnvironmentOptions;
741
+ logger: Logger;
742
+ constructor(name: string, topLevelConfig: ResolvedConfig, options?: ResolvedEnvironmentOptions);
743
+ }
744
+ declare class BaseEnvironment extends PartialEnvironment {
745
+ get plugins(): readonly Plugin$1[];
746
+ constructor(name: string, config: ResolvedConfig, options?: ResolvedEnvironmentOptions);
747
+ }
748
+ /**
749
+ * This class discourages users from inversely checking the `mode`
750
+ * to determine the type of environment, e.g.
751
+ *
752
+ * ```js
753
+ * const isDev = environment.mode !== 'build' // bad
754
+ * const isDev = environment.mode === 'dev' // good
755
+ * ```
756
+ *
757
+ * You should also not check against `"unknown"` specifically. It's
758
+ * a placeholder for more possible environment types.
759
+ */
760
+ declare class UnknownEnvironment extends BaseEnvironment {
761
+ mode: "unknown";
762
+ }
763
+ //#endregion
764
+ //#region src/node/optimizer/scan.d.ts
765
+ declare class ScanEnvironment extends BaseEnvironment {
766
+ mode: "scan";
767
+ get pluginContainer(): EnvironmentPluginContainer;
768
+ init(): Promise<void>;
769
+ }
770
+ //#endregion
771
+ //#region src/node/optimizer/index.d.ts
772
+ type ExportsData = {
773
+ hasModuleSyntax: boolean;
774
+ exports: readonly string[];
775
+ jsxLoader?: boolean;
776
+ };
777
+ interface DepsOptimizer {
778
+ init: () => Promise<void>;
779
+ metadata: DepOptimizationMetadata;
780
+ scanProcessing?: Promise<void>;
781
+ registerMissingImport: (id: string, resolved: string) => OptimizedDepInfo;
782
+ run: () => void;
783
+ isOptimizedDepFile: (id: string) => boolean;
784
+ isOptimizedDepUrl: (url: string) => boolean;
785
+ getOptimizedDepId: (depInfo: OptimizedDepInfo) => string;
786
+ close: () => Promise<void>;
787
+ options: DepOptimizationOptions;
788
+ }
789
+ interface DepOptimizationConfig {
790
+ /**
791
+ * Force optimize listed dependencies (must be resolvable import paths,
792
+ * cannot be globs).
793
+ */
794
+ include?: string[];
795
+ /**
796
+ * Do not optimize these dependencies (must be resolvable import paths,
797
+ * cannot be globs).
798
+ */
799
+ exclude?: string[];
800
+ /**
801
+ * Forces ESM interop when importing these dependencies. Some legacy
802
+ * packages advertise themselves as ESM but use `require` internally
803
+ * @experimental
804
+ */
805
+ needsInterop?: string[];
806
+ /**
807
+ * Options to pass to esbuild during the dep scanning and optimization
808
+ *
809
+ * Certain options are omitted since changing them would not be compatible
810
+ * with Vite's dep optimization.
811
+ *
812
+ * - `external` is also omitted, use Vite's `optimizeDeps.exclude` option
813
+ * - `plugins` are merged with Vite's dep plugin
814
+ *
815
+ * https://esbuild.github.io/api
816
+ */
817
+ esbuildOptions?: Omit<esbuild_BuildOptions, 'bundle' | 'entryPoints' | 'external' | 'write' | 'watch' | 'outdir' | 'outfile' | 'outbase' | 'outExtension' | 'metafile'>;
818
+ /**
819
+ * List of file extensions that can be optimized. A corresponding esbuild
820
+ * plugin must exist to handle the specific extension.
821
+ *
822
+ * By default, Vite can optimize `.mjs`, `.js`, `.ts`, and `.mts` files. This option
823
+ * allows specifying additional extensions.
824
+ *
825
+ * @experimental
826
+ */
827
+ extensions?: string[];
828
+ /**
829
+ * Deps optimization during build was removed in Vite 5.1. This option is
830
+ * now redundant and will be removed in a future version. Switch to using
831
+ * `optimizeDeps.noDiscovery` and an empty or undefined `optimizeDeps.include`.
832
+ * true or 'dev' disables the optimizer, false or 'build' leaves it enabled.
833
+ * @default 'build'
834
+ * @deprecated
835
+ * @experimental
836
+ */
837
+ disabled?: boolean | 'build' | 'dev';
838
+ /**
839
+ * Automatic dependency discovery. When `noDiscovery` is true, only dependencies
840
+ * listed in `include` will be optimized. The scanner isn't run for cold start
841
+ * in this case. CJS-only dependencies must be present in `include` during dev.
842
+ * @default false
843
+ */
844
+ noDiscovery?: boolean;
845
+ /**
846
+ * When enabled, it will hold the first optimized deps results until all static
847
+ * imports are crawled on cold start. This avoids the need for full-page reloads
848
+ * when new dependencies are discovered and they trigger the generation of new
849
+ * common chunks. If all dependencies are found by the scanner plus the explicitly
850
+ * defined ones in `include`, it is better to disable this option to let the
851
+ * browser process more requests in parallel.
852
+ * @default true
853
+ * @experimental
854
+ */
855
+ holdUntilCrawlEnd?: boolean;
856
+ }
857
+ type DepOptimizationOptions = DepOptimizationConfig & {
858
+ /**
859
+ * By default, Vite will crawl your `index.html` to detect dependencies that
860
+ * need to be pre-bundled. If `build.rollupOptions.input` is specified, Vite
861
+ * will crawl those entry points instead.
862
+ *
863
+ * If neither of these fit your needs, you can specify custom entries using
864
+ * this option - the value should be a tinyglobby pattern or array of patterns
865
+ * (https://github.com/SuperchupuDev/tinyglobby) that are relative from
866
+ * vite project root. This will overwrite default entries inference.
867
+ */
868
+ entries?: string | string[];
869
+ /**
870
+ * Force dep pre-optimization regardless of whether deps have changed.
871
+ * @experimental
872
+ */
873
+ force?: boolean;
874
+ };
875
+ interface OptimizedDepInfo {
876
+ id: string;
877
+ file: string;
878
+ src?: string;
879
+ needsInterop?: boolean;
880
+ browserHash?: string;
881
+ fileHash?: string;
882
+ /**
883
+ * During optimization, ids can still be resolved to their final location
884
+ * but the bundles may not yet be saved to disk
885
+ */
886
+ processing?: Promise<void>;
887
+ /**
888
+ * ExportData cache, discovered deps will parse the src entry to get exports
889
+ * data used both to define if interop is needed and when pre-bundling
890
+ */
891
+ exportsData?: Promise<ExportsData>;
892
+ }
893
+ interface DepOptimizationMetadata {
894
+ /**
895
+ * The main hash is determined by user config and dependency lockfiles.
896
+ * This is checked on server startup to avoid unnecessary re-bundles.
897
+ */
898
+ hash: string;
899
+ /**
900
+ * This hash is determined by dependency lockfiles.
901
+ * This is checked on server startup to avoid unnecessary re-bundles.
902
+ */
903
+ lockfileHash: string;
904
+ /**
905
+ * This hash is determined by user config.
906
+ * This is checked on server startup to avoid unnecessary re-bundles.
907
+ */
908
+ configHash: string;
909
+ /**
910
+ * The browser hash is determined by the main hash plus additional dependencies
911
+ * discovered at runtime. This is used to invalidate browser requests to
912
+ * optimized deps.
913
+ */
914
+ browserHash: string;
915
+ /**
916
+ * Metadata for each already optimized dependency
917
+ */
918
+ optimized: Record<string, OptimizedDepInfo>;
919
+ /**
920
+ * Metadata for non-entry optimized chunks and dynamic imports
921
+ */
922
+ chunks: Record<string, OptimizedDepInfo>;
923
+ /**
924
+ * Metadata for each newly discovered dependency after processing
925
+ */
926
+ discovered: Record<string, OptimizedDepInfo>;
927
+ /**
928
+ * OptimizedDepInfo list
929
+ */
930
+ depInfoList: OptimizedDepInfo[];
931
+ }
932
+ /**
933
+ * Scan and optimize dependencies within a project.
934
+ * Used by Vite CLI when running `vite optimize`.
935
+ *
936
+ * @deprecated the optimization process runs automatically and does not need to be called
937
+ */
938
+ declare function optimizeDeps(config: ResolvedConfig, force?: boolean | undefined, asCommand?: boolean): Promise<DepOptimizationMetadata>;
939
+ //#endregion
940
+ //#region src/node/server/transformRequest.d.ts
941
+ interface TransformResult {
942
+ code: string;
943
+ map: SourceMap | {
944
+ mappings: '';
945
+ } | null;
946
+ ssr?: boolean;
947
+ etag?: string;
948
+ deps?: string[];
949
+ dynamicDeps?: string[];
950
+ }
951
+ interface TransformOptions {
952
+ /**
953
+ * @deprecated inferred from environment
954
+ */
955
+ ssr?: boolean;
956
+ }
957
+ interface TransformOptionsInternal {}
958
+ //#endregion
959
+ //#region src/node/server/moduleGraph.d.ts
960
+ declare class EnvironmentModuleNode {
961
+ environment: string;
962
+ /**
963
+ * Public served url path, starts with /
964
+ */
965
+ url: string;
966
+ /**
967
+ * Resolved file system path + query
968
+ */
969
+ id: string | null;
970
+ file: string | null;
971
+ type: 'js' | 'css' | 'asset';
972
+ info?: ModuleInfo;
973
+ meta?: Record<string, any>;
974
+ importers: Set<EnvironmentModuleNode>;
975
+ importedModules: Set<EnvironmentModuleNode>;
976
+ acceptedHmrDeps: Set<EnvironmentModuleNode>;
977
+ acceptedHmrExports: Set<string> | null;
978
+ importedBindings: Map<string, Set<string>> | null;
979
+ isSelfAccepting?: boolean;
980
+ transformResult: TransformResult | null;
981
+ ssrModule: Record<string, any> | null;
982
+ ssrError: Error | null;
983
+ lastHMRTimestamp: number;
984
+ lastInvalidationTimestamp: number;
985
+ /**
986
+ * @param setIsSelfAccepting - set `false` to set `isSelfAccepting` later. e.g. #7870
987
+ */
988
+ constructor(url: string, environment: string, setIsSelfAccepting?: boolean);
989
+ }
990
+ type ResolvedUrl = [url: string, resolvedId: string, meta: object | null | undefined];
991
+ declare class EnvironmentModuleGraph {
992
+ environment: string;
993
+ urlToModuleMap: Map<string, EnvironmentModuleNode>;
994
+ idToModuleMap: Map<string, EnvironmentModuleNode>;
995
+ etagToModuleMap: Map<string, EnvironmentModuleNode>;
996
+ fileToModulesMap: Map<string, Set<EnvironmentModuleNode>>;
997
+ constructor(environment: string, resolveId: (url: string) => Promise<PartialResolvedId | null>);
998
+ getModuleByUrl(rawUrl: string): Promise<EnvironmentModuleNode | undefined>;
999
+ getModuleById(id: string): EnvironmentModuleNode | undefined;
1000
+ getModulesByFile(file: string): Set<EnvironmentModuleNode> | undefined;
1001
+ onFileChange(file: string): void;
1002
+ onFileDelete(file: string): void;
1003
+ invalidateModule(mod: EnvironmentModuleNode, seen?: Set<EnvironmentModuleNode>, timestamp?: number, isHmr?: boolean, ): void;
1004
+ invalidateAll(): void;
1005
+ /**
1006
+ * Update the module graph based on a module's updated imports information
1007
+ * If there are dependencies that no longer have any importers, they are
1008
+ * returned as a Set.
1009
+ *
1010
+ * @param staticImportedUrls Subset of `importedModules` where they're statically imported in code.
1011
+ * This is only used for soft invalidations so `undefined` is fine but may cause more runtime processing.
1012
+ */
1013
+ updateModuleInfo(mod: EnvironmentModuleNode, importedModules: Set<string | EnvironmentModuleNode>, importedBindings: Map<string, Set<string>> | null, acceptedModules: Set<string | EnvironmentModuleNode>, acceptedExports: Set<string> | null, isSelfAccepting: boolean, ): Promise<Set<EnvironmentModuleNode> | undefined>;
1014
+ ensureEntryFromUrl(rawUrl: string, setIsSelfAccepting?: boolean): Promise<EnvironmentModuleNode>;
1015
+ createFileOnlyEntry(file: string): EnvironmentModuleNode;
1016
+ resolveUrl(url: string): Promise<ResolvedUrl>;
1017
+ updateModuleTransformResult(mod: EnvironmentModuleNode, result: TransformResult | null): void;
1018
+ getModuleByEtag(etag: string): EnvironmentModuleNode | undefined;
1019
+ }
1020
+ //#endregion
1021
+ //#region src/node/server/mixedModuleGraph.d.ts
1022
+ declare class ModuleNode {
1023
+ _moduleGraph: ModuleGraph;
1024
+ _clientModule: EnvironmentModuleNode | undefined;
1025
+ _ssrModule: EnvironmentModuleNode | undefined;
1026
+ constructor(moduleGraph: ModuleGraph, clientModule?: EnvironmentModuleNode, ssrModule?: EnvironmentModuleNode);
1027
+ _get<T extends keyof EnvironmentModuleNode>(prop: T): EnvironmentModuleNode[T];
1028
+ _set<T extends keyof EnvironmentModuleNode>(prop: T, value: EnvironmentModuleNode[T]): void;
1029
+ _wrapModuleSet(prop: ModuleSetNames, module: EnvironmentModuleNode | undefined): Set<ModuleNode>;
1030
+ _getModuleSetUnion(prop: 'importedModules' | 'importers'): Set<ModuleNode>;
1031
+ _getModuleInfoUnion(prop: 'info'): ModuleInfo | undefined;
1032
+ _getModuleObjectUnion(prop: 'meta'): Record<string, any> | undefined;
1033
+ get url(): string;
1034
+ set url(value: string);
1035
+ get id(): string | null;
1036
+ set id(value: string | null);
1037
+ get file(): string | null;
1038
+ set file(value: string | null);
1039
+ get type(): 'js' | 'css' | 'asset';
1040
+ get info(): ModuleInfo | undefined;
1041
+ get meta(): Record<string, any> | undefined;
1042
+ get importers(): Set<ModuleNode>;
1043
+ get clientImportedModules(): Set<ModuleNode>;
1044
+ get ssrImportedModules(): Set<ModuleNode>;
1045
+ get importedModules(): Set<ModuleNode>;
1046
+ get acceptedHmrDeps(): Set<ModuleNode>;
1047
+ get acceptedHmrExports(): Set<string> | null;
1048
+ get importedBindings(): Map<string, Set<string>> | null;
1049
+ get isSelfAccepting(): boolean | undefined;
1050
+ get transformResult(): TransformResult | null;
1051
+ set transformResult(value: TransformResult | null);
1052
+ get ssrTransformResult(): TransformResult | null;
1053
+ set ssrTransformResult(value: TransformResult | null);
1054
+ get ssrModule(): Record<string, any> | null;
1055
+ get ssrError(): Error | null;
1056
+ get lastHMRTimestamp(): number;
1057
+ set lastHMRTimestamp(value: number);
1058
+ get lastInvalidationTimestamp(): number;
1059
+ get invalidationState(): TransformResult | 'HARD_INVALIDATED' | undefined;
1060
+ get ssrInvalidationState(): TransformResult | 'HARD_INVALIDATED' | undefined;
1061
+ }
1062
+ declare class ModuleGraph {
1063
+ urlToModuleMap: Map<string, ModuleNode>;
1064
+ idToModuleMap: Map<string, ModuleNode>;
1065
+ etagToModuleMap: Map<string, ModuleNode>;
1066
+ fileToModulesMap: Map<string, Set<ModuleNode>>;
1067
+ private moduleNodeCache;
1068
+ constructor(moduleGraphs: {
1069
+ client: () => EnvironmentModuleGraph;
1070
+ ssr: () => EnvironmentModuleGraph;
1071
+ });
1072
+ getModuleById(id: string): ModuleNode | undefined;
1073
+ getModuleByUrl(url: string, _ssr?: boolean): Promise<ModuleNode | undefined>;
1074
+ getModulesByFile(file: string): Set<ModuleNode> | undefined;
1075
+ onFileChange(file: string): void;
1076
+ onFileDelete(file: string): void;
1077
+ invalidateModule(mod: ModuleNode, seen?: Set<ModuleNode>, timestamp?: number, isHmr?: boolean, ): void;
1078
+ invalidateAll(): void;
1079
+ ensureEntryFromUrl(rawUrl: string, ssr?: boolean, setIsSelfAccepting?: boolean): Promise<ModuleNode>;
1080
+ createFileOnlyEntry(file: string): ModuleNode;
1081
+ resolveUrl(url: string, ssr?: boolean): Promise<ResolvedUrl>;
1082
+ updateModuleTransformResult(mod: ModuleNode, result: TransformResult | null, ssr?: boolean): void;
1083
+ getModuleByEtag(etag: string): ModuleNode | undefined;
1084
+ getBackwardCompatibleBrowserModuleNode(clientModule: EnvironmentModuleNode): ModuleNode;
1085
+ getBackwardCompatibleServerModuleNode(ssrModule: EnvironmentModuleNode): ModuleNode;
1086
+ getBackwardCompatibleModuleNode(mod: EnvironmentModuleNode): ModuleNode;
1087
+ getBackwardCompatibleModuleNodeDual(clientModule?: EnvironmentModuleNode, ssrModule?: EnvironmentModuleNode): ModuleNode;
1088
+ }
1089
+ type ModuleSetNames = 'acceptedHmrDeps' | 'importedModules';
1090
+ //#endregion
1091
+ //#region src/node/server/hmr.d.ts
1092
+ interface HmrOptions {
1093
+ protocol?: string;
1094
+ host?: string;
1095
+ port?: number;
1096
+ clientPort?: number;
1097
+ path?: string;
1098
+ timeout?: number;
1099
+ overlay?: boolean;
1100
+ server?: HttpServer;
1101
+ }
1102
+ interface HotUpdateOptions {
1103
+ type: 'create' | 'update' | 'delete';
1104
+ file: string;
1105
+ timestamp: number;
1106
+ modules: Array<EnvironmentModuleNode>;
1107
+ read: () => string | Promise<string>;
1108
+ server: ViteDevServer;
1109
+ }
1110
+ interface HmrContext {
1111
+ file: string;
1112
+ timestamp: number;
1113
+ modules: Array<ModuleNode>;
1114
+ read: () => string | Promise<string>;
1115
+ server: ViteDevServer;
1116
+ }
1117
+ interface HotChannelClient {
1118
+ send(payload: hmrPayload_HotPayload): void;
1119
+ }
1120
+ type HotChannelListener<T extends string = string> = (data: InferCustomEventPayload<T>, client: HotChannelClient) => void;
1121
+ interface HotChannel<Api = any> {
1122
+ /**
1123
+ * Broadcast events to all clients
1124
+ */
1125
+ send?(payload: hmrPayload_HotPayload): void;
1126
+ /**
1127
+ * Handle custom event emitted by `import.meta.hot.send`
1128
+ */
1129
+ on?<T extends string>(event: T, listener: HotChannelListener<T>): void;
1130
+ on?(event: 'connection', listener: () => void): void;
1131
+ /**
1132
+ * Unregister event listener
1133
+ */
1134
+ off?(event: string, listener: Function): void;
1135
+ /**
1136
+ * Start listening for messages
1137
+ */
1138
+ listen?(): void;
1139
+ /**
1140
+ * Disconnect all clients, called when server is closed or restarted.
1141
+ */
1142
+ close?(): Promise<unknown> | void;
1143
+ api?: Api;
1144
+ }
1145
+ interface NormalizedHotChannelClient {
1146
+ /**
1147
+ * Send event to the client
1148
+ */
1149
+ send(payload: hmrPayload_HotPayload): void;
1150
+ /**
1151
+ * Send custom event
1152
+ */
1153
+ send(event: string, payload?: hmrPayload_CustomPayload['data']): void;
1154
+ }
1155
+ interface NormalizedHotChannel<Api = any> {
1156
+ /**
1157
+ * Broadcast events to all clients
1158
+ */
1159
+ send(payload: hmrPayload_HotPayload): void;
1160
+ /**
1161
+ * Send custom event
1162
+ */
1163
+ send<T extends string>(event: T, payload?: InferCustomEventPayload<T>): void;
1164
+ /**
1165
+ * Handle custom event emitted by `import.meta.hot.send`
1166
+ */
1167
+ on<T extends string>(event: T, listener: (data: InferCustomEventPayload<T>, client: NormalizedHotChannelClient) => void): void;
1168
+ on(event: 'connection', listener: () => void): void;
1169
+ /**
1170
+ * Unregister event listener
1171
+ */
1172
+ off(event: string, listener: Function): void;
1173
+ handleInvoke(payload: hmrPayload_HotPayload): Promise<{
1174
+ result: any;
1175
+ } | {
1176
+ error: any;
1177
+ }>;
1178
+ /**
1179
+ * Start listening for messages
1180
+ */
1181
+ listen(): void;
1182
+ /**
1183
+ * Disconnect all clients, called when server is closed or restarted.
1184
+ */
1185
+ close(): Promise<unknown> | void;
1186
+ api?: Api;
1187
+ }
1188
+ type ServerHotChannelApi = {
1189
+ innerEmitter: EventEmitter;
1190
+ outsideEmitter: EventEmitter;
1191
+ };
1192
+ type ServerHotChannel = HotChannel<ServerHotChannelApi>;
1193
+ type NormalizedServerHotChannel = NormalizedHotChannel<ServerHotChannelApi>;
1194
+ declare function createServerHotChannel(): ServerHotChannel;
1195
+ //#endregion
1196
+ //#region src/types/ws.d.ts
1197
+ // WebSocket socket.
1198
+ declare class WebSocket extends EventEmitter {
1199
+ /** The connection is not yet open. */
1200
+ static readonly CONNECTING: 0;
1201
+ /** The connection is open and ready to communicate. */
1202
+ static readonly OPEN: 1;
1203
+ /** The connection is in the process of closing. */
1204
+ static readonly CLOSING: 2;
1205
+ /** The connection is closed. */
1206
+ static readonly CLOSED: 3;
1207
+ binaryType: 'nodebuffer' | 'arraybuffer' | 'fragments';
1208
+ readonly bufferedAmount: number;
1209
+ readonly extensions: string;
1210
+ /** Indicates whether the websocket is paused */
1211
+ readonly isPaused: boolean;
1212
+ readonly protocol: string;
1213
+ /** The current state of the connection */
1214
+ readonly readyState: typeof WebSocket.CONNECTING | typeof WebSocket.OPEN | typeof WebSocket.CLOSING | typeof WebSocket.CLOSED;
1215
+ readonly url: string;
1216
+
1217
+ /** The connection is not yet open. */
1218
+ readonly CONNECTING: 0;
1219
+ /** The connection is open and ready to communicate. */
1220
+ readonly OPEN: 1;
1221
+ /** The connection is in the process of closing. */
1222
+ readonly CLOSING: 2;
1223
+ /** The connection is closed. */
1224
+ readonly CLOSED: 3;
1225
+ onopen: ((event: WebSocket.Event) => void) | null;
1226
+ onerror: ((event: WebSocket.ErrorEvent) => void) | null;
1227
+ onclose: ((event: WebSocket.CloseEvent) => void) | null;
1228
+ onmessage: ((event: WebSocket.MessageEvent) => void) | null;
1229
+ constructor(address: null);
1230
+ constructor(address: string | url_URL, options?: WebSocket.ClientOptions | ClientRequestArgs);
1231
+ constructor(address: string | url_URL, protocols?: string | string[], options?: WebSocket.ClientOptions | ClientRequestArgs);
1232
+ close(code?: number, data?: string | Buffer): void;
1233
+ ping(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1234
+ pong(data?: any, mask?: boolean, cb?: (err: Error) => void): void;
1235
+ send(data: any, cb?: (err?: Error) => void): void;
1236
+ send(data: any, options: {
1237
+ mask?: boolean | undefined;
1238
+ binary?: boolean | undefined;
1239
+ compress?: boolean | undefined;
1240
+ fin?: boolean | undefined;
1241
+ }, cb?: (err?: Error) => void): void;
1242
+ terminate(): void;
1243
+
1244
+ /**
1245
+ * Pause the websocket causing it to stop emitting events. Some events can still be
1246
+ * emitted after this is called, until all buffered data is consumed. This method
1247
+ * is a noop if the ready state is `CONNECTING` or `CLOSED`.
1248
+ */
1249
+ pause(): void;
1250
+ /**
1251
+ * Make a paused socket resume emitting events. This method is a noop if the ready
1252
+ * state is `CONNECTING` or `CLOSED`.
1253
+ */
1254
+ resume(): void;
1255
+
1256
+ // HTML5 WebSocket events
1257
+ addEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void, options?: WebSocket.EventListenerOptions): void;
1258
+ addEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void, options?: WebSocket.EventListenerOptions): void;
1259
+ addEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void, options?: WebSocket.EventListenerOptions): void;
1260
+ addEventListener(method: 'open', cb: (event: WebSocket.Event) => void, options?: WebSocket.EventListenerOptions): void;
1261
+ removeEventListener(method: 'message', cb: (event: WebSocket.MessageEvent) => void): void;
1262
+ removeEventListener(method: 'close', cb: (event: WebSocket.CloseEvent) => void): void;
1263
+ removeEventListener(method: 'error', cb: (event: WebSocket.ErrorEvent) => void): void;
1264
+ removeEventListener(method: 'open', cb: (event: WebSocket.Event) => void): void;
1265
+
1266
+ // Events
1267
+ on(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1268
+ on(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1269
+ on(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1270
+ on(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1271
+ on(event: 'open', listener: (this: WebSocket) => void): this;
1272
+ on(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1273
+ on(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1274
+ on(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1275
+ once(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1276
+ once(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1277
+ once(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1278
+ once(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1279
+ once(event: 'open', listener: (this: WebSocket) => void): this;
1280
+ once(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1281
+ once(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1282
+ once(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1283
+ off(event: 'close', listener: (this: WebSocket, code: number, reason: Buffer) => void): this;
1284
+ off(event: 'error', listener: (this: WebSocket, err: Error) => void): this;
1285
+ off(event: 'upgrade', listener: (this: WebSocket, request: http.IncomingMessage) => void): this;
1286
+ off(event: 'message', listener: (this: WebSocket, data: WebSocket.RawData, isBinary: boolean) => void): this;
1287
+ off(event: 'open', listener: (this: WebSocket) => void): this;
1288
+ off(event: 'ping' | 'pong', listener: (this: WebSocket, data: Buffer) => void): this;
1289
+ off(event: 'unexpected-response', listener: (this: WebSocket, request: ClientRequest, response: http.IncomingMessage) => void): this;
1290
+ off(event: string | symbol, listener: (this: WebSocket, ...args: any[]) => void): this;
1291
+ addListener(event: 'close', listener: (code: number, reason: Buffer) => void): this;
1292
+ addListener(event: 'error', listener: (err: Error) => void): this;
1293
+ addListener(event: 'upgrade', listener: (request: http.IncomingMessage) => void): this;
1294
+ addListener(event: 'message', listener: (data: WebSocket.RawData, isBinary: boolean) => void): this;
1295
+ addListener(event: 'open', listener: () => void): this;
1296
+ addListener(event: 'ping' | 'pong', listener: (data: Buffer) => void): this;
1297
+ addListener(event: 'unexpected-response', listener: (request: ClientRequest, response: http.IncomingMessage) => void): this;
1298
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1299
+ removeListener(event: 'close', listener: (code: number, reason: Buffer) => void): this;
1300
+ removeListener(event: 'error', listener: (err: Error) => void): this;
1301
+ removeListener(event: 'upgrade', listener: (request: http.IncomingMessage) => void): this;
1302
+ removeListener(event: 'message', listener: (data: WebSocket.RawData, isBinary: boolean) => void): this;
1303
+ removeListener(event: 'open', listener: () => void): this;
1304
+ removeListener(event: 'ping' | 'pong', listener: (data: Buffer) => void): this;
1305
+ removeListener(event: 'unexpected-response', listener: (request: ClientRequest, response: http.IncomingMessage) => void): this;
1306
+ removeListener(event: string | symbol, listener: (...args: any[]) => void): this;
1307
+ }
1308
+ declare const WebSocketAlias: typeof WebSocket;
1309
+ interface WebSocketAlias extends WebSocket {}
1310
+ declare namespace WebSocket {
1311
+ /**
1312
+ * Data represents the raw message payload received over the WebSocket.
1313
+ */
1314
+ type RawData = Buffer | ArrayBuffer | Buffer[];
1315
+
1316
+ /**
1317
+ * Data represents the message payload received over the WebSocket.
1318
+ */
1319
+ type Data = string | Buffer | ArrayBuffer | Buffer[];
1320
+
1321
+ /**
1322
+ * CertMeta represents the accepted types for certificate & key data.
1323
+ */
1324
+ type CertMeta = string | string[] | Buffer | Buffer[];
1325
+
1326
+ /**
1327
+ * VerifyClientCallbackSync is a synchronous callback used to inspect the
1328
+ * incoming message. The return value (boolean) of the function determines
1329
+ * whether or not to accept the handshake.
1330
+ */
1331
+ type VerifyClientCallbackSync = (info: {
1332
+ origin: string;
1333
+ secure: boolean;
1334
+ req: http.IncomingMessage;
1335
+ }) => boolean;
1336
+
1337
+ /**
1338
+ * VerifyClientCallbackAsync is an asynchronous callback used to inspect the
1339
+ * incoming message. The return value (boolean) of the function determines
1340
+ * whether or not to accept the handshake.
1341
+ */
1342
+ type VerifyClientCallbackAsync = (info: {
1343
+ origin: string;
1344
+ secure: boolean;
1345
+ req: http.IncomingMessage;
1346
+ }, callback: (res: boolean, code?: number, message?: string, headers?: OutgoingHttpHeaders) => void) => void;
1347
+ interface ClientOptions extends SecureContextOptions {
1348
+ protocol?: string | undefined;
1349
+ followRedirects?: boolean | undefined;
1350
+ generateMask?(mask: Buffer): void;
1351
+ handshakeTimeout?: number | undefined;
1352
+ maxRedirects?: number | undefined;
1353
+ perMessageDeflate?: boolean | PerMessageDeflateOptions | undefined;
1354
+ localAddress?: string | undefined;
1355
+ protocolVersion?: number | undefined;
1356
+ headers?: {
1357
+ [key: string]: string;
1358
+ } | undefined;
1359
+ origin?: string | undefined;
1360
+ agent?: Agent | undefined;
1361
+ host?: string | undefined;
1362
+ family?: number | undefined;
1363
+ checkServerIdentity?(servername: string, cert: CertMeta): boolean;
1364
+ rejectUnauthorized?: boolean | undefined;
1365
+ maxPayload?: number | undefined;
1366
+ skipUTF8Validation?: boolean | undefined;
1367
+ }
1368
+ interface PerMessageDeflateOptions {
1369
+ serverNoContextTakeover?: boolean | undefined;
1370
+ clientNoContextTakeover?: boolean | undefined;
1371
+ serverMaxWindowBits?: number | undefined;
1372
+ clientMaxWindowBits?: number | undefined;
1373
+ zlibDeflateOptions?: {
1374
+ flush?: number | undefined;
1375
+ finishFlush?: number | undefined;
1376
+ chunkSize?: number | undefined;
1377
+ windowBits?: number | undefined;
1378
+ level?: number | undefined;
1379
+ memLevel?: number | undefined;
1380
+ strategy?: number | undefined;
1381
+ dictionary?: Buffer | Buffer[] | DataView | undefined;
1382
+ info?: boolean | undefined;
1383
+ } | undefined;
1384
+ zlibInflateOptions?: ZlibOptions | undefined;
1385
+ threshold?: number | undefined;
1386
+ concurrencyLimit?: number | undefined;
1387
+ }
1388
+ interface Event {
1389
+ type: string;
1390
+ target: WebSocket;
1391
+ }
1392
+ interface ErrorEvent {
1393
+ error: any;
1394
+ message: string;
1395
+ type: string;
1396
+ target: WebSocket;
1397
+ }
1398
+ interface CloseEvent {
1399
+ wasClean: boolean;
1400
+ code: number;
1401
+ reason: string;
1402
+ type: string;
1403
+ target: WebSocket;
1404
+ }
1405
+ interface MessageEvent {
1406
+ data: Data;
1407
+ type: string;
1408
+ target: WebSocket;
1409
+ }
1410
+ interface EventListenerOptions {
1411
+ once?: boolean | undefined;
1412
+ }
1413
+ interface ServerOptions {
1414
+ host?: string | undefined;
1415
+ port?: number | undefined;
1416
+ backlog?: number | undefined;
1417
+ server?: http.Server | HttpsServer | undefined;
1418
+ verifyClient?: VerifyClientCallbackAsync | VerifyClientCallbackSync | undefined;
1419
+ handleProtocols?: (protocols: Set<string>, request: http.IncomingMessage) => string | false;
1420
+ path?: string | undefined;
1421
+ noServer?: boolean | undefined;
1422
+ clientTracking?: boolean | undefined;
1423
+ perMessageDeflate?: boolean | PerMessageDeflateOptions | undefined;
1424
+ maxPayload?: number | undefined;
1425
+ skipUTF8Validation?: boolean | undefined;
1426
+ WebSocket?: typeof WebSocket.WebSocket | undefined;
1427
+ }
1428
+ interface AddressInfo {
1429
+ address: string;
1430
+ family: string;
1431
+ port: number;
1432
+ }
1433
+
1434
+ // WebSocket Server
1435
+ class Server<T extends WebSocket = WebSocket> extends EventEmitter {
1436
+ options: ServerOptions;
1437
+ path: string;
1438
+ clients: Set<T>;
1439
+ constructor(options?: ServerOptions, callback?: () => void);
1440
+ address(): AddressInfo | string;
1441
+ close(cb?: (err?: Error) => void): void;
1442
+ handleUpgrade(request: http.IncomingMessage, socket: Duplex, upgradeHead: Buffer, callback: (client: T, request: http.IncomingMessage) => void): void;
1443
+ shouldHandle(request: http.IncomingMessage): boolean | Promise<boolean>;
1444
+
1445
+ // Events
1446
+ on(event: 'connection', cb: (this: Server<T>, socket: T, request: http.IncomingMessage) => void): this;
1447
+ on(event: 'error', cb: (this: Server<T>, error: Error) => void): this;
1448
+ on(event: 'headers', cb: (this: Server<T>, headers: string[], request: http.IncomingMessage) => void): this;
1449
+ on(event: 'close' | 'listening', cb: (this: Server<T>) => void): this;
1450
+ on(event: string | symbol, listener: (this: Server<T>, ...args: any[]) => void): this;
1451
+ once(event: 'connection', cb: (this: Server<T>, socket: T, request: http.IncomingMessage) => void): this;
1452
+ once(event: 'error', cb: (this: Server<T>, error: Error) => void): this;
1453
+ once(event: 'headers', cb: (this: Server<T>, headers: string[], request: http.IncomingMessage) => void): this;
1454
+ once(event: 'close' | 'listening', cb: (this: Server<T>) => void): this;
1455
+ once(event: string | symbol, listener: (this: Server<T>, ...args: any[]) => void): this;
1456
+ off(event: 'connection', cb: (this: Server<T>, socket: T, request: http.IncomingMessage) => void): this;
1457
+ off(event: 'error', cb: (this: Server<T>, error: Error) => void): this;
1458
+ off(event: 'headers', cb: (this: Server<T>, headers: string[], request: http.IncomingMessage) => void): this;
1459
+ off(event: 'close' | 'listening', cb: (this: Server<T>) => void): this;
1460
+ off(event: string | symbol, listener: (this: Server<T>, ...args: any[]) => void): this;
1461
+ addListener(event: 'connection', cb: (client: T, request: http.IncomingMessage) => void): this;
1462
+ addListener(event: 'error', cb: (err: Error) => void): this;
1463
+ addListener(event: 'headers', cb: (headers: string[], request: http.IncomingMessage) => void): this;
1464
+ addListener(event: 'close' | 'listening', cb: () => void): this;
1465
+ addListener(event: string | symbol, listener: (...args: any[]) => void): this;
1466
+ removeListener(event: 'connection', cb: (client: T) => void): this;
1467
+ removeListener(event: 'error', cb: (err: Error) => void): this;
1468
+ removeListener(event: 'headers', cb: (headers: string[], request: http.IncomingMessage) => void): this;
1469
+ removeListener(event: 'close' | 'listening', cb: () => void): this;
1470
+ removeListener(event: string | symbol, listener: (...args: any[]) => void): this;
1471
+ }
1472
+ const WebSocketServer: typeof Server;
1473
+ interface WebSocketServer extends Server {}
1474
+ const WebSocket: typeof WebSocketAlias;
1475
+ interface WebSocket extends WebSocketAlias {}
1476
+
1477
+ // WebSocket stream
1478
+ function createWebSocketStream(websocket: WebSocket, options?: DuplexOptions): Duplex;
1479
+ }
1480
+
1481
+ // export = WebSocket
1482
+ //#endregion
1483
+ //#region src/node/server/ws.d.ts
1484
+ type WebSocketCustomListener<T> = (data: T, client: WebSocketClient, invoke?: 'send' | `send:${string}`) => void;
1485
+ declare const isWebSocketServer: unique symbol;
1486
+ interface WebSocketServer extends NormalizedHotChannel {
1487
+ /**
1488
+ * Handle custom event emitted by `import.meta.hot.send`
1489
+ */
1490
+ on: WebSocket.Server['on'] & {
1491
+ <T extends string>(event: T, listener: WebSocketCustomListener<hmrPayload_InferCustomEventPayload<T>>): void;
1492
+ };
1493
+ /**
1494
+ * Unregister event listener.
1495
+ */
1496
+ off: WebSocket.Server['off'] & {
1497
+ (event: string, listener: Function): void;
1498
+ };
1499
+ /**
1500
+ * Listen on port and host
1501
+ */
1502
+ listen(): void;
1503
+ /**
1504
+ * Disconnect all clients and terminate the server.
1505
+ */
1506
+ close(): Promise<void>;
1507
+ [isWebSocketServer]: true;
1508
+ /**
1509
+ * Get all connected clients.
1510
+ */
1511
+ clients: Set<WebSocketClient>;
1512
+ }
1513
+ interface WebSocketClient extends NormalizedHotChannelClient {
1514
+ /**
1515
+ * The raw WebSocket instance
1516
+ * @advanced
1517
+ */
1518
+ socket: WebSocket;
1519
+ }
1520
+ //#endregion
1521
+ //#region src/node/server/environment.d.ts
1522
+ interface DevEnvironmentContext {
1523
+ hot: boolean;
1524
+ transport?: HotChannel | WebSocketServer;
1525
+ options?: EnvironmentOptions;
1526
+ remoteRunner?: {
1527
+ inlineSourceMap?: boolean;
1528
+ };
1529
+ depsOptimizer?: DepsOptimizer;
1530
+ }
1531
+ declare class DevEnvironment extends BaseEnvironment {
1532
+ mode: "dev";
1533
+ moduleGraph: EnvironmentModuleGraph;
1534
+ depsOptimizer?: DepsOptimizer;
1535
+ get pluginContainer(): EnvironmentPluginContainer<DevEnvironment>;
1536
+ /**
1537
+ * Hot channel for this environment. If not provided or disabled,
1538
+ * it will be a noop channel that does nothing.
1539
+ *
1540
+ * @example
1541
+ * environment.hot.send({ type: 'full-reload' })
1542
+ */
1543
+ hot: NormalizedHotChannel;
1544
+ constructor(name: string, config: ResolvedConfig, context: DevEnvironmentContext);
1545
+ init(options?: {
1546
+ watcher?: FSWatcher;
1547
+ /**
1548
+ * the previous instance used for the environment with the same name
1549
+ *
1550
+ * when using, the consumer should check if it's an instance generated from the same class or factory function
1551
+ */
1552
+ previousInstance?: DevEnvironment;
1553
+ }): Promise<void>;
1554
+ /**
1555
+ * When the dev server is restarted, the methods are called in the following order:
1556
+ * - new instance `init`
1557
+ * - previous instance `close`
1558
+ * - new instance `listen`
1559
+ */
1560
+ listen(server: ViteDevServer): Promise<void>;
1561
+ fetchModule(id: string, importer?: string, options?: FetchFunctionOptions): Promise<moduleRunner_FetchResult>;
1562
+ reloadModule(module: EnvironmentModuleNode): Promise<void>;
1563
+ transformRequest(url: string, ): Promise<TransformResult | null>;
1564
+ warmupRequest(url: string): Promise<void>;
1565
+ close(): Promise<void>;
1566
+ /**
1567
+ * Calling `await environment.waitForRequestsIdle(id)` will wait until all static imports
1568
+ * are processed after the first transformRequest call. If called from a load or transform
1569
+ * plugin hook, the id needs to be passed as a parameter to avoid deadlocks.
1570
+ * Calling this function after the first static imports section of the module graph has been
1571
+ * processed will resolve immediately.
1572
+ * @experimental
1573
+ */
1574
+ waitForRequestsIdle(ignoredId?: string): Promise<void>;
1575
+ }
1576
+ //#endregion
1577
+ //#region src/types/commonjs.d.ts
1578
+
1579
+ interface RollupCommonJSOptions {
1580
+ /**
1581
+ * A minimatch pattern, or array of patterns, which specifies the files in
1582
+ * the build the plugin should operate on. By default, all files with
1583
+ * extension `".cjs"` or those in `extensions` are included, but you can
1584
+ * narrow this list by only including specific files. These files will be
1585
+ * analyzed and transpiled if either the analysis does not find ES module
1586
+ * specific statements or `transformMixedEsModules` is `true`.
1587
+ * @default undefined
1588
+ */
1589
+ include?: string | RegExp | readonly (string | RegExp)[];
1590
+ /**
1591
+ * A minimatch pattern, or array of patterns, which specifies the files in
1592
+ * the build the plugin should _ignore_. By default, all files with
1593
+ * extensions other than those in `extensions` or `".cjs"` are ignored, but you
1594
+ * can exclude additional files. See also the `include` option.
1595
+ * @default undefined
1596
+ */
1597
+ exclude?: string | RegExp | readonly (string | RegExp)[];
1598
+ /**
1599
+ * For extensionless imports, search for extensions other than .js in the
1600
+ * order specified. Note that you need to make sure that non-JavaScript files
1601
+ * are transpiled by another plugin first.
1602
+ * @default [ '.js' ]
1603
+ */
1604
+ extensions?: ReadonlyArray<string>;
1605
+ /**
1606
+ * If true then uses of `global` won't be dealt with by this plugin
1607
+ * @default false
1608
+ */
1609
+ ignoreGlobal?: boolean;
1610
+ /**
1611
+ * If false, skips source map generation for CommonJS modules. This will
1612
+ * improve performance.
1613
+ * @default true
1614
+ */
1615
+ sourceMap?: boolean;
1616
+ /**
1617
+ * Some `require` calls cannot be resolved statically to be translated to
1618
+ * imports.
1619
+ * When this option is set to `false`, the generated code will either
1620
+ * directly throw an error when such a call is encountered or, when
1621
+ * `dynamicRequireTargets` is used, when such a call cannot be resolved with a
1622
+ * configured dynamic require target.
1623
+ * Setting this option to `true` will instead leave the `require` call in the
1624
+ * code or use it as a fallback for `dynamicRequireTargets`.
1625
+ * @default false
1626
+ */
1627
+ ignoreDynamicRequires?: boolean;
1628
+ /**
1629
+ * Instructs the plugin whether to enable mixed module transformations. This
1630
+ * is useful in scenarios with modules that contain a mix of ES `import`
1631
+ * statements and CommonJS `require` expressions. Set to `true` if `require`
1632
+ * calls should be transformed to imports in mixed modules, or `false` if the
1633
+ * `require` expressions should survive the transformation. The latter can be
1634
+ * important if the code contains environment detection, or you are coding
1635
+ * for an environment with special treatment for `require` calls such as
1636
+ * ElectronJS. See also the `ignore` option.
1637
+ * @default false
1638
+ */
1639
+ transformMixedEsModules?: boolean;
1640
+ /**
1641
+ * By default, this plugin will try to hoist `require` statements as imports
1642
+ * to the top of each file. While this works well for many code bases and
1643
+ * allows for very efficient ESM output, it does not perfectly capture
1644
+ * CommonJS semantics as the order of side effects like log statements may
1645
+ * change. But it is especially problematic when there are circular `require`
1646
+ * calls between CommonJS modules as those often rely on the lazy execution of
1647
+ * nested `require` calls.
1648
+ *
1649
+ * Setting this option to `true` will wrap all CommonJS files in functions
1650
+ * which are executed when they are required for the first time, preserving
1651
+ * NodeJS semantics. Note that this can have an impact on the size and
1652
+ * performance of the generated code.
1653
+ *
1654
+ * The default value of `"auto"` will only wrap CommonJS files when they are
1655
+ * part of a CommonJS dependency cycle, e.g. an index file that is required by
1656
+ * many of its dependencies. All other CommonJS files are hoisted. This is the
1657
+ * recommended setting for most code bases.
1658
+ *
1659
+ * `false` will entirely prevent wrapping and hoist all files. This may still
1660
+ * work depending on the nature of cyclic dependencies but will often cause
1661
+ * problems.
1662
+ *
1663
+ * You can also provide a minimatch pattern, or array of patterns, to only
1664
+ * specify a subset of files which should be wrapped in functions for proper
1665
+ * `require` semantics.
1666
+ *
1667
+ * `"debug"` works like `"auto"` but after bundling, it will display a warning
1668
+ * containing a list of ids that have been wrapped which can be used as
1669
+ * minimatch pattern for fine-tuning.
1670
+ * @default "auto"
1671
+ */
1672
+ strictRequires?: boolean | string | RegExp | readonly (string | RegExp)[];
1673
+ /**
1674
+ * Sometimes you have to leave require statements unconverted. Pass an array
1675
+ * containing the IDs or a `id => boolean` function.
1676
+ * @default []
1677
+ */
1678
+ ignore?: ReadonlyArray<string> | ((id: string) => boolean);
1679
+ /**
1680
+ * In most cases, where `require` calls are inside a `try-catch` clause,
1681
+ * they should be left unconverted as it requires an optional dependency
1682
+ * that may or may not be installed beside the rolled up package.
1683
+ * Due to the conversion of `require` to a static `import` - the call is
1684
+ * hoisted to the top of the file, outside the `try-catch` clause.
1685
+ *
1686
+ * - `true`: Default. All `require` calls inside a `try` will be left unconverted.
1687
+ * - `false`: All `require` calls inside a `try` will be converted as if the
1688
+ * `try-catch` clause is not there.
1689
+ * - `remove`: Remove all `require` calls from inside any `try` block.
1690
+ * - `string[]`: Pass an array containing the IDs to left unconverted.
1691
+ * - `((id: string) => boolean|'remove')`: Pass a function that controls
1692
+ * individual IDs.
1693
+ *
1694
+ * @default true
1695
+ */
1696
+ ignoreTryCatch?: boolean | 'remove' | ReadonlyArray<string> | ((id: string) => boolean | 'remove');
1697
+ /**
1698
+ * Controls how to render imports from external dependencies. By default,
1699
+ * this plugin assumes that all external dependencies are CommonJS. This
1700
+ * means they are rendered as default imports to be compatible with e.g.
1701
+ * NodeJS where ES modules can only import a default export from a CommonJS
1702
+ * dependency.
1703
+ *
1704
+ * If you set `esmExternals` to `true`, this plugin assumes that all
1705
+ * external dependencies are ES modules and respect the
1706
+ * `requireReturnsDefault` option. If that option is not set, they will be
1707
+ * rendered as namespace imports.
1708
+ *
1709
+ * You can also supply an array of ids to be treated as ES modules, or a
1710
+ * function that will be passed each external id to determine whether it is
1711
+ * an ES module.
1712
+ * @default false
1713
+ */
1714
+ esmExternals?: boolean | ReadonlyArray<string> | ((id: string) => boolean);
1715
+ /**
1716
+ * Controls what is returned when requiring an ES module from a CommonJS file.
1717
+ * When using the `esmExternals` option, this will also apply to external
1718
+ * modules. By default, this plugin will render those imports as namespace
1719
+ * imports i.e.
1720
+ *
1721
+ * ```js
1722
+ * // input
1723
+ * const foo = require('foo');
1724
+ *
1725
+ * // output
1726
+ * import * as foo from 'foo';
1727
+ * ```
1728
+ *
1729
+ * However, there are some situations where this may not be desired.
1730
+ * For these situations, you can change Rollup's behaviour either globally or
1731
+ * per module. To change it globally, set the `requireReturnsDefault` option
1732
+ * to one of the following values:
1733
+ *
1734
+ * - `false`: This is the default, requiring an ES module returns its
1735
+ * namespace. This is the only option that will also add a marker
1736
+ * `__esModule: true` to the namespace to support interop patterns in
1737
+ * CommonJS modules that are transpiled ES modules.
1738
+ * - `"namespace"`: Like `false`, requiring an ES module returns its
1739
+ * namespace, but the plugin does not add the `__esModule` marker and thus
1740
+ * creates more efficient code. For external dependencies when using
1741
+ * `esmExternals: true`, no additional interop code is generated.
1742
+ * - `"auto"`: This is complementary to how `output.exports: "auto"` works in
1743
+ * Rollup: If a module has a default export and no named exports, requiring
1744
+ * that module returns the default export. In all other cases, the namespace
1745
+ * is returned. For external dependencies when using `esmExternals: true`, a
1746
+ * corresponding interop helper is added.
1747
+ * - `"preferred"`: If a module has a default export, requiring that module
1748
+ * always returns the default export, no matter whether additional named
1749
+ * exports exist. This is similar to how previous versions of this plugin
1750
+ * worked. Again for external dependencies when using `esmExternals: true`,
1751
+ * an interop helper is added.
1752
+ * - `true`: This will always try to return the default export on require
1753
+ * without checking if it actually exists. This can throw at build time if
1754
+ * there is no default export. This is how external dependencies are handled
1755
+ * when `esmExternals` is not used. The advantage over the other options is
1756
+ * that, like `false`, this does not add an interop helper for external
1757
+ * dependencies, keeping the code lean.
1758
+ *
1759
+ * To change this for individual modules, you can supply a function for
1760
+ * `requireReturnsDefault` instead. This function will then be called once for
1761
+ * each required ES module or external dependency with the corresponding id
1762
+ * and allows you to return different values for different modules.
1763
+ * @default false
1764
+ */
1765
+ requireReturnsDefault?: boolean | 'auto' | 'preferred' | 'namespace' | ((id: string) => boolean | 'auto' | 'preferred' | 'namespace');
1766
+
1767
+ /**
1768
+ * @default "auto"
1769
+ */
1770
+ defaultIsModuleExports?: boolean | 'auto' | ((id: string) => boolean | 'auto');
1771
+ /**
1772
+ * Some modules contain dynamic `require` calls, or require modules that
1773
+ * contain circular dependencies, which are not handled well by static
1774
+ * imports. Including those modules as `dynamicRequireTargets` will simulate a
1775
+ * CommonJS (NodeJS-like) environment for them with support for dynamic
1776
+ * dependencies. It also enables `strictRequires` for those modules.
1777
+ *
1778
+ * Note: In extreme cases, this feature may result in some paths being
1779
+ * rendered as absolute in the final bundle. The plugin tries to avoid
1780
+ * exposing paths from the local machine, but if you are `dynamicRequirePaths`
1781
+ * with paths that are far away from your project's folder, that may require
1782
+ * replacing strings like `"/Users/John/Desktop/foo-project/"` -\> `"/"`.
1783
+ */
1784
+ dynamicRequireTargets?: string | ReadonlyArray<string>;
1785
+ /**
1786
+ * To avoid long paths when using the `dynamicRequireTargets` option, you can use this option to specify a directory
1787
+ * that is a common parent for all files that use dynamic require statements. Using a directory higher up such as `/`
1788
+ * may lead to unnecessarily long paths in the generated code and may expose directory names on your machine like your
1789
+ * home directory name. By default, it uses the current working directory.
1790
+ */
1791
+ dynamicRequireRoot?: string;
1792
+ }
1793
+ //#endregion
1794
+ //#region src/types/dynamicImportVars.d.ts
1795
+ interface RollupDynamicImportVarsOptions {
1796
+ /**
1797
+ * Files to include in this plugin (default all).
1798
+ * @default []
1799
+ */
1800
+ include?: string | RegExp | (string | RegExp)[];
1801
+ /**
1802
+ * Files to exclude in this plugin (default none).
1803
+ * @default []
1804
+ */
1805
+ exclude?: string | RegExp | (string | RegExp)[];
1806
+ /**
1807
+ * By default, the plugin quits the build process when it encounters an error. If you set this option to true, it will throw a warning instead and leave the code untouched.
1808
+ * @default false
1809
+ */
1810
+ warnOnError?: boolean;
1811
+ }
1812
+ //#endregion
1813
+ //#region src/node/plugins/terser.d.ts
1814
+ interface TerserOptions extends TerserMinifyOptions {
1815
+ /**
1816
+ * Vite-specific option to specify the max number of workers to spawn
1817
+ * when minifying files with terser.
1818
+ *
1819
+ * @default number of CPUs minus 1
1820
+ */
1821
+ maxWorkers?: number;
1822
+ }
1823
+ //#endregion
1824
+ //#region src/node/plugins/resolve.d.ts
1825
+ interface EnvironmentResolveOptions {
1826
+ /**
1827
+ * @default ['browser', 'module', 'jsnext:main', 'jsnext']
1828
+ */
1829
+ mainFields?: string[];
1830
+ conditions?: string[];
1831
+ externalConditions?: string[];
1832
+ /**
1833
+ * @default ['.mjs', '.js', '.mts', '.ts', '.jsx', '.tsx', '.json']
1834
+ */
1835
+ extensions?: string[];
1836
+ dedupe?: string[];
1837
+ /**
1838
+ * Prevent listed dependencies from being externalized and will get bundled in build.
1839
+ * Only works in server environments for now. Previously this was `ssr.noExternal`.
1840
+ * @experimental
1841
+ */
1842
+ noExternal?: string | RegExp | (string | RegExp)[] | true;
1843
+ /**
1844
+ * Externalize the given dependencies and their transitive dependencies.
1845
+ * Only works in server environments for now. Previously this was `ssr.external`.
1846
+ * @experimental
1847
+ */
1848
+ external?: string[] | true;
1849
+ /**
1850
+ * Array of strings or regular expressions that indicate what modules are builtin for the environment.
1851
+ */
1852
+ builtins?: (string | RegExp)[];
1853
+ }
1854
+ interface ResolveOptions extends EnvironmentResolveOptions {
1855
+ /**
1856
+ * @default false
1857
+ */
1858
+ preserveSymlinks?: boolean;
1859
+ }
1860
+ interface ResolvePluginOptions {
1861
+ root: string;
1862
+ isBuild: boolean;
1863
+ isProduction: boolean;
1864
+ packageCache?: PackageCache;
1865
+ /**
1866
+ * src code mode also attempts the following:
1867
+ * - resolving /xxx as URLs
1868
+ * - resolving bare imports from optimized deps
1869
+ */
1870
+ asSrc?: boolean;
1871
+ tryIndex?: boolean;
1872
+ tryPrefix?: string;
1873
+ preferRelative?: boolean;
1874
+ isRequire?: boolean;
1875
+ scan?: boolean;
1876
+ }
1877
+ interface InternalResolveOptions extends Required<ResolveOptions>, ResolvePluginOptions {}
1878
+ //#endregion
1879
+ //#region src/node/packages.d.ts
1880
+ /** Cache for package.json resolution and package.json contents */
1881
+ type PackageCache = Map<string, PackageData>;
1882
+ interface PackageData {
1883
+ dir: string;
1884
+ hasSideEffects: (id: string) => boolean | 'no-treeshake' | null;
1885
+ setResolvedCache: (key: string, entry: string, options: InternalResolveOptions) => void;
1886
+ getResolvedCache: (key: string, options: InternalResolveOptions) => string | undefined;
1887
+ data: {
1888
+ [field: string]: any;
1889
+ name: string;
1890
+ type: string;
1891
+ version: string;
1892
+ main: string;
1893
+ module: string;
1894
+ browser: string | Record<string, string | false>;
1895
+ exports: string | Record<string, any> | string[];
1896
+ imports: Record<string, any>;
1897
+ dependencies: Record<string, string>;
1898
+ };
1899
+ }
1900
+ //#endregion
1901
+ //#region src/node/build.d.ts
1902
+ interface BuildEnvironmentOptions {
1903
+ /**
1904
+ * Compatibility transform target. The transform is performed with esbuild
1905
+ * and the lowest supported target is es2015. Note this only handles
1906
+ * syntax transformation and does not cover polyfills
1907
+ *
1908
+ * Default: 'baseline-widely-available' - transpile targeting browsers that
1909
+ * are included in the Baseline Widely Available on 2025-05-01.
1910
+ * (Chrome 107+, Edge 107+, Firefox 104+, Safari 16+).
1911
+ *
1912
+ * Another special value is 'esnext' - which only performs minimal transpiling
1913
+ * (for minification compat).
1914
+ *
1915
+ * For custom targets, see https://esbuild.github.io/api/#target and
1916
+ * https://esbuild.github.io/content-types/#javascript for more details.
1917
+ * @default 'baseline-widely-available'
1918
+ */
1919
+ target?: 'baseline-widely-available' | esbuild_TransformOptions['target'] | false;
1920
+ /**
1921
+ * whether to inject module preload polyfill.
1922
+ * Note: does not apply to library mode.
1923
+ * @default true
1924
+ * @deprecated use `modulePreload.polyfill` instead
1925
+ */
1926
+ polyfillModulePreload?: boolean;
1927
+ /**
1928
+ * Configure module preload
1929
+ * Note: does not apply to library mode.
1930
+ * @default true
1931
+ */
1932
+ modulePreload?: boolean | ModulePreloadOptions;
1933
+ /**
1934
+ * Directory relative from `root` where build output will be placed. If the
1935
+ * directory exists, it will be removed before the build.
1936
+ * @default 'dist'
1937
+ */
1938
+ outDir?: string;
1939
+ /**
1940
+ * Directory relative from `outDir` where the built js/css/image assets will
1941
+ * be placed.
1942
+ * @default 'assets'
1943
+ */
1944
+ assetsDir?: string;
1945
+ /**
1946
+ * Static asset files smaller than this number (in bytes) will be inlined as
1947
+ * base64 strings. If a callback is passed, a boolean can be returned to opt-in
1948
+ * or opt-out of inlining. If nothing is returned the default logic applies.
1949
+ *
1950
+ * Default limit is `4096` (4 KiB). Set to `0` to disable.
1951
+ * @default 4096
1952
+ */
1953
+ assetsInlineLimit?: number | ((filePath: string, content: Buffer) => boolean | undefined);
1954
+ /**
1955
+ * Whether to code-split CSS. When enabled, CSS in async chunks will be
1956
+ * inlined as strings in the chunk and inserted via dynamically created
1957
+ * style tags when the chunk is loaded.
1958
+ * @default true
1959
+ */
1960
+ cssCodeSplit?: boolean;
1961
+ /**
1962
+ * An optional separate target for CSS minification.
1963
+ * As esbuild only supports configuring targets to mainstream
1964
+ * browsers, users may need this option when they are targeting
1965
+ * a niche browser that comes with most modern JavaScript features
1966
+ * but has poor CSS support, e.g. Android WeChat WebView, which
1967
+ * doesn't support the #RGBA syntax.
1968
+ * @default target
1969
+ */
1970
+ cssTarget?: esbuild_TransformOptions['target'] | false;
1971
+ /**
1972
+ * Override CSS minification specifically instead of defaulting to `build.minify`,
1973
+ * so you can configure minification for JS and CSS separately.
1974
+ * @default 'esbuild'
1975
+ */
1976
+ cssMinify?: boolean | 'esbuild' | 'lightningcss';
1977
+ /**
1978
+ * If `true`, a separate sourcemap file will be created. If 'inline', the
1979
+ * sourcemap will be appended to the resulting output file as data URI.
1980
+ * 'hidden' works like `true` except that the corresponding sourcemap
1981
+ * comments in the bundled files are suppressed.
1982
+ * @default false
1983
+ */
1984
+ sourcemap?: boolean | 'inline' | 'hidden';
1985
+ /**
1986
+ * Set to `false` to disable minification, or specify the minifier to use.
1987
+ * Available options are 'terser' or 'esbuild'.
1988
+ * @default 'esbuild'
1989
+ */
1990
+ minify?: boolean | 'terser' | 'esbuild';
1991
+ /**
1992
+ * Options for terser
1993
+ * https://terser.org/docs/api-reference#minify-options
1994
+ *
1995
+ * In addition, you can also pass a `maxWorkers: number` option to specify the
1996
+ * max number of workers to spawn. Defaults to the number of CPUs minus 1.
1997
+ */
1998
+ terserOptions?: TerserOptions;
1999
+ /**
2000
+ * Will be merged with internal rollup options.
2001
+ * https://rollupjs.org/configuration-options/
2002
+ */
2003
+ rollupOptions?: RollupOptions;
2004
+ /**
2005
+ * Options to pass on to `@rollup/plugin-commonjs`
2006
+ */
2007
+ commonjsOptions?: RollupCommonJSOptions;
2008
+ /**
2009
+ * Options to pass on to `@rollup/plugin-dynamic-import-vars`
2010
+ */
2011
+ dynamicImportVarsOptions?: RollupDynamicImportVarsOptions;
2012
+ /**
2013
+ * Whether to write bundle to disk
2014
+ * @default true
2015
+ */
2016
+ write?: boolean;
2017
+ /**
2018
+ * Empty outDir on write.
2019
+ * @default true when outDir is a sub directory of project root
2020
+ */
2021
+ emptyOutDir?: boolean | null;
2022
+ /**
2023
+ * Copy the public directory to outDir on write.
2024
+ * @default true
2025
+ */
2026
+ copyPublicDir?: boolean;
2027
+ /**
2028
+ * Whether to emit a .vite/manifest.json in the output dir to map hash-less filenames
2029
+ * to their hashed versions. Useful when you want to generate your own HTML
2030
+ * instead of using the one generated by Vite.
2031
+ *
2032
+ * Example:
2033
+ *
2034
+ * ```json
2035
+ * {
2036
+ * "main.js": {
2037
+ * "file": "main.68fe3fad.js",
2038
+ * "css": "main.e6b63442.css",
2039
+ * "imports": [...],
2040
+ * "dynamicImports": [...]
2041
+ * }
2042
+ * }
2043
+ * ```
2044
+ * @default false
2045
+ */
2046
+ manifest?: boolean | string;
2047
+ /**
2048
+ * Build in library mode. The value should be the global name of the lib in
2049
+ * UMD mode. This will produce esm + cjs + umd bundle formats with default
2050
+ * configurations that are suitable for distributing libraries.
2051
+ * @default false
2052
+ */
2053
+ lib?: LibraryOptions | false;
2054
+ /**
2055
+ * Produce SSR oriented build. Note this requires specifying SSR entry via
2056
+ * `rollupOptions.input`.
2057
+ * @default false
2058
+ */
2059
+ ssr?: boolean | string;
2060
+ /**
2061
+ * Generate SSR manifest for determining style links and asset preload
2062
+ * directives in production.
2063
+ * @default false
2064
+ */
2065
+ ssrManifest?: boolean | string;
2066
+ /**
2067
+ * Emit assets during SSR.
2068
+ * @default false
2069
+ */
2070
+ ssrEmitAssets?: boolean;
2071
+ /**
2072
+ * Emit assets during build. Frameworks can set environments.ssr.build.emitAssets
2073
+ * By default, it is true for the client and false for other environments.
2074
+ */
2075
+ emitAssets?: boolean;
2076
+ /**
2077
+ * Set to false to disable reporting compressed chunk sizes.
2078
+ * Can slightly improve build speed.
2079
+ * @default true
2080
+ */
2081
+ reportCompressedSize?: boolean;
2082
+ /**
2083
+ * Adjust chunk size warning limit (in kB).
2084
+ * @default 500
2085
+ */
2086
+ chunkSizeWarningLimit?: number;
2087
+ /**
2088
+ * Rollup watch options
2089
+ * https://rollupjs.org/configuration-options/#watch
2090
+ * @default null
2091
+ */
2092
+ watch?: WatcherOptions | null;
2093
+ /**
2094
+ * create the Build Environment instance
2095
+ */
2096
+ createEnvironment?: (name: string, config: ResolvedConfig) => Promise<BuildEnvironment> | BuildEnvironment;
2097
+ }
2098
+ type BuildOptions = BuildEnvironmentOptions;
2099
+ interface LibraryOptions {
2100
+ /**
2101
+ * Path of library entry
2102
+ */
2103
+ entry: InputOption;
2104
+ /**
2105
+ * The name of the exposed global variable. Required when the `formats` option includes
2106
+ * `umd` or `iife`
2107
+ */
2108
+ name?: string;
2109
+ /**
2110
+ * Output bundle formats
2111
+ * @default ['es', 'umd']
2112
+ */
2113
+ formats?: LibraryFormats[];
2114
+ /**
2115
+ * The name of the package file output. The default file name is the name option
2116
+ * of the project package.json. It can also be defined as a function taking the
2117
+ * format as an argument.
2118
+ */
2119
+ fileName?: string | ((format: ModuleFormat, entryName: string) => string);
2120
+ /**
2121
+ * The name of the CSS file output if the library imports CSS. Defaults to the
2122
+ * same value as `build.lib.fileName` if it's set a string, otherwise it falls
2123
+ * back to the name option of the project package.json.
2124
+ */
2125
+ cssFileName?: string;
2126
+ }
2127
+ type LibraryFormats = 'es' | 'cjs' | 'umd' | 'iife' | 'system';
2128
+ interface ModulePreloadOptions {
2129
+ /**
2130
+ * Whether to inject a module preload polyfill.
2131
+ * Note: does not apply to library mode.
2132
+ * @default true
2133
+ */
2134
+ polyfill?: boolean;
2135
+ /**
2136
+ * Resolve the list of dependencies to preload for a given dynamic import
2137
+ * @experimental
2138
+ */
2139
+ resolveDependencies?: ResolveModulePreloadDependenciesFn;
2140
+ }
2141
+ interface ResolvedModulePreloadOptions {
2142
+ polyfill: boolean;
2143
+ resolveDependencies?: ResolveModulePreloadDependenciesFn;
2144
+ }
2145
+ type ResolveModulePreloadDependenciesFn = (filename: string, deps: string[], context: {
2146
+ hostId: string;
2147
+ hostType: 'html' | 'js';
2148
+ }) => string[];
2149
+ interface ResolvedBuildEnvironmentOptions extends Required<Omit<BuildEnvironmentOptions, 'polyfillModulePreload'>> {
2150
+ modulePreload: false | ResolvedModulePreloadOptions;
2151
+ }
2152
+ interface ResolvedBuildOptions extends Required<Omit<BuildOptions, 'polyfillModulePreload'>> {
2153
+ modulePreload: false | ResolvedModulePreloadOptions;
2154
+ }
2155
+ /**
2156
+ * Bundles a single environment for production.
2157
+ * Returns a Promise containing the build result.
2158
+ */
2159
+ declare function build(inlineConfig?: InlineConfig): Promise<RollupOutput | RollupOutput[] | RollupWatcher>;
2160
+ type RenderBuiltAssetUrl = (filename: string, type: {
2161
+ type: 'asset' | 'public';
2162
+ hostId: string;
2163
+ hostType: 'js' | 'css' | 'html';
2164
+ ssr: boolean;
2165
+ }) => string | {
2166
+ relative?: boolean;
2167
+ runtime?: string;
2168
+ } | undefined;
2169
+ declare class BuildEnvironment extends BaseEnvironment {
2170
+ mode: "build";
2171
+ isBuilt: boolean;
2172
+ constructor(name: string, config: ResolvedConfig, setup?: {
2173
+ options?: EnvironmentOptions;
2174
+ });
2175
+ init(): Promise<void>;
2176
+ }
2177
+ interface ViteBuilder {
2178
+ environments: Record<string, BuildEnvironment>;
2179
+ config: ResolvedConfig;
2180
+ buildApp(): Promise<void>;
2181
+ build(environment: BuildEnvironment): Promise<RollupOutput | RollupOutput[] | RollupWatcher>;
2182
+ }
2183
+ interface BuilderOptions {
2184
+ /**
2185
+ * Whether to share the config instance among environments to align with the behavior of dev server.
2186
+ *
2187
+ * @default false
2188
+ * @experimental
2189
+ */
2190
+ sharedConfigBuild?: boolean;
2191
+ /**
2192
+ * Whether to share the plugin instances among environments to align with the behavior of dev server.
2193
+ *
2194
+ * @default false
2195
+ * @experimental
2196
+ */
2197
+ sharedPlugins?: boolean;
2198
+ buildApp?: (builder: ViteBuilder) => Promise<void>;
2199
+ }
2200
+ type ResolvedBuilderOptions = Required<BuilderOptions>;
2201
+ /**
2202
+ * Creates a ViteBuilder to orchestrate building multiple environments.
2203
+ * @experimental
2204
+ */
2205
+ declare function createBuilder(inlineConfig?: InlineConfig, useLegacyBuilder?: null | boolean): Promise<ViteBuilder>;
2206
+ type BuildAppHook = (this: MinimalPluginContextWithoutEnvironment, builder: ViteBuilder) => Promise<void>;
2207
+ //#endregion
2208
+ //#region src/node/environment.d.ts
2209
+ type Environment = DevEnvironment | BuildEnvironment | UnknownEnvironment;
2210
+ /**
2211
+ * Creates a function that hides the complexities of a WeakMap with an initial value
2212
+ * to implement object metadata. Used by plugins to implement cross hooks per
2213
+ * environment metadata
2214
+ *
2215
+ * @experimental
2216
+ */
2217
+ declare function perEnvironmentState<State>(initial: (environment: Environment) => State): (context: PluginContext) => State;
2218
+ //#endregion
2219
+ //#region src/node/server/pluginContainer.d.ts
2220
+ type SkipInformation = {
2221
+ id: string;
2222
+ importer: string | undefined;
2223
+ plugin: Plugin$1;
2224
+ called?: boolean;
2225
+ };
2226
+ declare class EnvironmentPluginContainer<Env extends Environment = Environment> {
2227
+ environment: Env;
2228
+ plugins: readonly Plugin$1[];
2229
+ watcher?: FSWatcher | undefined;
2230
+ private _pluginContextMap;
2231
+ private _resolvedRollupOptions?;
2232
+ private _processesing;
2233
+ private _seenResolves;
2234
+ private _moduleNodeToLoadAddedImports;
2235
+ getSortedPluginHooks: PluginHookUtils['getSortedPluginHooks'];
2236
+ getSortedPlugins: PluginHookUtils['getSortedPlugins'];
2237
+ moduleGraph: EnvironmentModuleGraph | undefined;
2238
+ watchFiles: Set<string>;
2239
+ minimalContext: MinimalPluginContext$1<Env>;
2240
+ private _started;
2241
+ private _buildStartPromise;
2242
+ private _closed;
2243
+ private _updateModuleLoadAddedImports;
2244
+ private _getAddedImports;
2245
+ getModuleInfo(id: string): ModuleInfo | null;
2246
+ private handleHookPromise;
2247
+ get options(): InputOptions;
2248
+ resolveRollupOptions(): Promise<InputOptions>;
2249
+ private _getPluginContext;
2250
+ private hookParallel;
2251
+ buildStart(_options?: InputOptions): Promise<void>;
2252
+ resolveId(rawId: string, importer?: string | undefined, options?: {
2253
+ attributes?: Record<string, string>;
2254
+ custom?: CustomPluginOptions;
2255
+ /** @deprecated use `skipCalls` instead */
2256
+ skip?: Set<Plugin$1>;
2257
+ skipCalls?: readonly SkipInformation[];
2258
+ isEntry?: boolean;
2259
+ }): Promise<PartialResolvedId | null>;
2260
+ load(id: string): Promise<LoadResult | null>;
2261
+ transform(code: string, id: string, options?: {
2262
+ inMap?: SourceDescription['map'];
2263
+ }): Promise<{
2264
+ code: string;
2265
+ map: SourceMap | {
2266
+ mappings: '';
2267
+ } | null;
2268
+ }>;
2269
+ watchChange(id: string, change: {
2270
+ event: 'create' | 'update' | 'delete';
2271
+ }): Promise<void>;
2272
+ close(): Promise<void>;
2273
+ }
2274
+ declare class BasicMinimalPluginContext<Meta = PluginContextMeta> {
2275
+ meta: Meta;
2276
+ private _logger;
2277
+ constructor(meta: Meta, _logger: Logger);
2278
+ debug(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2279
+ info(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2280
+ warn(rawLog: string | RollupLog | (() => string | RollupLog)): void;
2281
+ error(e: string | RollupError): never;
2282
+ private _normalizeRawLog;
2283
+ }
2284
+ declare class MinimalPluginContext$1<T extends Environment = Environment> extends BasicMinimalPluginContext implements MinimalPluginContext {
2285
+ environment: T;
2286
+ constructor(meta: PluginContextMeta, environment: T);
2287
+ }
2288
+ declare class PluginContainer {
2289
+ private environments;
2290
+ constructor(environments: Record<string, Environment>);
2291
+ private _getEnvironment;
2292
+ private _getPluginContainer;
2293
+ getModuleInfo(id: string): ModuleInfo | null;
2294
+ get options(): InputOptions;
2295
+ buildStart(_options?: InputOptions): Promise<void>;
2296
+ watchChange(id: string, change: {
2297
+ event: 'create' | 'update' | 'delete';
2298
+ }): Promise<void>;
2299
+ resolveId(rawId: string, importer?: string, options?: {
2300
+ attributes?: Record<string, string>;
2301
+ custom?: CustomPluginOptions;
2302
+ /** @deprecated use `skipCalls` instead */
2303
+ skip?: Set<Plugin$1>;
2304
+ skipCalls?: readonly SkipInformation[];
2305
+ ssr?: boolean;
2306
+ isEntry?: boolean;
2307
+ }): Promise<PartialResolvedId | null>;
2308
+ load(id: string, options?: {
2309
+ ssr?: boolean;
2310
+ }): Promise<LoadResult | null>;
2311
+ transform(code: string, id: string, options?: {
2312
+ ssr?: boolean;
2313
+ environment?: Environment;
2314
+ inMap?: SourceDescription['map'];
2315
+ }): Promise<{
2316
+ code: string;
2317
+ map: SourceMap | {
2318
+ mappings: '';
2319
+ } | null;
2320
+ }>;
2321
+ close(): Promise<void>;
2322
+ }
2323
+ /**
2324
+ * server.pluginContainer compatibility
2325
+ *
2326
+ * The default environment is in buildStart, buildEnd, watchChange, and closeBundle hooks,
2327
+ * which are called once for all environments, or when no environment is passed in other hooks.
2328
+ * The ssrEnvironment is needed for backward compatibility when the ssr flag is passed without
2329
+ * an environment. The defaultEnvironment in the main pluginContainer in the server should be
2330
+ * the client environment for backward compatibility.
2331
+ **/
2332
+ //#endregion
2333
+ //#region src/node/server/index.d.ts
2334
+ interface ServerOptions$1 extends CommonServerOptions {
2335
+ /**
2336
+ * Configure HMR-specific options (port, host, path & protocol)
2337
+ */
2338
+ hmr?: HmrOptions | boolean;
2339
+ /**
2340
+ * Do not start the websocket connection.
2341
+ * @experimental
2342
+ */
2343
+ ws?: false;
2344
+ /**
2345
+ * Warm-up files to transform and cache the results in advance. This improves the
2346
+ * initial page load during server starts and prevents transform waterfalls.
2347
+ */
2348
+ warmup?: {
2349
+ /**
2350
+ * The files to be transformed and used on the client-side. Supports glob patterns.
2351
+ */
2352
+ clientFiles?: string[];
2353
+ /**
2354
+ * The files to be transformed and used in SSR. Supports glob patterns.
2355
+ */
2356
+ ssrFiles?: string[];
2357
+ };
2358
+ /**
2359
+ * chokidar watch options or null to disable FS watching
2360
+ * https://github.com/paulmillr/chokidar/tree/3.6.0#api
2361
+ */
2362
+ watch?: WatchOptions | null;
2363
+ /**
2364
+ * Create Vite dev server to be used as a middleware in an existing server
2365
+ * @default false
2366
+ */
2367
+ middlewareMode?: boolean | {
2368
+ /**
2369
+ * Parent server instance to attach to
2370
+ *
2371
+ * This is needed to proxy WebSocket connections to the parent server.
2372
+ */
2373
+ server: HttpServer;
2374
+ };
2375
+ /**
2376
+ * Options for files served via '/\@fs/'.
2377
+ */
2378
+ fs?: FileSystemServeOptions;
2379
+ /**
2380
+ * Origin for the generated asset URLs.
2381
+ *
2382
+ * @example `http://127.0.0.1:8080`
2383
+ */
2384
+ origin?: string;
2385
+ /**
2386
+ * Pre-transform known direct imports
2387
+ * @default true
2388
+ */
2389
+ preTransformRequests?: boolean;
2390
+ /**
2391
+ * Whether or not to ignore-list source files in the dev server sourcemap, used to populate
2392
+ * the [`x_google_ignoreList` source map extension](https://developer.chrome.com/blog/devtools-better-angular-debugging/#the-x_google_ignorelist-source-map-extension).
2393
+ *
2394
+ * By default, it excludes all paths containing `node_modules`. You can pass `false` to
2395
+ * disable this behavior, or, for full control, a function that takes the source path and
2396
+ * sourcemap path and returns whether to ignore the source path.
2397
+ */
2398
+ sourcemapIgnoreList?: false | ((sourcePath: string, sourcemapPath: string) => boolean);
2399
+ /**
2400
+ * Backward compatibility. The buildStart and buildEnd hooks were called only once for all
2401
+ * environments. This option enables per-environment buildStart and buildEnd hooks.
2402
+ * @default false
2403
+ * @experimental
2404
+ */
2405
+ perEnvironmentStartEndDuringDev?: boolean;
2406
+ /**
2407
+ * Run HMR tasks, by default the HMR propagation is done in parallel for all environments
2408
+ * @experimental
2409
+ */
2410
+ hotUpdateEnvironments?: (server: ViteDevServer, hmr: (environment: DevEnvironment) => Promise<void>) => Promise<void>;
2411
+ }
2412
+ interface ResolvedServerOptions extends Omit<RequiredExceptFor<ServerOptions$1, 'host' | 'https' | 'proxy' | 'hmr' | 'ws' | 'watch' | 'origin' | 'hotUpdateEnvironments'>, 'fs' | 'middlewareMode' | 'sourcemapIgnoreList'> {
2413
+ fs: Required<FileSystemServeOptions>;
2414
+ middlewareMode: NonNullable<ServerOptions$1['middlewareMode']>;
2415
+ sourcemapIgnoreList: Exclude<ServerOptions$1['sourcemapIgnoreList'], false | undefined>;
2416
+ }
2417
+ interface FileSystemServeOptions {
2418
+ /**
2419
+ * Strictly restrict file accessing outside of allowing paths.
2420
+ *
2421
+ * Set to `false` to disable the warning
2422
+ *
2423
+ * @default true
2424
+ */
2425
+ strict?: boolean;
2426
+ /**
2427
+ * Restrict accessing files outside the allowed directories.
2428
+ *
2429
+ * Accepts absolute path or a path relative to project root.
2430
+ * Will try to search up for workspace root by default.
2431
+ */
2432
+ allow?: string[];
2433
+ /**
2434
+ * Restrict accessing files that matches the patterns.
2435
+ *
2436
+ * This will have higher priority than `allow`.
2437
+ * picomatch patterns are supported.
2438
+ *
2439
+ * @default ['.env', '.env.*', '*.{crt,pem}', '**\/.git/**']
2440
+ */
2441
+ deny?: string[];
2442
+ }
2443
+ type ServerHook = (this: MinimalPluginContextWithoutEnvironment, server: ViteDevServer) => (() => void) | void | Promise<(() => void) | void>;
2444
+ type HttpServer = http.Server | Http2SecureServer;
2445
+ interface ViteDevServer {
2446
+ /**
2447
+ * The resolved vite config object
2448
+ */
2449
+ config: ResolvedConfig;
2450
+ /**
2451
+ * A connect app instance.
2452
+ * - Can be used to attach custom middlewares to the dev server.
2453
+ * - Can also be used as the handler function of a custom http server
2454
+ * or as a middleware in any connect-style Node.js frameworks
2455
+ *
2456
+ * https://github.com/senchalabs/connect#use-middleware
2457
+ */
2458
+ middlewares: Connect.Server;
2459
+ /**
2460
+ * native Node http server instance
2461
+ * will be null in middleware mode
2462
+ */
2463
+ httpServer: HttpServer | null;
2464
+ /**
2465
+ * Chokidar watcher instance. If `config.server.watch` is set to `null`,
2466
+ * it will not watch any files and calling `add` or `unwatch` will have no effect.
2467
+ * https://github.com/paulmillr/chokidar/tree/3.6.0#api
2468
+ */
2469
+ watcher: FSWatcher;
2470
+ /**
2471
+ * web socket server with `send(payload)` method
2472
+ */
2473
+ ws: WebSocketServer;
2474
+ /**
2475
+ * An alias to `server.environments.client.hot`.
2476
+ * If you want to interact with all environments, loop over `server.environments`.
2477
+ */
2478
+ hot: NormalizedHotChannel;
2479
+ /**
2480
+ * Rollup plugin container that can run plugin hooks on a given file
2481
+ */
2482
+ pluginContainer: PluginContainer;
2483
+ /**
2484
+ * Module execution environments attached to the Vite server.
2485
+ */
2486
+ environments: Record<'client' | 'ssr' | (string & {}), DevEnvironment>;
2487
+ /**
2488
+ * Module graph that tracks the import relationships, url to file mapping
2489
+ * and hmr state.
2490
+ */
2491
+ moduleGraph: ModuleGraph;
2492
+ /**
2493
+ * The resolved urls Vite prints on the CLI (URL-encoded). Returns `null`
2494
+ * in middleware mode or if the server is not listening on any port.
2495
+ */
2496
+ resolvedUrls: ResolvedServerUrls | null;
2497
+ /**
2498
+ * Programmatically resolve, load and transform a URL and get the result
2499
+ * without going through the http request pipeline.
2500
+ */
2501
+ transformRequest(url: string, options?: TransformOptions): Promise<TransformResult | null>;
2502
+ /**
2503
+ * Same as `transformRequest` but only warm up the URLs so the next request
2504
+ * will already be cached. The function will never throw as it handles and
2505
+ * reports errors internally.
2506
+ */
2507
+ warmupRequest(url: string, options?: TransformOptions): Promise<void>;
2508
+ /**
2509
+ * Apply vite built-in HTML transforms and any plugin HTML transforms.
2510
+ */
2511
+ transformIndexHtml(url: string, html: string, originalUrl?: string): Promise<string>;
2512
+ /**
2513
+ * Transform module code into SSR format.
2514
+ */
2515
+ ssrTransform(code: string, inMap: SourceMap | {
2516
+ mappings: '';
2517
+ } | null, url: string, originalCode?: string): Promise<TransformResult | null>;
2518
+ /**
2519
+ * Load a given URL as an instantiated module for SSR.
2520
+ */
2521
+ ssrLoadModule(url: string, opts?: {
2522
+ fixStacktrace?: boolean;
2523
+ }): Promise<Record<string, any>>;
2524
+ /**
2525
+ * Returns a fixed version of the given stack
2526
+ */
2527
+ ssrRewriteStacktrace(stack: string): string;
2528
+ /**
2529
+ * Mutates the given SSR error by rewriting the stacktrace
2530
+ */
2531
+ ssrFixStacktrace(e: Error): void;
2532
+ /**
2533
+ * Triggers HMR for a module in the module graph. You can use the `server.moduleGraph`
2534
+ * API to retrieve the module to be reloaded. If `hmr` is false, this is a no-op.
2535
+ */
2536
+ reloadModule(module: ModuleNode): Promise<void>;
2537
+ /**
2538
+ * Start the server.
2539
+ */
2540
+ listen(port?: number, isRestart?: boolean): Promise<ViteDevServer>;
2541
+ /**
2542
+ * Stop the server.
2543
+ */
2544
+ close(): Promise<void>;
2545
+ /**
2546
+ * Print server urls
2547
+ */
2548
+ printUrls(): void;
2549
+ /**
2550
+ * Bind CLI shortcuts
2551
+ */
2552
+ bindCLIShortcuts(options?: BindCLIShortcutsOptions<ViteDevServer>): void;
2553
+ /**
2554
+ * Restart the server.
2555
+ *
2556
+ * @param forceOptimize - force the optimizer to re-bundle, same as --force cli flag
2557
+ */
2558
+ restart(forceOptimize?: boolean): Promise<void>;
2559
+ /**
2560
+ * Open browser
2561
+ */
2562
+ openBrowser(): void;
2563
+ /**
2564
+ * Calling `await server.waitForRequestsIdle(id)` will wait until all static imports
2565
+ * are processed. If called from a load or transform plugin hook, the id needs to be
2566
+ * passed as a parameter to avoid deadlocks. Calling this function after the first
2567
+ * static imports section of the module graph has been processed will resolve immediately.
2568
+ */
2569
+ waitForRequestsIdle: (ignoredId?: string) => Promise<void>;
2570
+ }
2571
+ interface ResolvedServerUrls {
2572
+ local: string[];
2573
+ network: string[];
2574
+ }
2575
+ declare function createServer(inlineConfig?: InlineConfig | ResolvedConfig): Promise<ViteDevServer>;
2576
+ //#endregion
2577
+ //#region src/node/plugins/html.d.ts
2578
+ interface HtmlTagDescriptor {
2579
+ tag: string;
2580
+ attrs?: Record<string, string | boolean | undefined>;
2581
+ children?: string | HtmlTagDescriptor[];
2582
+ /**
2583
+ * default: 'head-prepend'
2584
+ */
2585
+ injectTo?: 'head' | 'body' | 'head-prepend' | 'body-prepend';
2586
+ }
2587
+ type IndexHtmlTransformResult = string | HtmlTagDescriptor[] | {
2588
+ html: string;
2589
+ tags: HtmlTagDescriptor[];
2590
+ };
2591
+ interface IndexHtmlTransformContext {
2592
+ /**
2593
+ * public path when served
2594
+ */
2595
+ path: string;
2596
+ /**
2597
+ * filename on disk
2598
+ */
2599
+ filename: string;
2600
+ server?: ViteDevServer;
2601
+ bundle?: OutputBundle;
2602
+ chunk?: OutputChunk;
2603
+ originalUrl?: string;
2604
+ }
2605
+ type IndexHtmlTransformHook = (this: MinimalPluginContextWithoutEnvironment, html: string, ctx: IndexHtmlTransformContext) => IndexHtmlTransformResult | void | Promise<IndexHtmlTransformResult | void>;
2606
+ type IndexHtmlTransform = IndexHtmlTransformHook | {
2607
+ order?: 'pre' | 'post' | null;
2608
+ handler: IndexHtmlTransformHook;
2609
+ };
2610
+ //#endregion
2611
+ //#region src/node/plugins/pluginFilter.d.ts
2612
+ type StringFilter<Value = string | RegExp> = Value | Array<Value> | {
2613
+ include?: Value | Array<Value>;
2614
+ exclude?: Value | Array<Value>;
2615
+ };
2616
+ //#endregion
2617
+ //#region src/node/plugin.d.ts
2618
+ /**
2619
+ * Vite plugins extends the Rollup plugin interface with a few extra
2620
+ * vite-specific options. A valid vite plugin is also a valid Rollup plugin.
2621
+ * On the contrary, a Rollup plugin may or may NOT be a valid vite universal
2622
+ * plugin, since some Rollup features do not make sense in an unbundled
2623
+ * dev server context. That said, as long as a rollup plugin doesn't have strong
2624
+ * coupling between its bundle phase and output phase hooks then it should
2625
+ * just work (that means, most of them).
2626
+ *
2627
+ * By default, the plugins are run during both serve and build. When a plugin
2628
+ * is applied during serve, it will only run **non output plugin hooks** (see
2629
+ * rollup type definition of {@link rollup#PluginHooks}). You can think of the
2630
+ * dev server as only running `const bundle = rollup.rollup()` but never calling
2631
+ * `bundle.generate()`.
2632
+ *
2633
+ * A plugin that expects to have different behavior depending on serve/build can
2634
+ * export a factory function that receives the command being run via options.
2635
+ *
2636
+ * If a plugin should be applied only for server or build, a function format
2637
+ * config file can be used to conditional determine the plugins to use.
2638
+ *
2639
+ * The current environment can be accessed from the context for the all non-global
2640
+ * hooks (it is not available in config, configResolved, configureServer, etc).
2641
+ * It can be a dev, build, or scan environment.
2642
+ * Plugins can use this.environment.mode === 'dev' to guard for dev specific APIs.
2643
+ */
2644
+ interface PluginContextExtension {
2645
+ /**
2646
+ * Vite-specific environment instance
2647
+ */
2648
+ environment: Environment;
2649
+ }
2650
+ interface PluginContextMetaExtension {
2651
+ viteVersion: string;
2652
+ }
2653
+ interface ConfigPluginContext extends Omit<MinimalPluginContext, 'meta' | 'environment'> {
2654
+ meta: Omit<PluginContextMeta, 'watchMode'>;
2655
+ }
2656
+ interface MinimalPluginContextWithoutEnvironment extends Omit<MinimalPluginContext, 'environment'> {}
2657
+ declare module 'rollup' {
2658
+ interface MinimalPluginContext extends PluginContextExtension {}
2659
+ interface PluginContextMeta extends PluginContextMetaExtension {}
2660
+ }
2661
+ /**
2662
+ * There are two types of plugins in Vite. App plugins and environment plugins.
2663
+ * Environment Plugins are defined by a constructor function that will be called
2664
+ * once per each environment allowing users to have completely different plugins
2665
+ * for each of them. The constructor gets the resolved environment after the server
2666
+ * and builder has already been created simplifying config access and cache
2667
+ * management for for environment specific plugins.
2668
+ * Environment Plugins are closer to regular rollup plugins. They can't define
2669
+ * app level hooks (like config, configResolved, configureServer, etc).
2670
+ */
2671
+ interface Plugin$1<A = any> extends Rollup.Plugin<A> {
2672
+ /**
2673
+ * Perform custom handling of HMR updates.
2674
+ * The handler receives an options containing changed filename, timestamp, a
2675
+ * list of modules affected by the file change, and the dev server instance.
2676
+ *
2677
+ * - The hook can return a filtered list of modules to narrow down the update.
2678
+ * e.g. for a Vue SFC, we can narrow down the part to update by comparing
2679
+ * the descriptors.
2680
+ *
2681
+ * - The hook can also return an empty array and then perform custom updates
2682
+ * by sending a custom hmr payload via environment.hot.send().
2683
+ *
2684
+ * - If the hook doesn't return a value, the hmr update will be performed as
2685
+ * normal.
2686
+ */
2687
+ hotUpdate?: ObjectHook<(this: MinimalPluginContext & {
2688
+ environment: DevEnvironment;
2689
+ }, options: HotUpdateOptions) => Array<EnvironmentModuleNode> | void | Promise<Array<EnvironmentModuleNode> | void>>;
2690
+ /**
2691
+ * extend hooks with ssr flag
2692
+ */
2693
+ resolveId?: ObjectHook<(this: PluginContext, source: string, importer: string | undefined, options: {
2694
+ attributes: Record<string, string>;
2695
+ custom?: CustomPluginOptions;
2696
+ ssr?: boolean;
2697
+ isEntry: boolean;
2698
+ }) => Promise<ResolveIdResult> | ResolveIdResult, {
2699
+ filter?: {
2700
+ id?: StringFilter<RegExp>;
2701
+ };
2702
+ }>;
2703
+ load?: ObjectHook<(this: PluginContext, id: string, options?: {
2704
+ ssr?: boolean;
2705
+ }) => Promise<LoadResult> | LoadResult, {
2706
+ filter?: {
2707
+ id?: StringFilter;
2708
+ };
2709
+ }>;
2710
+ transform?: ObjectHook<(this: TransformPluginContext, code: string, id: string, options?: {
2711
+ ssr?: boolean;
2712
+ }) => Promise<Rollup.TransformResult> | Rollup.TransformResult, {
2713
+ filter?: {
2714
+ id?: StringFilter;
2715
+ code?: StringFilter;
2716
+ };
2717
+ }>;
2718
+ /**
2719
+ * Opt-in this plugin into the shared plugins pipeline.
2720
+ * For backward-compatibility, plugins are re-recreated for each environment
2721
+ * during `vite build --app`
2722
+ * We have an opt-in per plugin, and a general `builder.sharedPlugins`
2723
+ * In a future major, we'll flip the default to be shared by default
2724
+ * @experimental
2725
+ */
2726
+ sharedDuringBuild?: boolean;
2727
+ /**
2728
+ * Opt-in this plugin into per-environment buildStart and buildEnd during dev.
2729
+ * For backward-compatibility, the buildStart hook is called only once during
2730
+ * dev, for the client environment. Plugins can opt-in to be called
2731
+ * per-environment, aligning with the build hook behavior.
2732
+ * @experimental
2733
+ */
2734
+ perEnvironmentStartEndDuringDev?: boolean;
2735
+ /**
2736
+ * Enforce plugin invocation tier similar to webpack loaders. Hooks ordering
2737
+ * is still subject to the `order` property in the hook object.
2738
+ *
2739
+ * Plugin invocation order:
2740
+ * - alias resolution
2741
+ * - `enforce: 'pre'` plugins
2742
+ * - vite core plugins
2743
+ * - normal plugins
2744
+ * - vite build plugins
2745
+ * - `enforce: 'post'` plugins
2746
+ * - vite build post plugins
2747
+ */
2748
+ enforce?: 'pre' | 'post';
2749
+ /**
2750
+ * Apply the plugin only for serve or build, or on certain conditions.
2751
+ */
2752
+ apply?: 'serve' | 'build' | ((this: void, config: UserConfig, env: ConfigEnv) => boolean);
2753
+ /**
2754
+ * Define environments where this plugin should be active
2755
+ * By default, the plugin is active in all environments
2756
+ * @experimental
2757
+ */
2758
+ applyToEnvironment?: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption;
2759
+ /**
2760
+ * Modify vite config before it's resolved. The hook can either mutate the
2761
+ * passed-in config directly, or return a partial config object that will be
2762
+ * deeply merged into existing config.
2763
+ *
2764
+ * Note: User plugins are resolved before running this hook so injecting other
2765
+ * plugins inside the `config` hook will have no effect.
2766
+ */
2767
+ config?: ObjectHook<(this: ConfigPluginContext, config: UserConfig, env: ConfigEnv) => Omit<UserConfig, 'plugins'> | null | void | Promise<Omit<UserConfig, 'plugins'> | null | void>>;
2768
+ /**
2769
+ * Modify environment configs before it's resolved. The hook can either mutate the
2770
+ * passed-in environment config directly, or return a partial config object that will be
2771
+ * deeply merged into existing config.
2772
+ * This hook is called for each environment with a partially resolved environment config
2773
+ * that already accounts for the default environment config values set at the root level.
2774
+ * If plugins need to modify the config of a given environment, they should do it in this
2775
+ * hook instead of the config hook. Leaving the config hook only for modifying the root
2776
+ * default environment config.
2777
+ */
2778
+ configEnvironment?: ObjectHook<(this: ConfigPluginContext, name: string, config: EnvironmentOptions, env: ConfigEnv & {
2779
+ /**
2780
+ * Whether this environment is SSR environment and `ssr.target` is set to `'webworker'`.
2781
+ * Only intended to be used for backward compatibility.
2782
+ */
2783
+ isSsrTargetWebworker?: boolean;
2784
+ }) => EnvironmentOptions | null | void | Promise<EnvironmentOptions | null | void>>;
2785
+ /**
2786
+ * Use this hook to read and store the final resolved vite config.
2787
+ */
2788
+ configResolved?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, config: ResolvedConfig) => void | Promise<void>>;
2789
+ /**
2790
+ * Configure the vite server. The hook receives the {@link ViteDevServer}
2791
+ * instance. This can also be used to store a reference to the server
2792
+ * for use in other hooks.
2793
+ *
2794
+ * The hooks will be called before internal middlewares are applied. A hook
2795
+ * can return a post hook that will be called after internal middlewares
2796
+ * are applied. Hook can be async functions and will be called in series.
2797
+ */
2798
+ configureServer?: ObjectHook<ServerHook>;
2799
+ /**
2800
+ * Configure the preview server. The hook receives the {@link PreviewServer}
2801
+ * instance. This can also be used to store a reference to the server
2802
+ * for use in other hooks.
2803
+ *
2804
+ * The hooks are called before other middlewares are applied. A hook can
2805
+ * return a post hook that will be called after other middlewares are
2806
+ * applied. Hooks can be async functions and will be called in series.
2807
+ */
2808
+ configurePreviewServer?: ObjectHook<PreviewServerHook>;
2809
+ /**
2810
+ * Transform index.html.
2811
+ * The hook receives the following arguments:
2812
+ *
2813
+ * - html: string
2814
+ * - ctx: IndexHtmlTransformContext, which contains:
2815
+ * - path: public path when served
2816
+ * - filename: filename on disk
2817
+ * - server?: ViteDevServer (only present during serve)
2818
+ * - bundle?: rollup.OutputBundle (only present during build)
2819
+ * - chunk?: rollup.OutputChunk
2820
+ * - originalUrl?: string
2821
+ *
2822
+ * It can either return a transformed string, or a list of html tag
2823
+ * descriptors that will be injected into the `<head>` or `<body>`.
2824
+ *
2825
+ * By default the transform is applied **after** vite's internal html
2826
+ * transform. If you need to apply the transform before vite, use an object:
2827
+ * `{ order: 'pre', handler: hook }`
2828
+ */
2829
+ transformIndexHtml?: IndexHtmlTransform;
2830
+ /**
2831
+ * Build Environments
2832
+ *
2833
+ * @experimental
2834
+ */
2835
+ buildApp?: ObjectHook<BuildAppHook>;
2836
+ /**
2837
+ * Perform custom handling of HMR updates.
2838
+ * The handler receives a context containing changed filename, timestamp, a
2839
+ * list of modules affected by the file change, and the dev server instance.
2840
+ *
2841
+ * - The hook can return a filtered list of modules to narrow down the update.
2842
+ * e.g. for a Vue SFC, we can narrow down the part to update by comparing
2843
+ * the descriptors.
2844
+ *
2845
+ * - The hook can also return an empty array and then perform custom updates
2846
+ * by sending a custom hmr payload via server.ws.send().
2847
+ *
2848
+ * - If the hook doesn't return a value, the hmr update will be performed as
2849
+ * normal.
2850
+ */
2851
+ handleHotUpdate?: ObjectHook<(this: MinimalPluginContextWithoutEnvironment, ctx: HmrContext) => Array<ModuleNode> | void | Promise<Array<ModuleNode> | void>>;
2852
+ }
2853
+ type HookHandler<T> = T extends ObjectHook<infer H> ? H : T;
2854
+ type PluginWithRequiredHook<K extends keyof Plugin$1> = Plugin$1 & { [P in K]: NonNullable<Plugin$1[P]> };
2855
+ type Thenable<T> = T | Promise<T>;
2856
+ type FalsyPlugin = false | null | undefined;
2857
+ type PluginOption = Thenable<Plugin$1 | FalsyPlugin | PluginOption[]>;
2858
+ /**
2859
+ * @experimental
2860
+ */
2861
+ declare function perEnvironmentPlugin(name: string, applyToEnvironment: (environment: PartialEnvironment) => boolean | Promise<boolean> | PluginOption): Plugin$1;
2862
+ //#endregion
2863
+ //#region src/node/plugins/css.d.ts
2864
+ interface CSSOptions {
2865
+ /**
2866
+ * Using lightningcss is an experimental option to handle CSS modules,
2867
+ * assets and imports via Lightning CSS. It requires to install it as a
2868
+ * peer dependency.
2869
+ *
2870
+ * @default 'postcss'
2871
+ * @experimental
2872
+ */
2873
+ transformer?: 'postcss' | 'lightningcss';
2874
+ /**
2875
+ * https://github.com/css-modules/postcss-modules
2876
+ */
2877
+ modules?: CSSModulesOptions | false;
2878
+ /**
2879
+ * Options for preprocessors.
2880
+ *
2881
+ * In addition to options specific to each processors, Vite supports `additionalData` option.
2882
+ * The `additionalData` option can be used to inject extra code for each style content.
2883
+ */
2884
+ preprocessorOptions?: {
2885
+ scss?: SassPreprocessorOptions;
2886
+ sass?: SassPreprocessorOptions;
2887
+ less?: LessPreprocessorOptions;
2888
+ styl?: StylusPreprocessorOptions;
2889
+ stylus?: StylusPreprocessorOptions;
2890
+ };
2891
+ /**
2892
+ * If this option is set, preprocessors will run in workers when possible.
2893
+ * `true` means the number of CPUs minus 1.
2894
+ *
2895
+ * @default true
2896
+ */
2897
+ preprocessorMaxWorkers?: number | true;
2898
+ postcss?: string | (PostCSS.ProcessOptions & {
2899
+ plugins?: PostCSS.AcceptedPlugin[];
2900
+ });
2901
+ /**
2902
+ * Enables css sourcemaps during dev
2903
+ * @default false
2904
+ * @experimental
2905
+ */
2906
+ devSourcemap?: boolean;
2907
+ /**
2908
+ * @experimental
2909
+ */
2910
+ lightningcss?: lightningcssOptions_LightningCSSOptions;
2911
+ }
2912
+ interface CSSModulesOptions {
2913
+ getJSON?: (cssFileName: string, json: Record<string, string>, outputFileName: string) => void;
2914
+ scopeBehaviour?: 'global' | 'local';
2915
+ globalModulePaths?: RegExp[];
2916
+ exportGlobals?: boolean;
2917
+ generateScopedName?: string | ((name: string, filename: string, css: string) => string);
2918
+ hashPrefix?: string;
2919
+ /**
2920
+ * default: undefined
2921
+ */
2922
+ localsConvention?: 'camelCase' | 'camelCaseOnly' | 'dashes' | 'dashesOnly' | ((originalClassName: string, generatedClassName: string, inputFile: string) => string);
2923
+ }
2924
+ type ResolvedCSSOptions = Omit<CSSOptions, 'lightningcss'> & Required<Pick<CSSOptions, 'transformer' | 'devSourcemap'>> & {
2925
+ lightningcss?: lightningcssOptions_LightningCSSOptions;
2926
+ };
2927
+ interface PreprocessCSSResult {
2928
+ code: string;
2929
+ map?: SourceMapInput;
2930
+ modules?: Record<string, string>;
2931
+ deps?: Set<string>;
2932
+ }
2933
+ /**
2934
+ * @experimental
2935
+ */
2936
+ declare function preprocessCSS(code: string, filename: string, config: ResolvedConfig): Promise<PreprocessCSSResult>;
2937
+ declare function formatPostcssSourceMap(rawMap: ExistingRawSourceMap, file: string): Promise<ExistingRawSourceMap>;
2938
+ type PreprocessorAdditionalDataResult = string | {
2939
+ content: string;
2940
+ map?: ExistingRawSourceMap;
2941
+ };
2942
+ type PreprocessorAdditionalData = string | ((source: string, filename: string) => PreprocessorAdditionalDataResult | Promise<PreprocessorAdditionalDataResult>);
2943
+ type SassPreprocessorOptions = {
2944
+ additionalData?: PreprocessorAdditionalData;
2945
+ } & SassModernPreprocessBaseOptions;
2946
+ type LessPreprocessorOptions = {
2947
+ additionalData?: PreprocessorAdditionalData;
2948
+ } & LessPreprocessorBaseOptions;
2949
+ type StylusPreprocessorOptions = {
2950
+ additionalData?: PreprocessorAdditionalData;
2951
+ } & StylusPreprocessorBaseOptions;
2952
+ //#endregion
2953
+ //#region src/node/plugins/esbuild.d.ts
2954
+ interface ESBuildOptions extends esbuild_TransformOptions {
2955
+ include?: string | RegExp | ReadonlyArray<string | RegExp>;
2956
+ exclude?: string | RegExp | ReadonlyArray<string | RegExp>;
2957
+ jsxInject?: string;
2958
+ /**
2959
+ * This option is not respected. Use `build.minify` instead.
2960
+ */
2961
+ minify?: never;
2962
+ }
2963
+ type ESBuildTransformResult = Omit<esbuild_TransformResult, 'map'> & {
2964
+ map: SourceMap;
2965
+ };
2966
+ declare function transformWithEsbuild(code: string, filename: string, options?: esbuild_TransformOptions, inMap?: object, config?: ResolvedConfig, watcher?: FSWatcher): Promise<ESBuildTransformResult>;
2967
+ //#endregion
2968
+ //#region src/node/plugins/json.d.ts
2969
+ interface JsonOptions {
2970
+ /**
2971
+ * Generate a named export for every property of the JSON object
2972
+ * @default true
2973
+ */
2974
+ namedExports?: boolean;
2975
+ /**
2976
+ * Generate performant output as JSON.parse("stringified").
2977
+ *
2978
+ * When set to 'auto', the data will be stringified only if the data is bigger than 10kB.
2979
+ * @default 'auto'
2980
+ */
2981
+ stringify?: boolean | 'auto';
2982
+ }
2983
+ //#endregion
2984
+ //#region src/node/ssr/index.d.ts
2985
+ type SSRTarget = 'node' | 'webworker';
2986
+ type SsrDepOptimizationConfig = DepOptimizationConfig;
2987
+ interface SSROptions {
2988
+ noExternal?: string | RegExp | (string | RegExp)[] | true;
2989
+ external?: string[] | true;
2990
+ /**
2991
+ * Define the target for the ssr build. The browser field in package.json
2992
+ * is ignored for node but used if webworker is the target
2993
+ * This option will be removed in a future major version
2994
+ * @default 'node'
2995
+ */
2996
+ target?: SSRTarget;
2997
+ /**
2998
+ * Control over which dependencies are optimized during SSR and esbuild options
2999
+ * During build:
3000
+ * no external CJS dependencies are optimized by default
3001
+ * During dev:
3002
+ * explicit no external CJS dependencies are optimized by default
3003
+ * @experimental
3004
+ */
3005
+ optimizeDeps?: SsrDepOptimizationConfig;
3006
+ resolve?: {
3007
+ /**
3008
+ * Conditions that are used in the plugin pipeline. The default value is the root config's `resolve.conditions`.
3009
+ *
3010
+ * Use this to override the default ssr conditions for the ssr build.
3011
+ *
3012
+ * @default rootConfig.resolve.conditions
3013
+ */
3014
+ conditions?: string[];
3015
+ /**
3016
+ * Conditions that are used during ssr import (including `ssrLoadModule`) of externalized dependencies.
3017
+ *
3018
+ * @default ['node', 'module-sync']
3019
+ */
3020
+ externalConditions?: string[];
3021
+ mainFields?: string[];
3022
+ };
3023
+ }
3024
+ interface ResolvedSSROptions extends SSROptions {
3025
+ target: SSRTarget;
3026
+ optimizeDeps: SsrDepOptimizationConfig;
3027
+ }
3028
+ //#endregion
3029
+ //#region src/node/config.d.ts
3030
+ interface ConfigEnv {
3031
+ /**
3032
+ * 'serve': during dev (`vite` command)
3033
+ * 'build': when building for production (`vite build` command)
3034
+ */
3035
+ command: 'build' | 'serve';
3036
+ mode: string;
3037
+ isSsrBuild?: boolean;
3038
+ isPreview?: boolean;
3039
+ }
3040
+ /**
3041
+ * spa: include SPA fallback middleware and configure sirv with `single: true` in preview
3042
+ *
3043
+ * mpa: only include non-SPA HTML middlewares
3044
+ *
3045
+ * custom: don't include HTML middlewares
3046
+ */
3047
+ type AppType = 'spa' | 'mpa' | 'custom';
3048
+ type UserConfigFnObject = (env: ConfigEnv) => UserConfig;
3049
+ type UserConfigFnPromise = (env: ConfigEnv) => Promise<UserConfig>;
3050
+ type UserConfigFn = (env: ConfigEnv) => UserConfig | Promise<UserConfig>;
3051
+ type UserConfigExport = UserConfig | Promise<UserConfig> | UserConfigFnObject | UserConfigFnPromise | UserConfigFn;
3052
+ /**
3053
+ * Type helper to make it easier to use vite.config.ts
3054
+ * accepts a direct {@link UserConfig} object, or a function that returns it.
3055
+ * The function receives a {@link ConfigEnv} object.
3056
+ */
3057
+ declare function defineConfig(config: UserConfig): UserConfig;
3058
+ declare function defineConfig(config: Promise<UserConfig>): Promise<UserConfig>;
3059
+ declare function defineConfig(config: UserConfigFnObject): UserConfigFnObject;
3060
+ declare function defineConfig(config: UserConfigFnPromise): UserConfigFnPromise;
3061
+ declare function defineConfig(config: UserConfigFn): UserConfigFn;
3062
+ declare function defineConfig(config: UserConfigExport): UserConfigExport;
3063
+ interface CreateDevEnvironmentContext {
3064
+ ws: WebSocketServer;
3065
+ }
3066
+ interface DevEnvironmentOptions {
3067
+ /**
3068
+ * Files to be pre-transformed. Supports glob patterns.
3069
+ */
3070
+ warmup?: string[];
3071
+ /**
3072
+ * Pre-transform known direct imports
3073
+ * defaults to true for the client environment, false for the rest
3074
+ */
3075
+ preTransformRequests?: boolean;
3076
+ /**
3077
+ * Enables sourcemaps during dev
3078
+ * @default { js: true }
3079
+ * @experimental
3080
+ */
3081
+ sourcemap?: boolean | {
3082
+ js?: boolean;
3083
+ css?: boolean;
3084
+ };
3085
+ /**
3086
+ * Whether or not to ignore-list source files in the dev server sourcemap, used to populate
3087
+ * the [`x_google_ignoreList` source map extension](https://developer.chrome.com/blog/devtools-better-angular-debugging/#the-x_google_ignorelist-source-map-extension).
3088
+ *
3089
+ * By default, it excludes all paths containing `node_modules`. You can pass `false` to
3090
+ * disable this behavior, or, for full control, a function that takes the source path and
3091
+ * sourcemap path and returns whether to ignore the source path.
3092
+ */
3093
+ sourcemapIgnoreList?: false | ((sourcePath: string, sourcemapPath: string) => boolean);
3094
+ /**
3095
+ * create the Dev Environment instance
3096
+ */
3097
+ createEnvironment?: (name: string, config: ResolvedConfig, context: CreateDevEnvironmentContext) => Promise<DevEnvironment> | DevEnvironment;
3098
+ /**
3099
+ * For environments that support a full-reload, like the client, we can short-circuit when
3100
+ * restarting the server throwing early to stop processing current files. We avoided this for
3101
+ * SSR requests. Maybe this is no longer needed.
3102
+ * @experimental
3103
+ */
3104
+ recoverable?: boolean;
3105
+ /**
3106
+ * For environments associated with a module runner.
3107
+ * By default, it is false for the client environment and true for non-client environments.
3108
+ * This option can also be used instead of the removed config.experimental.skipSsrTransform.
3109
+ */
3110
+ moduleRunnerTransform?: boolean;
3111
+ }
3112
+ type ResolvedDevEnvironmentOptions = Omit<Required<DevEnvironmentOptions>, 'sourcemapIgnoreList'> & {
3113
+ sourcemapIgnoreList: Exclude<DevEnvironmentOptions['sourcemapIgnoreList'], false | undefined>;
3114
+ };
3115
+ type AllResolveOptions = ResolveOptions & {
3116
+ alias?: AliasOptions;
3117
+ };
3118
+ interface SharedEnvironmentOptions {
3119
+ /**
3120
+ * Define global variable replacements.
3121
+ * Entries will be defined on `window` during dev and replaced during build.
3122
+ */
3123
+ define?: Record<string, any>;
3124
+ /**
3125
+ * Configure resolver
3126
+ */
3127
+ resolve?: EnvironmentResolveOptions;
3128
+ /**
3129
+ * Define if this environment is used for Server-Side Rendering
3130
+ * @default 'server' if it isn't the client environment
3131
+ */
3132
+ consumer?: 'client' | 'server';
3133
+ /**
3134
+ * If true, `process.env` referenced in code will be preserved as-is and evaluated in runtime.
3135
+ * Otherwise, it is statically replaced as an empty object.
3136
+ */
3137
+ keepProcessEnv?: boolean;
3138
+ /**
3139
+ * Optimize deps config
3140
+ */
3141
+ optimizeDeps?: DepOptimizationOptions;
3142
+ }
3143
+ interface EnvironmentOptions extends SharedEnvironmentOptions {
3144
+ /**
3145
+ * Dev specific options
3146
+ */
3147
+ dev?: DevEnvironmentOptions;
3148
+ /**
3149
+ * Build specific options
3150
+ */
3151
+ build?: BuildEnvironmentOptions;
3152
+ }
3153
+ type ResolvedResolveOptions = Required<ResolveOptions>;
3154
+ type ResolvedEnvironmentOptions = {
3155
+ define?: Record<string, any>;
3156
+ resolve: ResolvedResolveOptions;
3157
+ consumer: 'client' | 'server';
3158
+ keepProcessEnv?: boolean;
3159
+ optimizeDeps: DepOptimizationOptions;
3160
+ dev: ResolvedDevEnvironmentOptions;
3161
+ build: ResolvedBuildEnvironmentOptions;
3162
+ plugins: readonly Plugin$1[];
3163
+ };
3164
+ type DefaultEnvironmentOptions = Omit<EnvironmentOptions, 'consumer' | 'resolve' | 'keepProcessEnv'> & {
3165
+ resolve?: AllResolveOptions;
3166
+ };
3167
+ interface UserConfig extends DefaultEnvironmentOptions {
3168
+ /**
3169
+ * Project root directory. Can be an absolute path, or a path relative from
3170
+ * the location of the config file itself.
3171
+ * @default process.cwd()
3172
+ */
3173
+ root?: string;
3174
+ /**
3175
+ * Base public path when served in development or production.
3176
+ * @default '/'
3177
+ */
3178
+ base?: string;
3179
+ /**
3180
+ * Directory to serve as plain static assets. Files in this directory are
3181
+ * served and copied to build dist dir as-is without transform. The value
3182
+ * can be either an absolute file system path or a path relative to project root.
3183
+ *
3184
+ * Set to `false` or an empty string to disable copied static assets to build dist dir.
3185
+ * @default 'public'
3186
+ */
3187
+ publicDir?: string | false;
3188
+ /**
3189
+ * Directory to save cache files. Files in this directory are pre-bundled
3190
+ * deps or some other cache files that generated by vite, which can improve
3191
+ * the performance. You can use `--force` flag or manually delete the directory
3192
+ * to regenerate the cache files. The value can be either an absolute file
3193
+ * system path or a path relative to project root.
3194
+ * Default to `.vite` when no `package.json` is detected.
3195
+ * @default 'node_modules/.vite'
3196
+ */
3197
+ cacheDir?: string;
3198
+ /**
3199
+ * Explicitly set a mode to run in. This will override the default mode for
3200
+ * each command, and can be overridden by the command line --mode option.
3201
+ */
3202
+ mode?: string;
3203
+ /**
3204
+ * Array of vite plugins to use.
3205
+ */
3206
+ plugins?: PluginOption[];
3207
+ /**
3208
+ * HTML related options
3209
+ */
3210
+ html?: HTMLOptions;
3211
+ /**
3212
+ * CSS related options (preprocessors and CSS modules)
3213
+ */
3214
+ css?: CSSOptions;
3215
+ /**
3216
+ * JSON loading options
3217
+ */
3218
+ json?: JsonOptions;
3219
+ /**
3220
+ * Transform options to pass to esbuild.
3221
+ * Or set to `false` to disable esbuild.
3222
+ */
3223
+ esbuild?: ESBuildOptions | false;
3224
+ /**
3225
+ * Specify additional picomatch patterns to be treated as static assets.
3226
+ */
3227
+ assetsInclude?: string | RegExp | (string | RegExp)[];
3228
+ /**
3229
+ * Builder specific options
3230
+ * @experimental
3231
+ */
3232
+ builder?: BuilderOptions;
3233
+ /**
3234
+ * Server specific options, e.g. host, port, https...
3235
+ */
3236
+ server?: ServerOptions$1;
3237
+ /**
3238
+ * Preview specific options, e.g. host, port, https...
3239
+ */
3240
+ preview?: PreviewOptions;
3241
+ /**
3242
+ * Experimental features
3243
+ *
3244
+ * Features under this field could change in the future and might NOT follow semver.
3245
+ * Please be careful and always pin Vite's version when using them.
3246
+ * @experimental
3247
+ */
3248
+ experimental?: ExperimentalOptions;
3249
+ /**
3250
+ * Options to opt-in to future behavior
3251
+ */
3252
+ future?: FutureOptions | 'warn';
3253
+ /**
3254
+ * Legacy options
3255
+ *
3256
+ * Features under this field only follow semver for patches, they could be removed in a
3257
+ * future minor version. Please always pin Vite's version to a minor when using them.
3258
+ */
3259
+ legacy?: LegacyOptions;
3260
+ /**
3261
+ * Log level.
3262
+ * @default 'info'
3263
+ */
3264
+ logLevel?: LogLevel;
3265
+ /**
3266
+ * Custom logger.
3267
+ */
3268
+ customLogger?: Logger;
3269
+ /**
3270
+ * @default true
3271
+ */
3272
+ clearScreen?: boolean;
3273
+ /**
3274
+ * Environment files directory. Can be an absolute path, or a path relative from
3275
+ * root.
3276
+ * @default root
3277
+ */
3278
+ envDir?: string | false;
3279
+ /**
3280
+ * Env variables starts with `envPrefix` will be exposed to your client source code via import.meta.env.
3281
+ * @default 'VITE_'
3282
+ */
3283
+ envPrefix?: string | string[];
3284
+ /**
3285
+ * Worker bundle options
3286
+ */
3287
+ worker?: {
3288
+ /**
3289
+ * Output format for worker bundle
3290
+ * @default 'iife'
3291
+ */
3292
+ format?: 'es' | 'iife';
3293
+ /**
3294
+ * Vite plugins that apply to worker bundle. The plugins returned by this function
3295
+ * should be new instances every time it is called, because they are used for each
3296
+ * rollup worker bundling process.
3297
+ */
3298
+ plugins?: () => PluginOption[];
3299
+ /**
3300
+ * Rollup options to build worker bundle
3301
+ */
3302
+ rollupOptions?: Omit<RollupOptions, 'plugins' | 'input' | 'onwarn' | 'preserveEntrySignatures'>;
3303
+ };
3304
+ /**
3305
+ * Dep optimization options
3306
+ */
3307
+ optimizeDeps?: DepOptimizationOptions;
3308
+ /**
3309
+ * SSR specific options
3310
+ * We could make SSROptions be a EnvironmentOptions if we can abstract
3311
+ * external/noExternal for environments in general.
3312
+ */
3313
+ ssr?: SSROptions;
3314
+ /**
3315
+ * Environment overrides
3316
+ */
3317
+ environments?: Record<string, EnvironmentOptions>;
3318
+ /**
3319
+ * Whether your application is a Single Page Application (SPA),
3320
+ * a Multi-Page Application (MPA), or Custom Application (SSR
3321
+ * and frameworks with custom HTML handling)
3322
+ * @default 'spa'
3323
+ */
3324
+ appType?: AppType;
3325
+ }
3326
+ interface HTMLOptions {
3327
+ /**
3328
+ * A nonce value placeholder that will be used when generating script/style tags.
3329
+ *
3330
+ * Make sure that this placeholder will be replaced with a unique value for each request by the server.
3331
+ */
3332
+ cspNonce?: string;
3333
+ }
3334
+ interface FutureOptions {
3335
+ removePluginHookHandleHotUpdate?: 'warn';
3336
+ removePluginHookSsrArgument?: 'warn';
3337
+ removeServerModuleGraph?: 'warn';
3338
+ removeServerReloadModule?: 'warn';
3339
+ removeServerPluginContainer?: 'warn';
3340
+ removeServerHot?: 'warn';
3341
+ removeServerTransformRequest?: 'warn';
3342
+ removeServerWarmupRequest?: 'warn';
3343
+ removeSsrLoadModule?: 'warn';
3344
+ }
3345
+ interface ExperimentalOptions {
3346
+ /**
3347
+ * Append fake `&lang.(ext)` when queries are specified, to preserve the file extension for following plugins to process.
3348
+ *
3349
+ * @experimental
3350
+ * @default false
3351
+ */
3352
+ importGlobRestoreExtension?: boolean;
3353
+ /**
3354
+ * Allow finegrain control over assets and public files paths
3355
+ *
3356
+ * @experimental
3357
+ */
3358
+ renderBuiltUrl?: RenderBuiltAssetUrl;
3359
+ /**
3360
+ * Enables support of HMR partial accept via `import.meta.hot.acceptExports`.
3361
+ *
3362
+ * @experimental
3363
+ * @default false
3364
+ */
3365
+ hmrPartialAccept?: boolean;
3366
+ }
3367
+ interface LegacyOptions {
3368
+ /**
3369
+ * In Vite 6.0.8 and below, WebSocket server was able to connect from any web pages. However,
3370
+ * that could be exploited by a malicious web page.
3371
+ *
3372
+ * In Vite 6.0.9+, the WebSocket server now requires a token to connect from a web page.
3373
+ * But this may break some plugins and frameworks that connects to the WebSocket server
3374
+ * on their own. Enabling this option will make Vite skip the token check.
3375
+ *
3376
+ * **We do not recommend enabling this option unless you are sure that you are fine with
3377
+ * that security weakness.**
3378
+ */
3379
+ skipWebSocketTokenCheck?: boolean;
3380
+ }
3381
+ interface ResolvedWorkerOptions {
3382
+ format: 'es' | 'iife';
3383
+ plugins: (bundleChain: string[]) => Promise<ResolvedConfig>;
3384
+ rollupOptions: RollupOptions;
3385
+ }
3386
+ interface InlineConfig extends UserConfig {
3387
+ configFile?: string | false;
3388
+ /** @experimental */
3389
+ configLoader?: 'bundle' | 'runner' | 'native';
3390
+ /** @deprecated */
3391
+ envFile?: false;
3392
+ forceOptimizeDeps?: boolean;
3393
+ }
3394
+ interface ResolvedConfig extends Readonly<Omit<UserConfig, 'plugins' | 'css' | 'json' | 'assetsInclude' | 'optimizeDeps' | 'worker' | 'build' | 'dev' | 'environments' | 'experimental' | 'future' | 'server' | 'preview'> & {
3395
+ configFile: string | undefined;
3396
+ configFileDependencies: string[];
3397
+ inlineConfig: InlineConfig;
3398
+ root: string;
3399
+ base: string;
3400
+ publicDir: string;
3401
+ cacheDir: string;
3402
+ command: 'build' | 'serve';
3403
+ mode: string;
3404
+ isWorker: boolean;
3405
+ isProduction: boolean;
3406
+ envDir: string | false;
3407
+ env: Record<string, any>;
3408
+ resolve: Required<ResolveOptions> & {
3409
+ alias: Alias[];
3410
+ };
3411
+ plugins: readonly Plugin$1[];
3412
+ css: ResolvedCSSOptions;
3413
+ json: Required<JsonOptions>;
3414
+ esbuild: ESBuildOptions | false;
3415
+ server: ResolvedServerOptions;
3416
+ dev: ResolvedDevEnvironmentOptions;
3417
+ /** @experimental */
3418
+ builder: ResolvedBuilderOptions | undefined;
3419
+ build: ResolvedBuildOptions;
3420
+ preview: ResolvedPreviewOptions;
3421
+ ssr: ResolvedSSROptions;
3422
+ assetsInclude: (file: string) => boolean;
3423
+ logger: Logger;
3424
+ /**
3425
+ * Create an internal resolver to be used in special scenarios, e.g.
3426
+ * optimizer & handling css `@imports`.
3427
+ *
3428
+ * This API is deprecated. It only works for the client and ssr
3429
+ * environments. The `aliasOnly` option is also not being used anymore.
3430
+ * Plugins should move to `createIdResolver(environment.config)` instead.
3431
+ *
3432
+ * @deprecated Use `createIdResolver` from `vite` instead.
3433
+ */
3434
+ createResolver: (options?: Partial<InternalResolveOptions>) => ResolveFn;
3435
+ optimizeDeps: DepOptimizationOptions;
3436
+ worker: ResolvedWorkerOptions;
3437
+ appType: AppType;
3438
+ experimental: RequiredExceptFor<ExperimentalOptions, 'renderBuiltUrl'>;
3439
+ future: FutureOptions | undefined;
3440
+ environments: Record<string, ResolvedEnvironmentOptions>;
3441
+ /**
3442
+ * The token to connect to the WebSocket server from browsers.
3443
+ *
3444
+ * We recommend using `import.meta.hot` rather than connecting
3445
+ * to the WebSocket server directly.
3446
+ * If you have a usecase that requires connecting to the WebSocket
3447
+ * server, please create an issue so that we can discuss.
3448
+ *
3449
+ * @deprecated
3450
+ */
3451
+ webSocketToken: string;
3452
+ } & PluginHookUtils> {}
3453
+ interface PluginHookUtils {
3454
+ getSortedPlugins: <K extends keyof Plugin$1>(hookName: K) => PluginWithRequiredHook<K>[];
3455
+ getSortedPluginHooks: <K extends keyof Plugin$1>(hookName: K) => NonNullable<HookHandler<Plugin$1[K]>>[];
3456
+ }
3457
+ type ResolveFn = (id: string, importer?: string, aliasOnly?: boolean, ssr?: boolean) => Promise<string | undefined>;
3458
+ declare function resolveConfig(inlineConfig: InlineConfig, command: 'build' | 'serve', defaultMode?: string, defaultNodeEnv?: string, isPreview?: boolean, ): Promise<ResolvedConfig>;
3459
+ /**
3460
+ * Resolve base url. Note that some users use Vite to build for non-web targets like
3461
+ * electron or expects to deploy
3462
+ */
3463
+
3464
+ declare function sortUserPlugins(plugins: (Plugin$1 | Plugin$1[])[] | undefined): [Plugin$1[], Plugin$1[], Plugin$1[]];
3465
+ declare function loadConfigFromFile(configEnv: ConfigEnv, configFile?: string, configRoot?: string, logLevel?: LogLevel, customLogger?: Logger, configLoader?: 'bundle' | 'runner' | 'native'): Promise<{
3466
+ path: string;
3467
+ config: UserConfig;
3468
+ dependencies: string[];
3469
+ } | null>;
3470
+ //#endregion
3471
+ //#region src/node/idResolver.d.ts
3472
+ type ResolveIdFn = (environment: PartialEnvironment, id: string, importer?: string, aliasOnly?: boolean) => Promise<string | undefined>;
3473
+ /**
3474
+ * Some projects like Astro were overriding config.createResolver to add a custom
3475
+ * alias plugin. For the client and ssr environments, we root through it to avoid
3476
+ * breaking changes for now.
3477
+ */
3478
+
3479
+ /**
3480
+ * Create an internal resolver to be used in special scenarios, e.g.
3481
+ * optimizer and handling css @imports
3482
+ */
3483
+ declare function createIdResolver(config: ResolvedConfig, options?: Partial<InternalResolveOptions>): ResolveIdFn;
3484
+ //#endregion
3485
+ //#region src/node/server/middlewares/error.d.ts
3486
+ declare function buildErrorMessage(err: RollupError, args?: string[], includeStack?: boolean): string;
3487
+ //#endregion
3488
+ //#region src/node/ssr/runtime/serverModuleRunner.d.ts
3489
+ /**
3490
+ * @experimental
3491
+ */
3492
+ interface ServerModuleRunnerOptions extends Omit<ModuleRunnerOptions, 'root' | 'fetchModule' | 'hmr' | 'transport'> {
3493
+ /**
3494
+ * Disable HMR or configure HMR logger.
3495
+ */
3496
+ hmr?: false | {
3497
+ logger?: ModuleRunnerHmr['logger'];
3498
+ };
3499
+ /**
3500
+ * Provide a custom module evaluator. This controls how the code is executed.
3501
+ */
3502
+ evaluator?: ModuleEvaluator;
3503
+ }
3504
+ declare const createServerModuleRunnerTransport: (options: {
3505
+ channel: NormalizedServerHotChannel;
3506
+ }) => ModuleRunnerTransport;
3507
+ /**
3508
+ * Create an instance of the Vite SSR runtime that support HMR.
3509
+ * @experimental
3510
+ */
3511
+ declare function createServerModuleRunner(environment: DevEnvironment, options?: ServerModuleRunnerOptions): ModuleRunner;
3512
+ //#endregion
3513
+ //#region src/node/server/environments/runnableEnvironment.d.ts
3514
+ declare function createRunnableDevEnvironment(name: string, config: ResolvedConfig, context?: RunnableDevEnvironmentContext): RunnableDevEnvironment;
3515
+ interface RunnableDevEnvironmentContext extends Omit<DevEnvironmentContext, 'hot'> {
3516
+ runner?: (environment: RunnableDevEnvironment, options?: ServerModuleRunnerOptions) => ModuleRunner;
3517
+ runnerOptions?: ServerModuleRunnerOptions;
3518
+ hot?: boolean;
3519
+ }
3520
+ declare function isRunnableDevEnvironment(environment: Environment): environment is RunnableDevEnvironment;
3521
+ declare class RunnableDevEnvironment extends DevEnvironment {
3522
+ private _runner;
3523
+ private _runnerFactory;
3524
+ private _runnerOptions;
3525
+ constructor(name: string, config: ResolvedConfig, context: RunnableDevEnvironmentContext);
3526
+ get runner(): ModuleRunner;
3527
+ close(): Promise<void>;
3528
+ }
3529
+ //#endregion
3530
+ //#region src/node/server/environments/fetchableEnvironments.d.ts
3531
+ interface FetchableDevEnvironmentContext extends DevEnvironmentContext {
3532
+ handleRequest(request: Request): Promise<Response> | Response;
3533
+ }
3534
+ declare function createFetchableDevEnvironment(name: string, config: ResolvedConfig, context: FetchableDevEnvironmentContext): FetchableDevEnvironment;
3535
+ declare function isFetchableDevEnvironment(environment: Environment): environment is FetchableDevEnvironment;
3536
+ declare class FetchableDevEnvironment extends DevEnvironment {
3537
+ private _handleRequest;
3538
+ constructor(name: string, config: ResolvedConfig, context: FetchableDevEnvironmentContext);
3539
+ dispatchFetch(request: Request): Promise<Response>;
3540
+ }
3541
+ //#endregion
3542
+ //#region src/node/ssr/runnerImport.d.ts
3543
+ interface RunnerImportResult<T> {
3544
+ module: T;
3545
+ dependencies: string[];
3546
+ }
3547
+ /**
3548
+ * Import any file using the default Vite environment.
3549
+ * @experimental
3550
+ */
3551
+ declare function runnerImport<T>(moduleId: string, inlineConfig?: InlineConfig): Promise<RunnerImportResult<T>>;
3552
+ //#endregion
3553
+ //#region src/node/ssr/fetchModule.d.ts
3554
+ interface FetchModuleOptions {
3555
+ cached?: boolean;
3556
+ inlineSourceMap?: boolean;
3557
+ startOffset?: number;
3558
+ }
3559
+ /**
3560
+ * Fetch module information for Vite runner.
3561
+ * @experimental
3562
+ */
3563
+ declare function fetchModule(environment: DevEnvironment, url: string, importer?: string, options?: FetchModuleOptions): Promise<moduleRunner_FetchResult>;
3564
+ //#endregion
3565
+ //#region src/node/ssr/ssrTransform.d.ts
3566
+ interface ModuleRunnerTransformOptions {
3567
+ json?: {
3568
+ stringify?: boolean;
3569
+ };
3570
+ }
3571
+ declare function ssrTransform(code: string, inMap: SourceMap | {
3572
+ mappings: '';
3573
+ } | null, url: string, originalCode: string, options?: ModuleRunnerTransformOptions): Promise<TransformResult | null>;
3574
+ //#endregion
3575
+ //#region src/node/constants.d.ts
3576
+ declare const VERSION: string;
3577
+ declare const DEFAULT_CLIENT_MAIN_FIELDS: readonly string[];
3578
+ declare const DEFAULT_SERVER_MAIN_FIELDS: readonly string[];
3579
+ /**
3580
+ * A special condition that would be replaced with production or development
3581
+ * depending on NODE_ENV env variable
3582
+ */
3583
+
3584
+ declare const DEFAULT_CLIENT_CONDITIONS: readonly string[];
3585
+ declare const DEFAULT_SERVER_CONDITIONS: readonly string[];
3586
+ declare const DEFAULT_EXTERNAL_CONDITIONS: readonly string[];
3587
+ /**
3588
+ * The browser versions that are included in the Baseline Widely Available on 2025-05-01.
3589
+ *
3590
+ * This value would be bumped on each major release of Vite.
3591
+ *
3592
+ * The value is generated by `pnpm generate-target` script.
3593
+ */
3594
+
3595
+ declare const defaultAllowedOrigins: RegExp;
3596
+ //#endregion
3597
+ //#region src/node/utils.d.ts
3598
+ /**
3599
+ * Inlined to keep `@rollup/pluginutils` in devDependencies
3600
+ */
3601
+ type FilterPattern = ReadonlyArray<string | RegExp> | string | RegExp | null;
3602
+ declare const createFilter: (include?: FilterPattern, exclude?: FilterPattern, options?: {
3603
+ resolve?: string | false | null;
3604
+ }) => (id: string | unknown) => boolean;
3605
+ declare const rollupVersion: string;
3606
+ declare function normalizePath(id: string): string;
3607
+ declare const isCSSRequest: (request: string) => boolean;
3608
+ declare function mergeConfig<D extends Record<string, any>, O extends Record<string, any>>(defaults: D extends Function ? never : D, overrides: O extends Function ? never : O, isRoot?: boolean): Record<string, any>;
3609
+ declare function mergeAlias(a?: AliasOptions, b?: AliasOptions): AliasOptions | undefined;
3610
+ //#endregion
3611
+ //#region src/node/server/send.d.ts
3612
+ interface SendOptions {
3613
+ etag?: string;
3614
+ cacheControl?: string;
3615
+ headers?: OutgoingHttpHeaders;
3616
+ map?: SourceMap | {
3617
+ mappings: '';
3618
+ } | null;
3619
+ }
3620
+ declare function send(req: http.IncomingMessage, res: ServerResponse, content: string | Buffer, type: string, options: SendOptions): void;
3621
+ //#endregion
3622
+ //#region src/node/server/searchRoot.d.ts
3623
+ /**
3624
+ * Search up for the nearest workspace root
3625
+ */
3626
+ declare function searchForWorkspaceRoot(current: string, root?: string): string;
3627
+ //#endregion
3628
+ //#region src/node/server/middlewares/static.d.ts
3629
+ /**
3630
+ * Check if the url is allowed to be served, via the `server.fs` config.
3631
+ * @deprecated Use the `isFileLoadingAllowed` function instead.
3632
+ */
3633
+ declare function isFileServingAllowed(config: ResolvedConfig, url: string): boolean;
3634
+ declare function isFileServingAllowed(url: string, server: ViteDevServer): boolean;
3635
+ /**
3636
+ * Warning: parameters are not validated, only works with normalized absolute paths
3637
+ *
3638
+ * @param targetPath - normalized absolute path
3639
+ * @param filePath - normalized absolute path
3640
+ */
3641
+
3642
+ /**
3643
+ * Warning: parameters are not validated, only works with normalized absolute paths
3644
+ */
3645
+ declare function isFileLoadingAllowed(config: ResolvedConfig, filePath: string): boolean;
3646
+ //#endregion
3647
+ //#region src/node/env.d.ts
3648
+ declare function loadEnv(mode: string, envDir: string | false, prefixes?: string | string[]): Record<string, string>;
3649
+ declare function resolveEnvPrefix({
3650
+ envPrefix
3651
+ }: UserConfig): string[];
3652
+ //#endregion
3653
+ //#region src/node/plugins/manifest.d.ts
3654
+ type Manifest = Record<string, ManifestChunk>;
3655
+ interface ManifestChunk {
3656
+ src?: string;
3657
+ file: string;
3658
+ css?: string[];
3659
+ assets?: string[];
3660
+ isEntry?: boolean;
3661
+ name?: string;
3662
+ names?: string[];
3663
+ isDynamicEntry?: boolean;
3664
+ imports?: string[];
3665
+ dynamicImports?: string[];
3666
+ }
3667
+ //#endregion
3668
+ export { type Alias, type AliasOptions, type AnymatchFn, type AnymatchPattern, type AppType, type BindCLIShortcutsOptions, type BuildAppHook, BuildEnvironment, type BuildEnvironmentOptions, type BuildOptions, type BuilderOptions, type CLIShortcut, type CSSModulesOptions, type CSSOptions, type ChunkMetadata, type CommonServerOptions, type ConfigEnv, type ConfigPluginContext, type Connect, type ConnectedPayload, type CorsOptions, type CorsOrigin, type CustomEventMap, type CustomPayload, type CustomPluginOptionsVite, type DepOptimizationConfig, type DepOptimizationMetadata, type DepOptimizationOptions, DevEnvironment, type DevEnvironmentContext, type DevEnvironmentOptions, type ESBuildOptions, type ESBuildTransformResult, type Environment, type EnvironmentModuleGraph, type EnvironmentModuleNode, type EnvironmentOptions, type ErrorPayload, type EsbuildTransformOptions, type ExperimentalOptions, type ExportsData, type FSWatcher, type FetchFunction, type FetchModuleOptions, type FetchResult, type FetchableDevEnvironment, type FetchableDevEnvironmentContext, type FileSystemServeOptions, type FilterPattern, type FullReloadPayload, type GeneralImportGlobOptions, type HMRPayload, type HTMLOptions, type HmrContext, type HmrOptions, type HookHandler, type HotChannel, type HotChannelClient, type HotChannelListener, type HotPayload, type HotUpdateOptions, type HtmlTagDescriptor, type index_d_exports as HttpProxy, type HttpServer, type ImportGlobFunction, type ImportGlobOptions, type IndexHtmlTransform, type IndexHtmlTransformContext, type IndexHtmlTransformHook, type IndexHtmlTransformResult, type InferCustomEventPayload, type InlineConfig, type InternalResolveOptions, type InvalidatePayload, type JsonOptions, type KnownAsTypeMap, type LegacyOptions, type LessPreprocessorOptions, type LibraryFormats, type LibraryOptions, type LightningCSSOptions, type LogErrorOptions, type LogLevel, type LogOptions, type LogType, type Logger, type LoggerOptions, type Manifest, type ManifestChunk, type MapToFunction, type AnymatchMatcher as Matcher, type MinimalPluginContextWithoutEnvironment, type ModuleGraph, type ModuleNode, type ModulePreloadOptions, type ModuleRunnerTransformOptions, type NormalizedHotChannel, type NormalizedHotChannelClient, type NormalizedServerHotChannel, type OptimizedDepInfo, type Plugin$1 as Plugin, type PluginContainer, type PluginHookUtils, type PluginOption, type PreprocessCSSResult, type PreviewOptions, type PreviewServer, type PreviewServerHook, type ProxyOptions, type PrunePayload, type RenderBuiltAssetUrl, type ResolveFn, type ResolveModulePreloadDependenciesFn, type ResolveOptions, type ResolvedBuildEnvironmentOptions, type ResolvedBuildOptions, type ResolvedCSSOptions, type ResolvedConfig, type ResolvedDevEnvironmentOptions, type ResolvedModulePreloadOptions, type ResolvedPreviewOptions, type ResolvedSSROptions, type ResolvedServerOptions, type ResolvedServerUrls, type ResolvedUrl, type ResolvedWorkerOptions, type ResolverFunction, type ResolverObject, type Rollup, type RollupCommonJSOptions, type RollupDynamicImportVarsOptions, type RunnableDevEnvironment, type RunnableDevEnvironmentContext, type SSROptions, type SSRTarget, type SassPreprocessorOptions, type SendOptions, type ServerHook, type ServerHotChannel, type ServerModuleRunnerOptions, type ServerOptions$1 as ServerOptions, type SkipInformation, type SsrDepOptimizationConfig, type StylusPreprocessorOptions, type Terser, type TerserOptions, type TransformOptions, type TransformResult, type Update, type UpdatePayload, type UserConfig, type UserConfigExport, type UserConfigFn, type UserConfigFnObject, type UserConfigFnPromise, type ViteBuilder, type ViteDevServer, type WatchOptions, type WebSocket, type WebSocketAlias, type WebSocketClient, type WebSocketCustomListener, type WebSocketServer, build, buildErrorMessage, createBuilder, createFetchableDevEnvironment, createFilter, createIdResolver, createLogger, createRunnableDevEnvironment, createServer, createServerHotChannel, createServerModuleRunner, createServerModuleRunnerTransport, defaultAllowedOrigins, DEFAULT_CLIENT_CONDITIONS as defaultClientConditions, DEFAULT_CLIENT_MAIN_FIELDS as defaultClientMainFields, DEFAULT_EXTERNAL_CONDITIONS as defaultExternalConditions, DEFAULT_SERVER_CONDITIONS as defaultServerConditions, DEFAULT_SERVER_MAIN_FIELDS as defaultServerMainFields, defineConfig, esbuildVersion, fetchModule, formatPostcssSourceMap, isCSSRequest, isFetchableDevEnvironment, isFileLoadingAllowed, isFileServingAllowed, isRunnableDevEnvironment, loadConfigFromFile, loadEnv, mergeAlias, mergeConfig, ssrTransform as moduleRunnerTransform, normalizePath, optimizeDeps, parseAst, parseAstAsync, perEnvironmentPlugin, perEnvironmentState, preprocessCSS, preview, resolveConfig, resolveEnvPrefix, rollupVersion, runnerImport, searchForWorkspaceRoot, send, sortUserPlugins, transformWithEsbuild, VERSION as version };