capydash 0.1.1 → 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.
- checksums.yaml +4 -4
- data/dashboard/node_modules/@babel/code-frame/LICENSE +22 -0
- data/dashboard/node_modules/@babel/code-frame/README.md +19 -0
- data/dashboard/node_modules/@babel/code-frame/lib/index.js +216 -0
- data/dashboard/node_modules/@babel/code-frame/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/code-frame/package.json +31 -0
- data/dashboard/node_modules/@babel/compat-data/LICENSE +22 -0
- data/dashboard/node_modules/@babel/compat-data/README.md +19 -0
- data/dashboard/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2106 -0
- data/dashboard/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
- data/dashboard/node_modules/@babel/compat-data/data/native-modules.json +18 -0
- data/dashboard/node_modules/@babel/compat-data/data/overlapping-plugins.json +35 -0
- data/dashboard/node_modules/@babel/compat-data/data/plugin-bugfixes.json +203 -0
- data/dashboard/node_modules/@babel/compat-data/data/plugins.json +838 -0
- data/dashboard/node_modules/@babel/compat-data/native-modules.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/overlapping-plugins.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/package.json +40 -0
- data/dashboard/node_modules/@babel/compat-data/plugin-bugfixes.js +2 -0
- data/dashboard/node_modules/@babel/compat-data/plugins.js +2 -0
- data/dashboard/node_modules/@babel/core/LICENSE +22 -0
- data/dashboard/node_modules/@babel/core/README.md +19 -0
- data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js +5 -0
- data/dashboard/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/caching.js +261 -0
- data/dashboard/node_modules/@babel/core/lib/config/caching.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-chain.js +469 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
- data/dashboard/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js +290 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index.js +78 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js +211 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/package.js +61 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js +230 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/types.js +5 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- data/dashboard/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/full.js +312 -0
- data/dashboard/node_modules/@babel/core/lib/config/full.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- data/dashboard/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/index.js +93 -0
- data/dashboard/node_modules/@babel/core/lib/config/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/item.js +67 -0
- data/dashboard/node_modules/@babel/core/lib/config/item.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/partial.js +158 -0
- data/dashboard/node_modules/@babel/core/lib/config/partial.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- data/dashboard/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/plugin.js +33 -0
- data/dashboard/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/printer.js +113 -0
- data/dashboard/node_modules/@babel/core/lib/config/printer.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- data/dashboard/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/util.js +31 -0
- data/dashboard/node_modules/@babel/core/lib/config/util.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/options.js +189 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
- data/dashboard/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- data/dashboard/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- data/dashboard/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
- data/dashboard/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/index.js +233 -0
- data/dashboard/node_modules/@babel/core/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parse.js +47 -0
- data/dashboard/node_modules/@babel/core/lib/parse.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parser/index.js +79 -0
- data/dashboard/node_modules/@babel/core/lib/parser/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
- data/dashboard/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
- data/dashboard/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-ast.js +50 -0
- data/dashboard/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file.js +40 -0
- data/dashboard/node_modules/@babel/core/lib/transform-file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transform.js +49 -0
- data/dashboard/node_modules/@babel/core/lib/transform.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +6 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js +219 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/index.js +92 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js +56 -0
- data/dashboard/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
- data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1042 -0
- data/dashboard/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
- data/dashboard/node_modules/@babel/core/package.json +82 -0
- data/dashboard/node_modules/@babel/core/src/config/files/index-browser.ts +115 -0
- data/dashboard/node_modules/@babel/core/src/config/files/index.ts +29 -0
- data/dashboard/node_modules/@babel/core/src/config/resolve-targets-browser.ts +42 -0
- data/dashboard/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
- data/dashboard/node_modules/@babel/core/src/transform-file-browser.ts +33 -0
- data/dashboard/node_modules/@babel/core/src/transform-file.ts +55 -0
- data/dashboard/node_modules/@babel/generator/LICENSE +22 -0
- data/dashboard/node_modules/@babel/generator/README.md +19 -0
- data/dashboard/node_modules/@babel/generator/lib/buffer.js +317 -0
- data/dashboard/node_modules/@babel/generator/lib/buffer.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/base.js +87 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/classes.js +212 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js +28 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/deprecated.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js +300 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/flow.js +660 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/index.js +128 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js +126 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/methods.js +198 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/modules.js +287 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/statements.js +279 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js +40 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/types.js +238 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js +724 -0
- data/dashboard/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/index.js +112 -0
- data/dashboard/node_modules/@babel/generator/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/index.js +122 -0
- data/dashboard/node_modules/@babel/generator/lib/node/index.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js +262 -0
- data/dashboard/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
- data/dashboard/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/printer.js +781 -0
- data/dashboard/node_modules/@babel/generator/lib/printer.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/source-map.js +85 -0
- data/dashboard/node_modules/@babel/generator/lib/source-map.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/lib/token-map.js +191 -0
- data/dashboard/node_modules/@babel/generator/lib/token-map.js.map +1 -0
- data/dashboard/node_modules/@babel/generator/package.json +39 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js +232 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-compilation-targets/package.json +43 -0
- data/dashboard/node_modules/@babel/helper-globals/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-globals/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-globals/data/browser-upper.json +911 -0
- data/dashboard/node_modules/@babel/helper-globals/data/builtin-lower.json +15 -0
- data/dashboard/node_modules/@babel/helper-globals/data/builtin-upper.json +51 -0
- data/dashboard/node_modules/@babel/helper-globals/package.json +32 -0
- data/dashboard/node_modules/@babel/helper-module-imports/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-module-imports/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js +304 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
- data/dashboard/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-imports/package.json +28 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js +398 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +364 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +360 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +22 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-module-transforms/package.json +32 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js +76 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-plugin-utils/package.json +24 -0
- data/dashboard/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-string-parser/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
- data/dashboard/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-string-parser/package.json +31 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-identifier/package.json +31 -0
- data/dashboard/node_modules/@babel/helper-validator-option/LICENSE +22 -0
- data/dashboard/node_modules/@babel/helper-validator-option/README.md +19 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
- data/dashboard/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
- data/dashboard/node_modules/@babel/helper-validator-option/package.json +27 -0
- data/dashboard/node_modules/@babel/helpers/LICENSE +23 -0
- data/dashboard/node_modules/@babel/helpers/README.md +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/AwaitValue.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js +31 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecoratedDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js +236 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayLikeToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithHoles.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/arrayWithoutHoles.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/assertThisInitialized.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +72 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js +38 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/asyncToGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/checkPrivateRedeclaration.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classApplyDescriptorSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCallCheck.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticAccess.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classCheckPrivateStaticFieldDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classExtractFieldDescriptor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classNameTDZError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldInitSpec.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseBase.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldLooseKey.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js +12 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodInitSpec.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateMethodSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldDestructureSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateFieldSpecSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/classStaticPrivateMethodSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js +26 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createClass.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js +64 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js +29 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createForOfIteratorHelperLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/createSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js +350 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/decorate.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defaults.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js +27 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineEnumerableProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js +23 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/defineProperty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js +22 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/extends.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/get.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/getPrototypeOf.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/identity.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js +25 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inherits.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js +14 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/inheritsLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerDefineProperty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/initializerWarningHelper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/instanceof.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireDefault.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +44 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeFunction.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/maybeArrayLike.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/newArrowCheck.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableRest.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nonIterableSpread.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/nullishReceiverError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectDestructuringEmpty.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js +24 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js +24 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/objectWithoutPropertiesLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js +17 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/possibleConstructorReturn.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/readOnlyError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js +188 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsync.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncGen.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js +49 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorAsyncIterator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js +40 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorDefine.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js +28 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorKeys.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +98 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js +32 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/regeneratorValues.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js +48 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/set.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/setPrototypeOf.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/skipFirstGeneratorNext.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/slicedToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropBase.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropGet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/superPropSet.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteral.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/taggedTemplateLiteralLoose.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tdz.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalRef.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js +9 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/temporalUndefined.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js +15 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toConsumableArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js +18 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/toSetter.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js +16 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/tsRewriteRelativeImportExtensions.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js +19 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/unsupportedIterableToArray.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js +103 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js +97 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapAsyncGenerator.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js +38 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapNativeSuper.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +72 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js +11 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers/writeOnlyError.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js +1442 -0
- data/dashboard/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/lib/index.js +126 -0
- data/dashboard/node_modules/@babel/helpers/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/helpers/package.json +31 -0
- data/dashboard/node_modules/@babel/parser/CHANGELOG.md +1073 -0
- data/dashboard/node_modules/@babel/parser/LICENSE +19 -0
- data/dashboard/node_modules/@babel/parser/README.md +19 -0
- data/dashboard/node_modules/@babel/parser/bin/babel-parser.js +15 -0
- data/dashboard/node_modules/@babel/parser/lib/index.js +14595 -0
- data/dashboard/node_modules/@babel/parser/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/parser/package.json +50 -0
- data/dashboard/node_modules/@babel/parser/typings/babel-parser.d.ts +239 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js +61 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-self/package.json +35 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js +51 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/plugin-transform-react-jsx-source/package.json +35 -0
- data/dashboard/node_modules/@babel/template/LICENSE +22 -0
- data/dashboard/node_modules/@babel/template/README.md +19 -0
- data/dashboard/node_modules/@babel/template/lib/builder.js +69 -0
- data/dashboard/node_modules/@babel/template/lib/builder.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/formatters.js +61 -0
- data/dashboard/node_modules/@babel/template/lib/formatters.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/index.js +23 -0
- data/dashboard/node_modules/@babel/template/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/literal.js +69 -0
- data/dashboard/node_modules/@babel/template/lib/literal.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/options.js +73 -0
- data/dashboard/node_modules/@babel/template/lib/options.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/parse.js +163 -0
- data/dashboard/node_modules/@babel/template/lib/parse.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/populate.js +138 -0
- data/dashboard/node_modules/@babel/template/lib/populate.js.map +1 -0
- data/dashboard/node_modules/@babel/template/lib/string.js +20 -0
- data/dashboard/node_modules/@babel/template/lib/string.js.map +1 -0
- data/dashboard/node_modules/@babel/template/package.json +27 -0
- data/dashboard/node_modules/@babel/traverse/LICENSE +22 -0
- data/dashboard/node_modules/@babel/traverse/README.md +19 -0
- data/dashboard/node_modules/@babel/traverse/lib/cache.js +38 -0
- data/dashboard/node_modules/@babel/traverse/lib/cache.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/context.js +119 -0
- data/dashboard/node_modules/@babel/traverse/lib/context.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/hub.js +19 -0
- data/dashboard/node_modules/@babel/traverse/lib/hub.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/index.js +87 -0
- data/dashboard/node_modules/@babel/traverse/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js +139 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/comments.js +52 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/context.js +242 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js +612 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js +368 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/family.js +346 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/index.js +293 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js +398 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +163 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/modification.js +231 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/removal.js +70 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js +263 -0
- data/dashboard/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js +84 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/index.js +1039 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js +131 -0
- data/dashboard/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js +138 -0
- data/dashboard/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/types.js +3 -0
- data/dashboard/node_modules/@babel/traverse/lib/types.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/lib/visitors.js +258 -0
- data/dashboard/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
- data/dashboard/node_modules/@babel/traverse/package.json +35 -0
- data/dashboard/node_modules/@babel/types/LICENSE +22 -0
- data/dashboard/node_modules/@babel/types/README.md +19 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js +1251 -0
- data/dashboard/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
- data/dashboard/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
- data/dashboard/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js +29 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js +2896 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/lowercase.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js +274 -0
- data/dashboard/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/productions.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
- data/dashboard/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
- data/dashboard/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js +21 -0
- data/dashboard/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/clone.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js +107 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComment.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComments.js +22 -0
- data/dashboard/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js +60 -0
- data/dashboard/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/constants/index.js +33 -0
- data/dashboard/node_modules/@babel/types/lib/constants/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +66 -0
- data/dashboard/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js +28 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
- data/dashboard/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js +89 -0
- data/dashboard/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/core.js +1659 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js +126 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/flow.js +495 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/index.js +100 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js +157 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/misc.js +33 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js +528 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/utils.js +292 -0
- data/dashboard/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/index-legacy.d.ts +2797 -0
- data/dashboard/node_modules/@babel/types/lib/index.d.ts +3308 -0
- data/dashboard/node_modules/@babel/types/lib/index.js +584 -0
- data/dashboard/node_modules/@babel/types/lib/index.js.flow +2650 -0
- data/dashboard/node_modules/@babel/types/lib/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +66 -0
- data/dashboard/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js +48 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getAssignmentIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +102 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js +63 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getFunctionName.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js +40 -0
- data/dashboard/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
- data/dashboard/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/inherit.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
- data/dashboard/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js +2797 -0
- data/dashboard/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/is.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/validators/is.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isLet.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNode.js +12 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js +15 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isScope.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isType.js +17 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isVar.js +19 -0
- data/dashboard/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js +44 -0
- data/dashboard/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
- data/dashboard/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
- data/dashboard/node_modules/@babel/types/lib/validators/validate.js +42 -0
- data/dashboard/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
- data/dashboard/node_modules/@babel/types/package.json +39 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
- data/dashboard/node_modules/@esbuild/darwin-arm64/package.json +20 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +292 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +358 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +88 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/set-array.d.ts +32 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +43 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/package.json +67 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/gen-mapping.ts +614 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/set-array.ts +82 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/sourcemap-segment.ts +16 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/src/types.ts +61 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts +89 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts +89 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/gen-mapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts +33 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts +33 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/set-array.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts +13 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts +13 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/sourcemap-segment.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts +44 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts +44 -0
- data/dashboard/node_modules/@jridgewell/gen-mapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/README.md +218 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs +144 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js +212 -0
- data/dashboard/node_modules/@jridgewell/remapping/dist/remapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/remapping/package.json +71 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/build-source-map-tree.ts +89 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/remapping.ts +42 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/source-map-tree.ts +172 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/source-map.ts +38 -0
- data/dashboard/node_modules/@jridgewell/remapping/src/types.ts +27 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts +15 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts +15 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/build-source-map-tree.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts +21 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts +21 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/remapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts +46 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts +46 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map-tree.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts +19 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/source-map.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts +16 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts +16 -0
- data/dashboard/node_modules/@jridgewell/remapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +232 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +240 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
- data/dashboard/node_modules/@jridgewell/resolve-uri/package.json +69 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +423 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +464 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/package.json +63 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/scopes.ts +345 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/sourcemap-codec.ts +111 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/strings.ts +65 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/src/vlq.ts +55 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts +50 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts +50 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/scopes.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts +9 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts +9 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/sourcemap-codec.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts +16 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts +16 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/strings.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts +7 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts +7 -0
- data/dashboard/node_modules/@jridgewell/sourcemap-codec/types/vlq.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/README.md +348 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +493 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +6 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +559 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +6 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/package.json +67 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/binary-search.ts +115 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/by-source.ts +41 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/flatten-map.ts +192 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/resolve.ts +16 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/sort.ts +45 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/sourcemap-segment.ts +23 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/strip-filename.ts +8 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/trace-mapping.ts +502 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/src/types.ts +114 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts +33 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts +33 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/binary-search.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/by-source.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts +9 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts +9 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/flatten-map.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/resolve.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts +4 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sort.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts +17 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts +17 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/sourcemap-segment.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts +5 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts +5 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/strip-filename.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts +80 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts +80 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/trace-mapping.d.mts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts +107 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.cts.map +1 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts +107 -0
- data/dashboard/node_modules/@jridgewell/trace-mapping/types/types.d.mts.map +1 -0
- data/dashboard/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- data/dashboard/node_modules/@rolldown/pluginutils/README.md +85 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.cjs +266 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.cts +157 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.d.ts +157 -0
- data/dashboard/node_modules/@rolldown/pluginutils/dist/index.js +250 -0
- data/dashboard/node_modules/@rolldown/pluginutils/package.json +36 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/package.json +19 -0
- data/dashboard/node_modules/@rollup/rollup-darwin-arm64/rollup.darwin-arm64.node +0 -0
- data/dashboard/node_modules/@types/babel__core/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__core/README.md +15 -0
- data/dashboard/node_modules/@types/babel__core/index.d.ts +831 -0
- data/dashboard/node_modules/@types/babel__core/package.json +51 -0
- data/dashboard/node_modules/@types/babel__generator/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__generator/README.md +15 -0
- data/dashboard/node_modules/@types/babel__generator/index.d.ts +210 -0
- data/dashboard/node_modules/@types/babel__generator/package.json +43 -0
- data/dashboard/node_modules/@types/babel__template/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__template/README.md +15 -0
- data/dashboard/node_modules/@types/babel__template/index.d.ts +92 -0
- data/dashboard/node_modules/@types/babel__template/package.json +43 -0
- data/dashboard/node_modules/@types/babel__traverse/LICENSE +21 -0
- data/dashboard/node_modules/@types/babel__traverse/README.md +15 -0
- data/dashboard/node_modules/@types/babel__traverse/index.d.ts +1506 -0
- data/dashboard/node_modules/@types/babel__traverse/package.json +63 -0
- data/dashboard/node_modules/@types/estree/LICENSE +21 -0
- data/dashboard/node_modules/@types/estree/README.md +15 -0
- data/dashboard/node_modules/@types/estree/flow.d.ts +167 -0
- data/dashboard/node_modules/@types/estree/index.d.ts +694 -0
- data/dashboard/node_modules/@types/estree/package.json +27 -0
- data/dashboard/node_modules/@vitejs/plugin-react/LICENSE +21 -0
- data/dashboard/node_modules/@vitejs/plugin-react/README.md +140 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/index.d.ts +64 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/index.js +368 -0
- data/dashboard/node_modules/@vitejs/plugin-react/dist/refresh-runtime.js +670 -0
- data/dashboard/node_modules/@vitejs/plugin-react/package.json +62 -0
- data/dashboard/node_modules/baseline-browser-mapping/LICENSE.txt +201 -0
- data/dashboard/node_modules/baseline-browser-mapping/README.md +431 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/cli.js +2 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.cjs +1 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.d.ts +90 -0
- data/dashboard/node_modules/baseline-browser-mapping/dist/index.js +1 -0
- data/dashboard/node_modules/baseline-browser-mapping/package.json +59 -0
- data/dashboard/node_modules/browserslist/LICENSE +20 -0
- data/dashboard/node_modules/browserslist/README.md +65 -0
- data/dashboard/node_modules/browserslist/browser.js +54 -0
- data/dashboard/node_modules/browserslist/cli.js +156 -0
- data/dashboard/node_modules/browserslist/error.d.ts +7 -0
- data/dashboard/node_modules/browserslist/error.js +12 -0
- data/dashboard/node_modules/browserslist/index.d.ts +224 -0
- data/dashboard/node_modules/browserslist/index.js +1322 -0
- data/dashboard/node_modules/browserslist/node.js +497 -0
- data/dashboard/node_modules/browserslist/package.json +45 -0
- data/dashboard/node_modules/browserslist/parse.js +78 -0
- data/dashboard/node_modules/caniuse-lite/LICENSE +395 -0
- data/dashboard/node_modules/caniuse-lite/README.md +6 -0
- data/dashboard/node_modules/caniuse-lite/data/agents.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/browserVersions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/browsers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/aac.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/apng.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-find.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audio.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/av1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/avif.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/beacon.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/bigint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/border-image.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/brotli.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/calc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/canvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/classlist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/colr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/console-time.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/const.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-all.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-has.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-if.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-table.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/customevent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/datalist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dataset.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/datauri.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/decorators.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/details.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dialog.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/download.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eme.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eot.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es5.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/es6.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filereader.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flac.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fontface.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/forms.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/heif.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hevc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/hidden.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/history.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/http3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ime.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/imports.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/innertext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-event.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-number.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-range.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-search.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/json.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/let.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mathml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/menu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/meter.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/midi.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mp3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/notifications.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/object-values.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ogv.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/online-status.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/opus.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/outline.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/path2d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/picture.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ping.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/portals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/progress.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/promises.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/proximity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/proxy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/push-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rellist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rem.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ruby.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/run-in.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/script-async.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sdch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/selectlist.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sni.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/spdy.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/srcset.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/stream.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/streams.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/svg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/sxg.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/template.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/temporal.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/touch.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/ttf.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/u2f.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/url.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/vibration.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/video.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wasm.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wav.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/web-share.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgl.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webhid.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webm.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webp.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/websockets.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webusb.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webvr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/webxr.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/will-change.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/woff.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/woff2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/word-break.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features/zstd.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/features.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/EG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ER.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ES.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ET.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/FR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/GY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/HU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ID.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/IT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/JP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/LY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ME.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ML.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MX.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NP.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/OM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/PY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/QA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/RW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SB.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SK.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ST.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TD.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TH.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TL.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TO.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TR.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TV.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/US.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UY.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VC.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VG.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VI.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VN.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/VU.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/WF.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/WS.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/YE.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/YT.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
- data/dashboard/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
- data/dashboard/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/feature.js +52 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
- data/dashboard/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
- data/dashboard/node_modules/caniuse-lite/package.json +34 -0
- data/dashboard/node_modules/convert-source-map/LICENSE +23 -0
- data/dashboard/node_modules/convert-source-map/README.md +206 -0
- data/dashboard/node_modules/convert-source-map/index.js +233 -0
- data/dashboard/node_modules/convert-source-map/package.json +38 -0
- data/dashboard/node_modules/debug/LICENSE +20 -0
- data/dashboard/node_modules/debug/README.md +481 -0
- data/dashboard/node_modules/debug/package.json +64 -0
- data/dashboard/node_modules/debug/src/browser.js +272 -0
- data/dashboard/node_modules/debug/src/common.js +292 -0
- data/dashboard/node_modules/debug/src/index.js +10 -0
- data/dashboard/node_modules/debug/src/node.js +263 -0
- data/dashboard/node_modules/electron-to-chromium/LICENSE +5 -0
- data/dashboard/node_modules/electron-to-chromium/README.md +186 -0
- data/dashboard/node_modules/electron-to-chromium/chromium-versions.js +81 -0
- data/dashboard/node_modules/electron-to-chromium/chromium-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.js +2539 -0
- data/dashboard/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/full-versions.js +1625 -0
- data/dashboard/node_modules/electron-to-chromium/full-versions.json +1 -0
- data/dashboard/node_modules/electron-to-chromium/index.js +36 -0
- data/dashboard/node_modules/electron-to-chromium/package.json +44 -0
- data/dashboard/node_modules/electron-to-chromium/versions.js +210 -0
- data/dashboard/node_modules/electron-to-chromium/versions.json +1 -0
- data/dashboard/node_modules/esbuild/LICENSE.md +21 -0
- data/dashboard/node_modules/esbuild/README.md +3 -0
- data/dashboard/node_modules/esbuild/bin/esbuild +0 -0
- data/dashboard/node_modules/esbuild/install.js +289 -0
- data/dashboard/node_modules/esbuild/lib/main.d.ts +716 -0
- data/dashboard/node_modules/esbuild/lib/main.js +2242 -0
- data/dashboard/node_modules/esbuild/package.json +49 -0
- data/dashboard/node_modules/escalade/dist/index.js +22 -0
- data/dashboard/node_modules/escalade/dist/index.mjs +22 -0
- data/dashboard/node_modules/escalade/index.d.mts +11 -0
- data/dashboard/node_modules/escalade/index.d.ts +15 -0
- data/dashboard/node_modules/escalade/license +9 -0
- data/dashboard/node_modules/escalade/package.json +74 -0
- data/dashboard/node_modules/escalade/readme.md +211 -0
- data/dashboard/node_modules/escalade/sync/index.d.mts +9 -0
- data/dashboard/node_modules/escalade/sync/index.d.ts +13 -0
- data/dashboard/node_modules/escalade/sync/index.js +18 -0
- data/dashboard/node_modules/escalade/sync/index.mjs +18 -0
- data/dashboard/node_modules/fdir/LICENSE +7 -0
- data/dashboard/node_modules/fdir/README.md +91 -0
- data/dashboard/node_modules/fdir/dist/index.cjs +588 -0
- data/dashboard/node_modules/fdir/dist/index.d.cts +155 -0
- data/dashboard/node_modules/fdir/dist/index.d.mts +155 -0
- data/dashboard/node_modules/fdir/dist/index.mjs +570 -0
- data/dashboard/node_modules/fdir/package.json +103 -0
- data/dashboard/node_modules/fsevents/LICENSE +22 -0
- data/dashboard/node_modules/fsevents/README.md +89 -0
- data/dashboard/node_modules/fsevents/fsevents.d.ts +46 -0
- data/dashboard/node_modules/fsevents/fsevents.js +83 -0
- data/dashboard/node_modules/fsevents/fsevents.node +0 -0
- data/dashboard/node_modules/fsevents/package.json +62 -0
- data/dashboard/node_modules/gensync/LICENSE +7 -0
- data/dashboard/node_modules/gensync/README.md +196 -0
- data/dashboard/node_modules/gensync/index.js +373 -0
- data/dashboard/node_modules/gensync/index.js.flow +32 -0
- data/dashboard/node_modules/gensync/package.json +37 -0
- data/dashboard/node_modules/gensync/test/index.test.js +489 -0
- data/dashboard/node_modules/js-tokens/CHANGELOG.md +151 -0
- data/dashboard/node_modules/js-tokens/LICENSE +21 -0
- data/dashboard/node_modules/js-tokens/README.md +240 -0
- data/dashboard/node_modules/js-tokens/index.js +23 -0
- data/dashboard/node_modules/js-tokens/package.json +30 -0
- data/dashboard/node_modules/jsesc/LICENSE-MIT.txt +20 -0
- data/dashboard/node_modules/jsesc/README.md +422 -0
- data/dashboard/node_modules/jsesc/bin/jsesc +148 -0
- data/dashboard/node_modules/jsesc/jsesc.js +337 -0
- data/dashboard/node_modules/jsesc/man/jsesc.1 +94 -0
- data/dashboard/node_modules/jsesc/package.json +56 -0
- data/dashboard/node_modules/json5/LICENSE.md +23 -0
- data/dashboard/node_modules/json5/README.md +282 -0
- data/dashboard/node_modules/json5/dist/index.js +1737 -0
- data/dashboard/node_modules/json5/dist/index.min.js +1 -0
- data/dashboard/node_modules/json5/dist/index.min.mjs +1 -0
- data/dashboard/node_modules/json5/dist/index.mjs +1426 -0
- data/dashboard/node_modules/json5/lib/cli.js +152 -0
- data/dashboard/node_modules/json5/lib/index.d.ts +4 -0
- data/dashboard/node_modules/json5/lib/index.js +9 -0
- data/dashboard/node_modules/json5/lib/parse.d.ts +15 -0
- data/dashboard/node_modules/json5/lib/parse.js +1114 -0
- data/dashboard/node_modules/json5/lib/register.js +13 -0
- data/dashboard/node_modules/json5/lib/require.js +4 -0
- data/dashboard/node_modules/json5/lib/stringify.d.ts +89 -0
- data/dashboard/node_modules/json5/lib/stringify.js +261 -0
- data/dashboard/node_modules/json5/lib/unicode.d.ts +3 -0
- data/dashboard/node_modules/json5/lib/unicode.js +4 -0
- data/dashboard/node_modules/json5/lib/util.d.ts +5 -0
- data/dashboard/node_modules/json5/lib/util.js +35 -0
- data/dashboard/node_modules/json5/package.json +72 -0
- data/dashboard/node_modules/lru-cache/LICENSE +15 -0
- data/dashboard/node_modules/lru-cache/README.md +166 -0
- data/dashboard/node_modules/lru-cache/index.js +334 -0
- data/dashboard/node_modules/lru-cache/package.json +32 -0
- data/dashboard/node_modules/ms/index.js +162 -0
- data/dashboard/node_modules/ms/license.md +21 -0
- data/dashboard/node_modules/ms/package.json +38 -0
- data/dashboard/node_modules/ms/readme.md +59 -0
- data/dashboard/node_modules/nanoid/LICENSE +20 -0
- data/dashboard/node_modules/nanoid/README.md +39 -0
- data/dashboard/node_modules/nanoid/async/index.browser.cjs +69 -0
- data/dashboard/node_modules/nanoid/async/index.browser.js +34 -0
- data/dashboard/node_modules/nanoid/async/index.cjs +71 -0
- data/dashboard/node_modules/nanoid/async/index.d.ts +56 -0
- data/dashboard/node_modules/nanoid/async/index.js +35 -0
- data/dashboard/node_modules/nanoid/async/index.native.js +26 -0
- data/dashboard/node_modules/nanoid/async/package.json +12 -0
- data/dashboard/node_modules/nanoid/bin/nanoid.cjs +55 -0
- data/dashboard/node_modules/nanoid/index.browser.cjs +72 -0
- data/dashboard/node_modules/nanoid/index.browser.js +34 -0
- data/dashboard/node_modules/nanoid/index.cjs +85 -0
- data/dashboard/node_modules/nanoid/index.d.cts +91 -0
- data/dashboard/node_modules/nanoid/index.d.ts +91 -0
- data/dashboard/node_modules/nanoid/index.js +45 -0
- data/dashboard/node_modules/nanoid/nanoid.js +1 -0
- data/dashboard/node_modules/nanoid/non-secure/index.cjs +34 -0
- data/dashboard/node_modules/nanoid/non-secure/index.d.ts +33 -0
- data/dashboard/node_modules/nanoid/non-secure/index.js +21 -0
- data/dashboard/node_modules/nanoid/non-secure/package.json +6 -0
- data/dashboard/node_modules/nanoid/package.json +89 -0
- data/dashboard/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- data/dashboard/node_modules/nanoid/url-alphabet/index.js +3 -0
- data/dashboard/node_modules/nanoid/url-alphabet/package.json +6 -0
- data/dashboard/node_modules/node-releases/LICENSE +21 -0
- data/dashboard/node_modules/node-releases/README.md +12 -0
- data/dashboard/node_modules/node-releases/data/processed/envs.json +1 -0
- data/dashboard/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
- data/dashboard/node_modules/node-releases/package.json +22 -0
- data/dashboard/node_modules/picocolors/LICENSE +15 -0
- data/dashboard/node_modules/picocolors/README.md +21 -0
- data/dashboard/node_modules/picocolors/package.json +25 -0
- data/dashboard/node_modules/picocolors/picocolors.browser.js +4 -0
- data/dashboard/node_modules/picocolors/picocolors.d.ts +5 -0
- data/dashboard/node_modules/picocolors/picocolors.js +75 -0
- data/dashboard/node_modules/picocolors/types.d.ts +51 -0
- data/dashboard/node_modules/picomatch/LICENSE +21 -0
- data/dashboard/node_modules/picomatch/README.md +738 -0
- data/dashboard/node_modules/picomatch/index.js +17 -0
- data/dashboard/node_modules/picomatch/lib/constants.js +180 -0
- data/dashboard/node_modules/picomatch/lib/parse.js +1085 -0
- data/dashboard/node_modules/picomatch/lib/picomatch.js +341 -0
- data/dashboard/node_modules/picomatch/lib/scan.js +391 -0
- data/dashboard/node_modules/picomatch/lib/utils.js +72 -0
- data/dashboard/node_modules/picomatch/package.json +83 -0
- data/dashboard/node_modules/picomatch/posix.js +3 -0
- data/dashboard/node_modules/postcss/LICENSE +20 -0
- data/dashboard/node_modules/postcss/README.md +29 -0
- data/dashboard/node_modules/postcss/lib/at-rule.d.ts +140 -0
- data/dashboard/node_modules/postcss/lib/at-rule.js +25 -0
- data/dashboard/node_modules/postcss/lib/comment.d.ts +68 -0
- data/dashboard/node_modules/postcss/lib/comment.js +13 -0
- data/dashboard/node_modules/postcss/lib/container.d.ts +483 -0
- data/dashboard/node_modules/postcss/lib/container.js +447 -0
- data/dashboard/node_modules/postcss/lib/css-syntax-error.d.ts +248 -0
- data/dashboard/node_modules/postcss/lib/css-syntax-error.js +133 -0
- data/dashboard/node_modules/postcss/lib/declaration.d.ts +151 -0
- data/dashboard/node_modules/postcss/lib/declaration.js +24 -0
- data/dashboard/node_modules/postcss/lib/document.d.ts +69 -0
- data/dashboard/node_modules/postcss/lib/document.js +33 -0
- data/dashboard/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/fromJSON.js +54 -0
- data/dashboard/node_modules/postcss/lib/input.d.ts +227 -0
- data/dashboard/node_modules/postcss/lib/input.js +265 -0
- data/dashboard/node_modules/postcss/lib/lazy-result.d.ts +190 -0
- data/dashboard/node_modules/postcss/lib/lazy-result.js +550 -0
- data/dashboard/node_modules/postcss/lib/list.d.ts +60 -0
- data/dashboard/node_modules/postcss/lib/list.js +58 -0
- data/dashboard/node_modules/postcss/lib/map-generator.js +368 -0
- data/dashboard/node_modules/postcss/lib/no-work-result.d.ts +46 -0
- data/dashboard/node_modules/postcss/lib/no-work-result.js +138 -0
- data/dashboard/node_modules/postcss/lib/node.d.ts +556 -0
- data/dashboard/node_modules/postcss/lib/node.js +449 -0
- data/dashboard/node_modules/postcss/lib/parse.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/parse.js +42 -0
- data/dashboard/node_modules/postcss/lib/parser.js +611 -0
- data/dashboard/node_modules/postcss/lib/postcss.d.mts +69 -0
- data/dashboard/node_modules/postcss/lib/postcss.d.ts +458 -0
- data/dashboard/node_modules/postcss/lib/postcss.js +101 -0
- data/dashboard/node_modules/postcss/lib/postcss.mjs +30 -0
- data/dashboard/node_modules/postcss/lib/previous-map.d.ts +81 -0
- data/dashboard/node_modules/postcss/lib/previous-map.js +144 -0
- data/dashboard/node_modules/postcss/lib/processor.d.ts +115 -0
- data/dashboard/node_modules/postcss/lib/processor.js +67 -0
- data/dashboard/node_modules/postcss/lib/result.d.ts +205 -0
- data/dashboard/node_modules/postcss/lib/result.js +42 -0
- data/dashboard/node_modules/postcss/lib/root.d.ts +87 -0
- data/dashboard/node_modules/postcss/lib/root.js +61 -0
- data/dashboard/node_modules/postcss/lib/rule.d.ts +126 -0
- data/dashboard/node_modules/postcss/lib/rule.js +27 -0
- data/dashboard/node_modules/postcss/lib/stringifier.d.ts +46 -0
- data/dashboard/node_modules/postcss/lib/stringifier.js +353 -0
- data/dashboard/node_modules/postcss/lib/stringify.d.ts +9 -0
- data/dashboard/node_modules/postcss/lib/stringify.js +11 -0
- data/dashboard/node_modules/postcss/lib/symbols.js +5 -0
- data/dashboard/node_modules/postcss/lib/terminal-highlight.js +70 -0
- data/dashboard/node_modules/postcss/lib/tokenize.js +266 -0
- data/dashboard/node_modules/postcss/lib/warn-once.js +13 -0
- data/dashboard/node_modules/postcss/lib/warning.d.ts +147 -0
- data/dashboard/node_modules/postcss/lib/warning.js +37 -0
- data/dashboard/node_modules/postcss/package.json +88 -0
- data/dashboard/node_modules/react/LICENSE +21 -0
- data/dashboard/node_modules/react/README.md +37 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- data/dashboard/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.development.js +349 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +385 -0
- data/dashboard/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.development.js +358 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +385 -0
- data/dashboard/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- data/dashboard/node_modules/react/cjs/react.development.js +1243 -0
- data/dashboard/node_modules/react/cjs/react.production.js +546 -0
- data/dashboard/node_modules/react/cjs/react.react-server.development.js +817 -0
- data/dashboard/node_modules/react/cjs/react.react-server.production.js +429 -0
- data/dashboard/node_modules/react/compiler-runtime.js +14 -0
- data/dashboard/node_modules/react/index.js +7 -0
- data/dashboard/node_modules/react/jsx-dev-runtime.js +7 -0
- data/dashboard/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- data/dashboard/node_modules/react/jsx-runtime.js +7 -0
- data/dashboard/node_modules/react/jsx-runtime.react-server.js +7 -0
- data/dashboard/node_modules/react/package.json +51 -0
- data/dashboard/node_modules/react/react.react-server.js +7 -0
- data/dashboard/node_modules/react-dom/LICENSE +21 -0
- data/dashboard/node_modules/react-dom/README.md +60 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-client.development.js +24993 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-client.production.js +15393 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.development.js +25380 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-profiling.profiling.js +16218 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.development.js +9035 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +5892 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.development.js +9035 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +5972 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.development.js +9424 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.browser.production.js +6384 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.development.js +8738 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.bun.production.js +5967 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.development.js +9443 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.edge.production.js +6477 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.development.js +9317 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-server.node.production.js +6372 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.development.js +24 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom-test-utils.production.js +21 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.development.js +424 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.production.js +210 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.development.js +340 -0
- data/dashboard/node_modules/react-dom/cjs/react-dom.react-server.production.js +152 -0
- data/dashboard/node_modules/react-dom/client.js +38 -0
- data/dashboard/node_modules/react-dom/client.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/index.js +38 -0
- data/dashboard/node_modules/react-dom/package.json +117 -0
- data/dashboard/node_modules/react-dom/profiling.js +38 -0
- data/dashboard/node_modules/react-dom/profiling.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/react-dom.react-server.js +7 -0
- data/dashboard/node_modules/react-dom/server.browser.js +18 -0
- data/dashboard/node_modules/react-dom/server.bun.js +19 -0
- data/dashboard/node_modules/react-dom/server.edge.js +19 -0
- data/dashboard/node_modules/react-dom/server.js +3 -0
- data/dashboard/node_modules/react-dom/server.node.js +18 -0
- data/dashboard/node_modules/react-dom/server.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/static.browser.js +12 -0
- data/dashboard/node_modules/react-dom/static.edge.js +12 -0
- data/dashboard/node_modules/react-dom/static.js +3 -0
- data/dashboard/node_modules/react-dom/static.node.js +12 -0
- data/dashboard/node_modules/react-dom/static.react-server.js +5 -0
- data/dashboard/node_modules/react-dom/test-utils.js +7 -0
- data/dashboard/node_modules/react-refresh/LICENSE +21 -0
- data/dashboard/node_modules/react-refresh/README.md +5 -0
- data/dashboard/node_modules/react-refresh/babel.js +7 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.development.js +601 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-babel.production.js +586 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.development.js +338 -0
- data/dashboard/node_modules/react-refresh/cjs/react-refresh-runtime.production.js +14 -0
- data/dashboard/node_modules/react-refresh/package.json +38 -0
- data/dashboard/node_modules/react-refresh/runtime.js +7 -0
- data/dashboard/node_modules/rollup/LICENSE.md +679 -0
- data/dashboard/node_modules/rollup/README.md +134 -0
- data/dashboard/node_modules/rollup/dist/bin/rollup +1885 -0
- data/dashboard/node_modules/rollup/dist/es/getLogFilter.js +64 -0
- data/dashboard/node_modules/rollup/dist/es/package.json +1 -0
- data/dashboard/node_modules/rollup/dist/es/parseAst.js +12 -0
- data/dashboard/node_modules/rollup/dist/es/rollup.js +17 -0
- data/dashboard/node_modules/rollup/dist/es/shared/node-entry.js +23892 -0
- data/dashboard/node_modules/rollup/dist/es/shared/parseAst.js +2086 -0
- data/dashboard/node_modules/rollup/dist/es/shared/watch.js +9297 -0
- data/dashboard/node_modules/rollup/dist/getLogFilter.d.ts +5 -0
- data/dashboard/node_modules/rollup/dist/getLogFilter.js +69 -0
- data/dashboard/node_modules/rollup/dist/loadConfigFile.d.ts +20 -0
- data/dashboard/node_modules/rollup/dist/loadConfigFile.js +29 -0
- data/dashboard/node_modules/rollup/dist/native.js +113 -0
- data/dashboard/node_modules/rollup/dist/parseAst.d.ts +4 -0
- data/dashboard/node_modules/rollup/dist/parseAst.js +22 -0
- data/dashboard/node_modules/rollup/dist/rollup.d.ts +1182 -0
- data/dashboard/node_modules/rollup/dist/rollup.js +127 -0
- data/dashboard/node_modules/rollup/dist/shared/fsevents-importer.js +37 -0
- data/dashboard/node_modules/rollup/dist/shared/index.js +9003 -0
- data/dashboard/node_modules/rollup/dist/shared/loadConfigFile.js +572 -0
- data/dashboard/node_modules/rollup/dist/shared/parseAst.js +2318 -0
- data/dashboard/node_modules/rollup/dist/shared/rollup.js +23814 -0
- data/dashboard/node_modules/rollup/dist/shared/watch-cli.js +542 -0
- data/dashboard/node_modules/rollup/dist/shared/watch.js +324 -0
- data/dashboard/node_modules/rollup/package.json +268 -0
- data/dashboard/node_modules/scheduler/LICENSE +21 -0
- data/dashboard/node_modules/scheduler/README.md +9 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.development.js +364 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
- data/dashboard/node_modules/scheduler/cjs/scheduler.production.js +340 -0
- data/dashboard/node_modules/scheduler/index.js +7 -0
- data/dashboard/node_modules/scheduler/index.native.js +7 -0
- data/dashboard/node_modules/scheduler/package.json +27 -0
- data/dashboard/node_modules/scheduler/unstable_mock.js +7 -0
- data/dashboard/node_modules/scheduler/unstable_post_task.js +7 -0
- data/dashboard/node_modules/semver/LICENSE +15 -0
- data/dashboard/node_modules/semver/README.md +443 -0
- data/dashboard/node_modules/semver/bin/semver.js +174 -0
- data/dashboard/node_modules/semver/package.json +38 -0
- data/dashboard/node_modules/semver/range.bnf +16 -0
- data/dashboard/node_modules/semver/semver.js +1643 -0
- data/dashboard/node_modules/source-map-js/LICENSE +28 -0
- data/dashboard/node_modules/source-map-js/README.md +765 -0
- data/dashboard/node_modules/source-map-js/lib/array-set.js +121 -0
- data/dashboard/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- data/dashboard/node_modules/source-map-js/lib/base64.js +67 -0
- data/dashboard/node_modules/source-map-js/lib/binary-search.js +111 -0
- data/dashboard/node_modules/source-map-js/lib/mapping-list.js +79 -0
- data/dashboard/node_modules/source-map-js/lib/quick-sort.js +132 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- data/dashboard/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- data/dashboard/node_modules/source-map-js/lib/source-node.js +413 -0
- data/dashboard/node_modules/source-map-js/lib/util.js +594 -0
- data/dashboard/node_modules/source-map-js/package.json +71 -0
- data/dashboard/node_modules/source-map-js/source-map.d.ts +104 -0
- data/dashboard/node_modules/source-map-js/source-map.js +8 -0
- data/dashboard/node_modules/tinyglobby/LICENSE +21 -0
- data/dashboard/node_modules/tinyglobby/README.md +25 -0
- data/dashboard/node_modules/tinyglobby/dist/index.cjs +350 -0
- data/dashboard/node_modules/tinyglobby/dist/index.d.cts +147 -0
- data/dashboard/node_modules/tinyglobby/dist/index.d.mts +147 -0
- data/dashboard/node_modules/tinyglobby/dist/index.mjs +318 -0
- data/dashboard/node_modules/tinyglobby/package.json +73 -0
- data/dashboard/node_modules/update-browserslist-db/LICENSE +20 -0
- data/dashboard/node_modules/update-browserslist-db/README.md +22 -0
- data/dashboard/node_modules/update-browserslist-db/check-npm-version.js +17 -0
- data/dashboard/node_modules/update-browserslist-db/cli.js +42 -0
- data/dashboard/node_modules/update-browserslist-db/index.d.ts +6 -0
- data/dashboard/node_modules/update-browserslist-db/index.js +341 -0
- data/dashboard/node_modules/update-browserslist-db/package.json +40 -0
- data/dashboard/node_modules/update-browserslist-db/utils.js +25 -0
- data/dashboard/node_modules/vite/LICENSE.md +2173 -0
- data/dashboard/node_modules/vite/README.md +20 -0
- data/dashboard/node_modules/vite/bin/openChrome.js +68 -0
- data/dashboard/node_modules/vite/bin/vite.js +79 -0
- data/dashboard/node_modules/vite/client.d.ts +279 -0
- data/dashboard/node_modules/vite/dist/client/client.mjs +1098 -0
- data/dashboard/node_modules/vite/dist/client/env.mjs +19 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-BuoK8Wda.js +377 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-BvyJBvVx.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-Cs9lwdKu.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-DCVhRpiz.js +5595 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-DDbTn5rw.js +482 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-D_YDhiNx.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-M_KD0XSK.js +36707 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-SmwnYDP9.js +320 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-cWFO4sv4.js +4 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-lCKrEJQm.js +31 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-sDKrrA4S.js +6814 -0
- data/dashboard/node_modules/vite/dist/node/chunks/dep-yxQqhtZq.js +4 -0
- data/dashboard/node_modules/vite/dist/node/cli.js +708 -0
- data/dashboard/node_modules/vite/dist/node/index.d.ts +3668 -0
- data/dashboard/node_modules/vite/dist/node/index.js +30 -0
- data/dashboard/node_modules/vite/dist/node/module-runner.d.ts +312 -0
- data/dashboard/node_modules/vite/dist/node/module-runner.js +1133 -0
- data/dashboard/node_modules/vite/dist/node/moduleRunnerTransport-BWUZBVLX.d.ts +88 -0
- data/dashboard/node_modules/vite/misc/false.js +1 -0
- data/dashboard/node_modules/vite/misc/true.js +1 -0
- data/dashboard/node_modules/vite/package.json +201 -0
- data/dashboard/node_modules/vite/types/customEvent.d.ts +45 -0
- data/dashboard/node_modules/vite/types/hmrPayload.d.ts +74 -0
- data/dashboard/node_modules/vite/types/hot.d.ts +39 -0
- data/dashboard/node_modules/vite/types/import-meta.d.ts +5 -0
- data/dashboard/node_modules/vite/types/importGlob.d.ts +89 -0
- data/dashboard/node_modules/vite/types/importMeta.d.ts +31 -0
- data/dashboard/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- data/dashboard/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- data/dashboard/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- data/dashboard/node_modules/vite/types/metadata.d.ts +33 -0
- data/dashboard/node_modules/vite/types/package.json +4 -0
- data/dashboard/node_modules/yallist/LICENSE +15 -0
- data/dashboard/node_modules/yallist/README.md +204 -0
- data/dashboard/node_modules/yallist/iterator.js +8 -0
- data/dashboard/node_modules/yallist/package.json +29 -0
- data/dashboard/node_modules/yallist/yallist.js +426 -0
- data/dashboard/package-lock.json +1714 -0
- data/dashboard/package.json +20 -0
- data/dashboard/src/App.jsx +637 -0
- data/dashboard/src/LogViewer.jsx +29 -0
- data/dashboard/src/StepDetail.jsx +36 -0
- data/dashboard/src/index.html +11 -0
- data/dashboard/src/main.jsx +9 -0
- data/dashboard/vite.config.js +10 -0
- data/lib/capydash/version.rb +1 -1
- metadata +2249 -2
- data/capydash.gemspec +0 -30
@@ -0,0 +1,2242 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __create = Object.create;
|
3
|
+
var __defProp = Object.defineProperty;
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
8
|
+
var __export = (target, all) => {
|
9
|
+
for (var name in all)
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
11
|
+
};
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
14
|
+
for (let key of __getOwnPropNames(from))
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
17
|
+
}
|
18
|
+
return to;
|
19
|
+
};
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
26
|
+
mod
|
27
|
+
));
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
29
|
+
|
30
|
+
// lib/npm/node.ts
|
31
|
+
var node_exports = {};
|
32
|
+
__export(node_exports, {
|
33
|
+
analyzeMetafile: () => analyzeMetafile,
|
34
|
+
analyzeMetafileSync: () => analyzeMetafileSync,
|
35
|
+
build: () => build,
|
36
|
+
buildSync: () => buildSync,
|
37
|
+
context: () => context,
|
38
|
+
default: () => node_default,
|
39
|
+
formatMessages: () => formatMessages,
|
40
|
+
formatMessagesSync: () => formatMessagesSync,
|
41
|
+
initialize: () => initialize,
|
42
|
+
stop: () => stop,
|
43
|
+
transform: () => transform,
|
44
|
+
transformSync: () => transformSync,
|
45
|
+
version: () => version
|
46
|
+
});
|
47
|
+
module.exports = __toCommonJS(node_exports);
|
48
|
+
|
49
|
+
// lib/shared/stdio_protocol.ts
|
50
|
+
function encodePacket(packet) {
|
51
|
+
let visit = (value) => {
|
52
|
+
if (value === null) {
|
53
|
+
bb.write8(0);
|
54
|
+
} else if (typeof value === "boolean") {
|
55
|
+
bb.write8(1);
|
56
|
+
bb.write8(+value);
|
57
|
+
} else if (typeof value === "number") {
|
58
|
+
bb.write8(2);
|
59
|
+
bb.write32(value | 0);
|
60
|
+
} else if (typeof value === "string") {
|
61
|
+
bb.write8(3);
|
62
|
+
bb.write(encodeUTF8(value));
|
63
|
+
} else if (value instanceof Uint8Array) {
|
64
|
+
bb.write8(4);
|
65
|
+
bb.write(value);
|
66
|
+
} else if (value instanceof Array) {
|
67
|
+
bb.write8(5);
|
68
|
+
bb.write32(value.length);
|
69
|
+
for (let item of value) {
|
70
|
+
visit(item);
|
71
|
+
}
|
72
|
+
} else {
|
73
|
+
let keys = Object.keys(value);
|
74
|
+
bb.write8(6);
|
75
|
+
bb.write32(keys.length);
|
76
|
+
for (let key of keys) {
|
77
|
+
bb.write(encodeUTF8(key));
|
78
|
+
visit(value[key]);
|
79
|
+
}
|
80
|
+
}
|
81
|
+
};
|
82
|
+
let bb = new ByteBuffer();
|
83
|
+
bb.write32(0);
|
84
|
+
bb.write32(packet.id << 1 | +!packet.isRequest);
|
85
|
+
visit(packet.value);
|
86
|
+
writeUInt32LE(bb.buf, bb.len - 4, 0);
|
87
|
+
return bb.buf.subarray(0, bb.len);
|
88
|
+
}
|
89
|
+
function decodePacket(bytes) {
|
90
|
+
let visit = () => {
|
91
|
+
switch (bb.read8()) {
|
92
|
+
case 0:
|
93
|
+
return null;
|
94
|
+
case 1:
|
95
|
+
return !!bb.read8();
|
96
|
+
case 2:
|
97
|
+
return bb.read32();
|
98
|
+
case 3:
|
99
|
+
return decodeUTF8(bb.read());
|
100
|
+
case 4:
|
101
|
+
return bb.read();
|
102
|
+
case 5: {
|
103
|
+
let count = bb.read32();
|
104
|
+
let value2 = [];
|
105
|
+
for (let i = 0; i < count; i++) {
|
106
|
+
value2.push(visit());
|
107
|
+
}
|
108
|
+
return value2;
|
109
|
+
}
|
110
|
+
case 6: {
|
111
|
+
let count = bb.read32();
|
112
|
+
let value2 = {};
|
113
|
+
for (let i = 0; i < count; i++) {
|
114
|
+
value2[decodeUTF8(bb.read())] = visit();
|
115
|
+
}
|
116
|
+
return value2;
|
117
|
+
}
|
118
|
+
default:
|
119
|
+
throw new Error("Invalid packet");
|
120
|
+
}
|
121
|
+
};
|
122
|
+
let bb = new ByteBuffer(bytes);
|
123
|
+
let id = bb.read32();
|
124
|
+
let isRequest = (id & 1) === 0;
|
125
|
+
id >>>= 1;
|
126
|
+
let value = visit();
|
127
|
+
if (bb.ptr !== bytes.length) {
|
128
|
+
throw new Error("Invalid packet");
|
129
|
+
}
|
130
|
+
return { id, isRequest, value };
|
131
|
+
}
|
132
|
+
var ByteBuffer = class {
|
133
|
+
constructor(buf = new Uint8Array(1024)) {
|
134
|
+
this.buf = buf;
|
135
|
+
this.len = 0;
|
136
|
+
this.ptr = 0;
|
137
|
+
}
|
138
|
+
_write(delta) {
|
139
|
+
if (this.len + delta > this.buf.length) {
|
140
|
+
let clone = new Uint8Array((this.len + delta) * 2);
|
141
|
+
clone.set(this.buf);
|
142
|
+
this.buf = clone;
|
143
|
+
}
|
144
|
+
this.len += delta;
|
145
|
+
return this.len - delta;
|
146
|
+
}
|
147
|
+
write8(value) {
|
148
|
+
let offset = this._write(1);
|
149
|
+
this.buf[offset] = value;
|
150
|
+
}
|
151
|
+
write32(value) {
|
152
|
+
let offset = this._write(4);
|
153
|
+
writeUInt32LE(this.buf, value, offset);
|
154
|
+
}
|
155
|
+
write(bytes) {
|
156
|
+
let offset = this._write(4 + bytes.length);
|
157
|
+
writeUInt32LE(this.buf, bytes.length, offset);
|
158
|
+
this.buf.set(bytes, offset + 4);
|
159
|
+
}
|
160
|
+
_read(delta) {
|
161
|
+
if (this.ptr + delta > this.buf.length) {
|
162
|
+
throw new Error("Invalid packet");
|
163
|
+
}
|
164
|
+
this.ptr += delta;
|
165
|
+
return this.ptr - delta;
|
166
|
+
}
|
167
|
+
read8() {
|
168
|
+
return this.buf[this._read(1)];
|
169
|
+
}
|
170
|
+
read32() {
|
171
|
+
return readUInt32LE(this.buf, this._read(4));
|
172
|
+
}
|
173
|
+
read() {
|
174
|
+
let length = this.read32();
|
175
|
+
let bytes = new Uint8Array(length);
|
176
|
+
let ptr = this._read(bytes.length);
|
177
|
+
bytes.set(this.buf.subarray(ptr, ptr + length));
|
178
|
+
return bytes;
|
179
|
+
}
|
180
|
+
};
|
181
|
+
var encodeUTF8;
|
182
|
+
var decodeUTF8;
|
183
|
+
var encodeInvariant;
|
184
|
+
if (typeof TextEncoder !== "undefined" && typeof TextDecoder !== "undefined") {
|
185
|
+
let encoder = new TextEncoder();
|
186
|
+
let decoder = new TextDecoder();
|
187
|
+
encodeUTF8 = (text) => encoder.encode(text);
|
188
|
+
decodeUTF8 = (bytes) => decoder.decode(bytes);
|
189
|
+
encodeInvariant = 'new TextEncoder().encode("")';
|
190
|
+
} else if (typeof Buffer !== "undefined") {
|
191
|
+
encodeUTF8 = (text) => Buffer.from(text);
|
192
|
+
decodeUTF8 = (bytes) => {
|
193
|
+
let { buffer, byteOffset, byteLength } = bytes;
|
194
|
+
return Buffer.from(buffer, byteOffset, byteLength).toString();
|
195
|
+
};
|
196
|
+
encodeInvariant = 'Buffer.from("")';
|
197
|
+
} else {
|
198
|
+
throw new Error("No UTF-8 codec found");
|
199
|
+
}
|
200
|
+
if (!(encodeUTF8("") instanceof Uint8Array))
|
201
|
+
throw new Error(`Invariant violation: "${encodeInvariant} instanceof Uint8Array" is incorrectly false
|
202
|
+
|
203
|
+
This indicates that your JavaScript environment is broken. You cannot use
|
204
|
+
esbuild in this environment because esbuild relies on this invariant. This
|
205
|
+
is not a problem with esbuild. You need to fix your environment instead.
|
206
|
+
`);
|
207
|
+
function readUInt32LE(buffer, offset) {
|
208
|
+
return buffer[offset++] | buffer[offset++] << 8 | buffer[offset++] << 16 | buffer[offset++] << 24;
|
209
|
+
}
|
210
|
+
function writeUInt32LE(buffer, value, offset) {
|
211
|
+
buffer[offset++] = value;
|
212
|
+
buffer[offset++] = value >> 8;
|
213
|
+
buffer[offset++] = value >> 16;
|
214
|
+
buffer[offset++] = value >> 24;
|
215
|
+
}
|
216
|
+
|
217
|
+
// lib/shared/common.ts
|
218
|
+
var quote = JSON.stringify;
|
219
|
+
var buildLogLevelDefault = "warning";
|
220
|
+
var transformLogLevelDefault = "silent";
|
221
|
+
function validateAndJoinStringArray(values, what) {
|
222
|
+
const toJoin = [];
|
223
|
+
for (const value of values) {
|
224
|
+
validateStringValue(value, what);
|
225
|
+
if (value.indexOf(",") >= 0) throw new Error(`Invalid ${what}: ${value}`);
|
226
|
+
toJoin.push(value);
|
227
|
+
}
|
228
|
+
return toJoin.join(",");
|
229
|
+
}
|
230
|
+
var canBeAnything = () => null;
|
231
|
+
var mustBeBoolean = (value) => typeof value === "boolean" ? null : "a boolean";
|
232
|
+
var mustBeString = (value) => typeof value === "string" ? null : "a string";
|
233
|
+
var mustBeRegExp = (value) => value instanceof RegExp ? null : "a RegExp object";
|
234
|
+
var mustBeInteger = (value) => typeof value === "number" && value === (value | 0) ? null : "an integer";
|
235
|
+
var mustBeValidPortNumber = (value) => typeof value === "number" && value === (value | 0) && value >= 0 && value <= 65535 ? null : "a valid port number";
|
236
|
+
var mustBeFunction = (value) => typeof value === "function" ? null : "a function";
|
237
|
+
var mustBeArray = (value) => Array.isArray(value) ? null : "an array";
|
238
|
+
var mustBeArrayOfStrings = (value) => Array.isArray(value) && value.every((x) => typeof x === "string") ? null : "an array of strings";
|
239
|
+
var mustBeObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value) ? null : "an object";
|
240
|
+
var mustBeEntryPoints = (value) => typeof value === "object" && value !== null ? null : "an array or an object";
|
241
|
+
var mustBeWebAssemblyModule = (value) => value instanceof WebAssembly.Module ? null : "a WebAssembly.Module";
|
242
|
+
var mustBeObjectOrNull = (value) => typeof value === "object" && !Array.isArray(value) ? null : "an object or null";
|
243
|
+
var mustBeStringOrBoolean = (value) => typeof value === "string" || typeof value === "boolean" ? null : "a string or a boolean";
|
244
|
+
var mustBeStringOrObject = (value) => typeof value === "string" || typeof value === "object" && value !== null && !Array.isArray(value) ? null : "a string or an object";
|
245
|
+
var mustBeStringOrArrayOfStrings = (value) => typeof value === "string" || Array.isArray(value) && value.every((x) => typeof x === "string") ? null : "a string or an array of strings";
|
246
|
+
var mustBeStringOrUint8Array = (value) => typeof value === "string" || value instanceof Uint8Array ? null : "a string or a Uint8Array";
|
247
|
+
var mustBeStringOrURL = (value) => typeof value === "string" || value instanceof URL ? null : "a string or a URL";
|
248
|
+
function getFlag(object, keys, key, mustBeFn) {
|
249
|
+
let value = object[key];
|
250
|
+
keys[key + ""] = true;
|
251
|
+
if (value === void 0) return void 0;
|
252
|
+
let mustBe = mustBeFn(value);
|
253
|
+
if (mustBe !== null) throw new Error(`${quote(key)} must be ${mustBe}`);
|
254
|
+
return value;
|
255
|
+
}
|
256
|
+
function checkForInvalidFlags(object, keys, where) {
|
257
|
+
for (let key in object) {
|
258
|
+
if (!(key in keys)) {
|
259
|
+
throw new Error(`Invalid option ${where}: ${quote(key)}`);
|
260
|
+
}
|
261
|
+
}
|
262
|
+
}
|
263
|
+
function validateInitializeOptions(options) {
|
264
|
+
let keys = /* @__PURE__ */ Object.create(null);
|
265
|
+
let wasmURL = getFlag(options, keys, "wasmURL", mustBeStringOrURL);
|
266
|
+
let wasmModule = getFlag(options, keys, "wasmModule", mustBeWebAssemblyModule);
|
267
|
+
let worker = getFlag(options, keys, "worker", mustBeBoolean);
|
268
|
+
checkForInvalidFlags(options, keys, "in initialize() call");
|
269
|
+
return {
|
270
|
+
wasmURL,
|
271
|
+
wasmModule,
|
272
|
+
worker
|
273
|
+
};
|
274
|
+
}
|
275
|
+
function validateMangleCache(mangleCache) {
|
276
|
+
let validated;
|
277
|
+
if (mangleCache !== void 0) {
|
278
|
+
validated = /* @__PURE__ */ Object.create(null);
|
279
|
+
for (let key in mangleCache) {
|
280
|
+
let value = mangleCache[key];
|
281
|
+
if (typeof value === "string" || value === false) {
|
282
|
+
validated[key] = value;
|
283
|
+
} else {
|
284
|
+
throw new Error(`Expected ${quote(key)} in mangle cache to map to either a string or false`);
|
285
|
+
}
|
286
|
+
}
|
287
|
+
}
|
288
|
+
return validated;
|
289
|
+
}
|
290
|
+
function pushLogFlags(flags, options, keys, isTTY2, logLevelDefault) {
|
291
|
+
let color = getFlag(options, keys, "color", mustBeBoolean);
|
292
|
+
let logLevel = getFlag(options, keys, "logLevel", mustBeString);
|
293
|
+
let logLimit = getFlag(options, keys, "logLimit", mustBeInteger);
|
294
|
+
if (color !== void 0) flags.push(`--color=${color}`);
|
295
|
+
else if (isTTY2) flags.push(`--color=true`);
|
296
|
+
flags.push(`--log-level=${logLevel || logLevelDefault}`);
|
297
|
+
flags.push(`--log-limit=${logLimit || 0}`);
|
298
|
+
}
|
299
|
+
function validateStringValue(value, what, key) {
|
300
|
+
if (typeof value !== "string") {
|
301
|
+
throw new Error(`Expected value for ${what}${key !== void 0 ? " " + quote(key) : ""} to be a string, got ${typeof value} instead`);
|
302
|
+
}
|
303
|
+
return value;
|
304
|
+
}
|
305
|
+
function pushCommonFlags(flags, options, keys) {
|
306
|
+
let legalComments = getFlag(options, keys, "legalComments", mustBeString);
|
307
|
+
let sourceRoot = getFlag(options, keys, "sourceRoot", mustBeString);
|
308
|
+
let sourcesContent = getFlag(options, keys, "sourcesContent", mustBeBoolean);
|
309
|
+
let target = getFlag(options, keys, "target", mustBeStringOrArrayOfStrings);
|
310
|
+
let format = getFlag(options, keys, "format", mustBeString);
|
311
|
+
let globalName = getFlag(options, keys, "globalName", mustBeString);
|
312
|
+
let mangleProps = getFlag(options, keys, "mangleProps", mustBeRegExp);
|
313
|
+
let reserveProps = getFlag(options, keys, "reserveProps", mustBeRegExp);
|
314
|
+
let mangleQuoted = getFlag(options, keys, "mangleQuoted", mustBeBoolean);
|
315
|
+
let minify = getFlag(options, keys, "minify", mustBeBoolean);
|
316
|
+
let minifySyntax = getFlag(options, keys, "minifySyntax", mustBeBoolean);
|
317
|
+
let minifyWhitespace = getFlag(options, keys, "minifyWhitespace", mustBeBoolean);
|
318
|
+
let minifyIdentifiers = getFlag(options, keys, "minifyIdentifiers", mustBeBoolean);
|
319
|
+
let lineLimit = getFlag(options, keys, "lineLimit", mustBeInteger);
|
320
|
+
let drop = getFlag(options, keys, "drop", mustBeArrayOfStrings);
|
321
|
+
let dropLabels = getFlag(options, keys, "dropLabels", mustBeArrayOfStrings);
|
322
|
+
let charset = getFlag(options, keys, "charset", mustBeString);
|
323
|
+
let treeShaking = getFlag(options, keys, "treeShaking", mustBeBoolean);
|
324
|
+
let ignoreAnnotations = getFlag(options, keys, "ignoreAnnotations", mustBeBoolean);
|
325
|
+
let jsx = getFlag(options, keys, "jsx", mustBeString);
|
326
|
+
let jsxFactory = getFlag(options, keys, "jsxFactory", mustBeString);
|
327
|
+
let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
|
328
|
+
let jsxImportSource = getFlag(options, keys, "jsxImportSource", mustBeString);
|
329
|
+
let jsxDev = getFlag(options, keys, "jsxDev", mustBeBoolean);
|
330
|
+
let jsxSideEffects = getFlag(options, keys, "jsxSideEffects", mustBeBoolean);
|
331
|
+
let define = getFlag(options, keys, "define", mustBeObject);
|
332
|
+
let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
|
333
|
+
let supported = getFlag(options, keys, "supported", mustBeObject);
|
334
|
+
let pure = getFlag(options, keys, "pure", mustBeArrayOfStrings);
|
335
|
+
let keepNames = getFlag(options, keys, "keepNames", mustBeBoolean);
|
336
|
+
let platform = getFlag(options, keys, "platform", mustBeString);
|
337
|
+
let tsconfigRaw = getFlag(options, keys, "tsconfigRaw", mustBeStringOrObject);
|
338
|
+
let absPaths = getFlag(options, keys, "absPaths", mustBeArrayOfStrings);
|
339
|
+
if (legalComments) flags.push(`--legal-comments=${legalComments}`);
|
340
|
+
if (sourceRoot !== void 0) flags.push(`--source-root=${sourceRoot}`);
|
341
|
+
if (sourcesContent !== void 0) flags.push(`--sources-content=${sourcesContent}`);
|
342
|
+
if (target) flags.push(`--target=${validateAndJoinStringArray(Array.isArray(target) ? target : [target], "target")}`);
|
343
|
+
if (format) flags.push(`--format=${format}`);
|
344
|
+
if (globalName) flags.push(`--global-name=${globalName}`);
|
345
|
+
if (platform) flags.push(`--platform=${platform}`);
|
346
|
+
if (tsconfigRaw) flags.push(`--tsconfig-raw=${typeof tsconfigRaw === "string" ? tsconfigRaw : JSON.stringify(tsconfigRaw)}`);
|
347
|
+
if (minify) flags.push("--minify");
|
348
|
+
if (minifySyntax) flags.push("--minify-syntax");
|
349
|
+
if (minifyWhitespace) flags.push("--minify-whitespace");
|
350
|
+
if (minifyIdentifiers) flags.push("--minify-identifiers");
|
351
|
+
if (lineLimit) flags.push(`--line-limit=${lineLimit}`);
|
352
|
+
if (charset) flags.push(`--charset=${charset}`);
|
353
|
+
if (treeShaking !== void 0) flags.push(`--tree-shaking=${treeShaking}`);
|
354
|
+
if (ignoreAnnotations) flags.push(`--ignore-annotations`);
|
355
|
+
if (drop) for (let what of drop) flags.push(`--drop:${validateStringValue(what, "drop")}`);
|
356
|
+
if (dropLabels) flags.push(`--drop-labels=${validateAndJoinStringArray(dropLabels, "drop label")}`);
|
357
|
+
if (absPaths) flags.push(`--abs-paths=${validateAndJoinStringArray(absPaths, "abs paths")}`);
|
358
|
+
if (mangleProps) flags.push(`--mangle-props=${jsRegExpToGoRegExp(mangleProps)}`);
|
359
|
+
if (reserveProps) flags.push(`--reserve-props=${jsRegExpToGoRegExp(reserveProps)}`);
|
360
|
+
if (mangleQuoted !== void 0) flags.push(`--mangle-quoted=${mangleQuoted}`);
|
361
|
+
if (jsx) flags.push(`--jsx=${jsx}`);
|
362
|
+
if (jsxFactory) flags.push(`--jsx-factory=${jsxFactory}`);
|
363
|
+
if (jsxFragment) flags.push(`--jsx-fragment=${jsxFragment}`);
|
364
|
+
if (jsxImportSource) flags.push(`--jsx-import-source=${jsxImportSource}`);
|
365
|
+
if (jsxDev) flags.push(`--jsx-dev`);
|
366
|
+
if (jsxSideEffects) flags.push(`--jsx-side-effects`);
|
367
|
+
if (define) {
|
368
|
+
for (let key in define) {
|
369
|
+
if (key.indexOf("=") >= 0) throw new Error(`Invalid define: ${key}`);
|
370
|
+
flags.push(`--define:${key}=${validateStringValue(define[key], "define", key)}`);
|
371
|
+
}
|
372
|
+
}
|
373
|
+
if (logOverride) {
|
374
|
+
for (let key in logOverride) {
|
375
|
+
if (key.indexOf("=") >= 0) throw new Error(`Invalid log override: ${key}`);
|
376
|
+
flags.push(`--log-override:${key}=${validateStringValue(logOverride[key], "log override", key)}`);
|
377
|
+
}
|
378
|
+
}
|
379
|
+
if (supported) {
|
380
|
+
for (let key in supported) {
|
381
|
+
if (key.indexOf("=") >= 0) throw new Error(`Invalid supported: ${key}`);
|
382
|
+
const value = supported[key];
|
383
|
+
if (typeof value !== "boolean") throw new Error(`Expected value for supported ${quote(key)} to be a boolean, got ${typeof value} instead`);
|
384
|
+
flags.push(`--supported:${key}=${value}`);
|
385
|
+
}
|
386
|
+
}
|
387
|
+
if (pure) for (let fn of pure) flags.push(`--pure:${validateStringValue(fn, "pure")}`);
|
388
|
+
if (keepNames) flags.push(`--keep-names`);
|
389
|
+
}
|
390
|
+
function flagsForBuildOptions(callName, options, isTTY2, logLevelDefault, writeDefault) {
|
391
|
+
var _a2;
|
392
|
+
let flags = [];
|
393
|
+
let entries = [];
|
394
|
+
let keys = /* @__PURE__ */ Object.create(null);
|
395
|
+
let stdinContents = null;
|
396
|
+
let stdinResolveDir = null;
|
397
|
+
pushLogFlags(flags, options, keys, isTTY2, logLevelDefault);
|
398
|
+
pushCommonFlags(flags, options, keys);
|
399
|
+
let sourcemap = getFlag(options, keys, "sourcemap", mustBeStringOrBoolean);
|
400
|
+
let bundle = getFlag(options, keys, "bundle", mustBeBoolean);
|
401
|
+
let splitting = getFlag(options, keys, "splitting", mustBeBoolean);
|
402
|
+
let preserveSymlinks = getFlag(options, keys, "preserveSymlinks", mustBeBoolean);
|
403
|
+
let metafile = getFlag(options, keys, "metafile", mustBeBoolean);
|
404
|
+
let outfile = getFlag(options, keys, "outfile", mustBeString);
|
405
|
+
let outdir = getFlag(options, keys, "outdir", mustBeString);
|
406
|
+
let outbase = getFlag(options, keys, "outbase", mustBeString);
|
407
|
+
let tsconfig = getFlag(options, keys, "tsconfig", mustBeString);
|
408
|
+
let resolveExtensions = getFlag(options, keys, "resolveExtensions", mustBeArrayOfStrings);
|
409
|
+
let nodePathsInput = getFlag(options, keys, "nodePaths", mustBeArrayOfStrings);
|
410
|
+
let mainFields = getFlag(options, keys, "mainFields", mustBeArrayOfStrings);
|
411
|
+
let conditions = getFlag(options, keys, "conditions", mustBeArrayOfStrings);
|
412
|
+
let external = getFlag(options, keys, "external", mustBeArrayOfStrings);
|
413
|
+
let packages = getFlag(options, keys, "packages", mustBeString);
|
414
|
+
let alias = getFlag(options, keys, "alias", mustBeObject);
|
415
|
+
let loader = getFlag(options, keys, "loader", mustBeObject);
|
416
|
+
let outExtension = getFlag(options, keys, "outExtension", mustBeObject);
|
417
|
+
let publicPath = getFlag(options, keys, "publicPath", mustBeString);
|
418
|
+
let entryNames = getFlag(options, keys, "entryNames", mustBeString);
|
419
|
+
let chunkNames = getFlag(options, keys, "chunkNames", mustBeString);
|
420
|
+
let assetNames = getFlag(options, keys, "assetNames", mustBeString);
|
421
|
+
let inject = getFlag(options, keys, "inject", mustBeArrayOfStrings);
|
422
|
+
let banner = getFlag(options, keys, "banner", mustBeObject);
|
423
|
+
let footer = getFlag(options, keys, "footer", mustBeObject);
|
424
|
+
let entryPoints = getFlag(options, keys, "entryPoints", mustBeEntryPoints);
|
425
|
+
let absWorkingDir = getFlag(options, keys, "absWorkingDir", mustBeString);
|
426
|
+
let stdin = getFlag(options, keys, "stdin", mustBeObject);
|
427
|
+
let write = (_a2 = getFlag(options, keys, "write", mustBeBoolean)) != null ? _a2 : writeDefault;
|
428
|
+
let allowOverwrite = getFlag(options, keys, "allowOverwrite", mustBeBoolean);
|
429
|
+
let mangleCache = getFlag(options, keys, "mangleCache", mustBeObject);
|
430
|
+
keys.plugins = true;
|
431
|
+
checkForInvalidFlags(options, keys, `in ${callName}() call`);
|
432
|
+
if (sourcemap) flags.push(`--sourcemap${sourcemap === true ? "" : `=${sourcemap}`}`);
|
433
|
+
if (bundle) flags.push("--bundle");
|
434
|
+
if (allowOverwrite) flags.push("--allow-overwrite");
|
435
|
+
if (splitting) flags.push("--splitting");
|
436
|
+
if (preserveSymlinks) flags.push("--preserve-symlinks");
|
437
|
+
if (metafile) flags.push(`--metafile`);
|
438
|
+
if (outfile) flags.push(`--outfile=${outfile}`);
|
439
|
+
if (outdir) flags.push(`--outdir=${outdir}`);
|
440
|
+
if (outbase) flags.push(`--outbase=${outbase}`);
|
441
|
+
if (tsconfig) flags.push(`--tsconfig=${tsconfig}`);
|
442
|
+
if (packages) flags.push(`--packages=${packages}`);
|
443
|
+
if (resolveExtensions) flags.push(`--resolve-extensions=${validateAndJoinStringArray(resolveExtensions, "resolve extension")}`);
|
444
|
+
if (publicPath) flags.push(`--public-path=${publicPath}`);
|
445
|
+
if (entryNames) flags.push(`--entry-names=${entryNames}`);
|
446
|
+
if (chunkNames) flags.push(`--chunk-names=${chunkNames}`);
|
447
|
+
if (assetNames) flags.push(`--asset-names=${assetNames}`);
|
448
|
+
if (mainFields) flags.push(`--main-fields=${validateAndJoinStringArray(mainFields, "main field")}`);
|
449
|
+
if (conditions) flags.push(`--conditions=${validateAndJoinStringArray(conditions, "condition")}`);
|
450
|
+
if (external) for (let name of external) flags.push(`--external:${validateStringValue(name, "external")}`);
|
451
|
+
if (alias) {
|
452
|
+
for (let old in alias) {
|
453
|
+
if (old.indexOf("=") >= 0) throw new Error(`Invalid package name in alias: ${old}`);
|
454
|
+
flags.push(`--alias:${old}=${validateStringValue(alias[old], "alias", old)}`);
|
455
|
+
}
|
456
|
+
}
|
457
|
+
if (banner) {
|
458
|
+
for (let type in banner) {
|
459
|
+
if (type.indexOf("=") >= 0) throw new Error(`Invalid banner file type: ${type}`);
|
460
|
+
flags.push(`--banner:${type}=${validateStringValue(banner[type], "banner", type)}`);
|
461
|
+
}
|
462
|
+
}
|
463
|
+
if (footer) {
|
464
|
+
for (let type in footer) {
|
465
|
+
if (type.indexOf("=") >= 0) throw new Error(`Invalid footer file type: ${type}`);
|
466
|
+
flags.push(`--footer:${type}=${validateStringValue(footer[type], "footer", type)}`);
|
467
|
+
}
|
468
|
+
}
|
469
|
+
if (inject) for (let path3 of inject) flags.push(`--inject:${validateStringValue(path3, "inject")}`);
|
470
|
+
if (loader) {
|
471
|
+
for (let ext in loader) {
|
472
|
+
if (ext.indexOf("=") >= 0) throw new Error(`Invalid loader extension: ${ext}`);
|
473
|
+
flags.push(`--loader:${ext}=${validateStringValue(loader[ext], "loader", ext)}`);
|
474
|
+
}
|
475
|
+
}
|
476
|
+
if (outExtension) {
|
477
|
+
for (let ext in outExtension) {
|
478
|
+
if (ext.indexOf("=") >= 0) throw new Error(`Invalid out extension: ${ext}`);
|
479
|
+
flags.push(`--out-extension:${ext}=${validateStringValue(outExtension[ext], "out extension", ext)}`);
|
480
|
+
}
|
481
|
+
}
|
482
|
+
if (entryPoints) {
|
483
|
+
if (Array.isArray(entryPoints)) {
|
484
|
+
for (let i = 0, n = entryPoints.length; i < n; i++) {
|
485
|
+
let entryPoint = entryPoints[i];
|
486
|
+
if (typeof entryPoint === "object" && entryPoint !== null) {
|
487
|
+
let entryPointKeys = /* @__PURE__ */ Object.create(null);
|
488
|
+
let input = getFlag(entryPoint, entryPointKeys, "in", mustBeString);
|
489
|
+
let output = getFlag(entryPoint, entryPointKeys, "out", mustBeString);
|
490
|
+
checkForInvalidFlags(entryPoint, entryPointKeys, "in entry point at index " + i);
|
491
|
+
if (input === void 0) throw new Error('Missing property "in" for entry point at index ' + i);
|
492
|
+
if (output === void 0) throw new Error('Missing property "out" for entry point at index ' + i);
|
493
|
+
entries.push([output, input]);
|
494
|
+
} else {
|
495
|
+
entries.push(["", validateStringValue(entryPoint, "entry point at index " + i)]);
|
496
|
+
}
|
497
|
+
}
|
498
|
+
} else {
|
499
|
+
for (let key in entryPoints) {
|
500
|
+
entries.push([key, validateStringValue(entryPoints[key], "entry point", key)]);
|
501
|
+
}
|
502
|
+
}
|
503
|
+
}
|
504
|
+
if (stdin) {
|
505
|
+
let stdinKeys = /* @__PURE__ */ Object.create(null);
|
506
|
+
let contents = getFlag(stdin, stdinKeys, "contents", mustBeStringOrUint8Array);
|
507
|
+
let resolveDir = getFlag(stdin, stdinKeys, "resolveDir", mustBeString);
|
508
|
+
let sourcefile = getFlag(stdin, stdinKeys, "sourcefile", mustBeString);
|
509
|
+
let loader2 = getFlag(stdin, stdinKeys, "loader", mustBeString);
|
510
|
+
checkForInvalidFlags(stdin, stdinKeys, 'in "stdin" object');
|
511
|
+
if (sourcefile) flags.push(`--sourcefile=${sourcefile}`);
|
512
|
+
if (loader2) flags.push(`--loader=${loader2}`);
|
513
|
+
if (resolveDir) stdinResolveDir = resolveDir;
|
514
|
+
if (typeof contents === "string") stdinContents = encodeUTF8(contents);
|
515
|
+
else if (contents instanceof Uint8Array) stdinContents = contents;
|
516
|
+
}
|
517
|
+
let nodePaths = [];
|
518
|
+
if (nodePathsInput) {
|
519
|
+
for (let value of nodePathsInput) {
|
520
|
+
value += "";
|
521
|
+
nodePaths.push(value);
|
522
|
+
}
|
523
|
+
}
|
524
|
+
return {
|
525
|
+
entries,
|
526
|
+
flags,
|
527
|
+
write,
|
528
|
+
stdinContents,
|
529
|
+
stdinResolveDir,
|
530
|
+
absWorkingDir,
|
531
|
+
nodePaths,
|
532
|
+
mangleCache: validateMangleCache(mangleCache)
|
533
|
+
};
|
534
|
+
}
|
535
|
+
function flagsForTransformOptions(callName, options, isTTY2, logLevelDefault) {
|
536
|
+
let flags = [];
|
537
|
+
let keys = /* @__PURE__ */ Object.create(null);
|
538
|
+
pushLogFlags(flags, options, keys, isTTY2, logLevelDefault);
|
539
|
+
pushCommonFlags(flags, options, keys);
|
540
|
+
let sourcemap = getFlag(options, keys, "sourcemap", mustBeStringOrBoolean);
|
541
|
+
let sourcefile = getFlag(options, keys, "sourcefile", mustBeString);
|
542
|
+
let loader = getFlag(options, keys, "loader", mustBeString);
|
543
|
+
let banner = getFlag(options, keys, "banner", mustBeString);
|
544
|
+
let footer = getFlag(options, keys, "footer", mustBeString);
|
545
|
+
let mangleCache = getFlag(options, keys, "mangleCache", mustBeObject);
|
546
|
+
checkForInvalidFlags(options, keys, `in ${callName}() call`);
|
547
|
+
if (sourcemap) flags.push(`--sourcemap=${sourcemap === true ? "external" : sourcemap}`);
|
548
|
+
if (sourcefile) flags.push(`--sourcefile=${sourcefile}`);
|
549
|
+
if (loader) flags.push(`--loader=${loader}`);
|
550
|
+
if (banner) flags.push(`--banner=${banner}`);
|
551
|
+
if (footer) flags.push(`--footer=${footer}`);
|
552
|
+
return {
|
553
|
+
flags,
|
554
|
+
mangleCache: validateMangleCache(mangleCache)
|
555
|
+
};
|
556
|
+
}
|
557
|
+
function createChannel(streamIn) {
|
558
|
+
const requestCallbacksByKey = {};
|
559
|
+
const closeData = { didClose: false, reason: "" };
|
560
|
+
let responseCallbacks = {};
|
561
|
+
let nextRequestID = 0;
|
562
|
+
let nextBuildKey = 0;
|
563
|
+
let stdout = new Uint8Array(16 * 1024);
|
564
|
+
let stdoutUsed = 0;
|
565
|
+
let readFromStdout = (chunk) => {
|
566
|
+
let limit = stdoutUsed + chunk.length;
|
567
|
+
if (limit > stdout.length) {
|
568
|
+
let swap = new Uint8Array(limit * 2);
|
569
|
+
swap.set(stdout);
|
570
|
+
stdout = swap;
|
571
|
+
}
|
572
|
+
stdout.set(chunk, stdoutUsed);
|
573
|
+
stdoutUsed += chunk.length;
|
574
|
+
let offset = 0;
|
575
|
+
while (offset + 4 <= stdoutUsed) {
|
576
|
+
let length = readUInt32LE(stdout, offset);
|
577
|
+
if (offset + 4 + length > stdoutUsed) {
|
578
|
+
break;
|
579
|
+
}
|
580
|
+
offset += 4;
|
581
|
+
handleIncomingPacket(stdout.subarray(offset, offset + length));
|
582
|
+
offset += length;
|
583
|
+
}
|
584
|
+
if (offset > 0) {
|
585
|
+
stdout.copyWithin(0, offset, stdoutUsed);
|
586
|
+
stdoutUsed -= offset;
|
587
|
+
}
|
588
|
+
};
|
589
|
+
let afterClose = (error) => {
|
590
|
+
closeData.didClose = true;
|
591
|
+
if (error) closeData.reason = ": " + (error.message || error);
|
592
|
+
const text = "The service was stopped" + closeData.reason;
|
593
|
+
for (let id in responseCallbacks) {
|
594
|
+
responseCallbacks[id](text, null);
|
595
|
+
}
|
596
|
+
responseCallbacks = {};
|
597
|
+
};
|
598
|
+
let sendRequest = (refs, value, callback) => {
|
599
|
+
if (closeData.didClose) return callback("The service is no longer running" + closeData.reason, null);
|
600
|
+
let id = nextRequestID++;
|
601
|
+
responseCallbacks[id] = (error, response) => {
|
602
|
+
try {
|
603
|
+
callback(error, response);
|
604
|
+
} finally {
|
605
|
+
if (refs) refs.unref();
|
606
|
+
}
|
607
|
+
};
|
608
|
+
if (refs) refs.ref();
|
609
|
+
streamIn.writeToStdin(encodePacket({ id, isRequest: true, value }));
|
610
|
+
};
|
611
|
+
let sendResponse = (id, value) => {
|
612
|
+
if (closeData.didClose) throw new Error("The service is no longer running" + closeData.reason);
|
613
|
+
streamIn.writeToStdin(encodePacket({ id, isRequest: false, value }));
|
614
|
+
};
|
615
|
+
let handleRequest = async (id, request) => {
|
616
|
+
try {
|
617
|
+
if (request.command === "ping") {
|
618
|
+
sendResponse(id, {});
|
619
|
+
return;
|
620
|
+
}
|
621
|
+
if (typeof request.key === "number") {
|
622
|
+
const requestCallbacks = requestCallbacksByKey[request.key];
|
623
|
+
if (!requestCallbacks) {
|
624
|
+
return;
|
625
|
+
}
|
626
|
+
const callback = requestCallbacks[request.command];
|
627
|
+
if (callback) {
|
628
|
+
await callback(id, request);
|
629
|
+
return;
|
630
|
+
}
|
631
|
+
}
|
632
|
+
throw new Error(`Invalid command: ` + request.command);
|
633
|
+
} catch (e) {
|
634
|
+
const errors = [extractErrorMessageV8(e, streamIn, null, void 0, "")];
|
635
|
+
try {
|
636
|
+
sendResponse(id, { errors });
|
637
|
+
} catch {
|
638
|
+
}
|
639
|
+
}
|
640
|
+
};
|
641
|
+
let isFirstPacket = true;
|
642
|
+
let handleIncomingPacket = (bytes) => {
|
643
|
+
if (isFirstPacket) {
|
644
|
+
isFirstPacket = false;
|
645
|
+
let binaryVersion = String.fromCharCode(...bytes);
|
646
|
+
if (binaryVersion !== "0.25.9") {
|
647
|
+
throw new Error(`Cannot start service: Host version "${"0.25.9"}" does not match binary version ${quote(binaryVersion)}`);
|
648
|
+
}
|
649
|
+
return;
|
650
|
+
}
|
651
|
+
let packet = decodePacket(bytes);
|
652
|
+
if (packet.isRequest) {
|
653
|
+
handleRequest(packet.id, packet.value);
|
654
|
+
} else {
|
655
|
+
let callback = responseCallbacks[packet.id];
|
656
|
+
delete responseCallbacks[packet.id];
|
657
|
+
if (packet.value.error) callback(packet.value.error, {});
|
658
|
+
else callback(null, packet.value);
|
659
|
+
}
|
660
|
+
};
|
661
|
+
let buildOrContext = ({ callName, refs, options, isTTY: isTTY2, defaultWD: defaultWD2, callback }) => {
|
662
|
+
let refCount = 0;
|
663
|
+
const buildKey = nextBuildKey++;
|
664
|
+
const requestCallbacks = {};
|
665
|
+
const buildRefs = {
|
666
|
+
ref() {
|
667
|
+
if (++refCount === 1) {
|
668
|
+
if (refs) refs.ref();
|
669
|
+
}
|
670
|
+
},
|
671
|
+
unref() {
|
672
|
+
if (--refCount === 0) {
|
673
|
+
delete requestCallbacksByKey[buildKey];
|
674
|
+
if (refs) refs.unref();
|
675
|
+
}
|
676
|
+
}
|
677
|
+
};
|
678
|
+
requestCallbacksByKey[buildKey] = requestCallbacks;
|
679
|
+
buildRefs.ref();
|
680
|
+
buildOrContextImpl(
|
681
|
+
callName,
|
682
|
+
buildKey,
|
683
|
+
sendRequest,
|
684
|
+
sendResponse,
|
685
|
+
buildRefs,
|
686
|
+
streamIn,
|
687
|
+
requestCallbacks,
|
688
|
+
options,
|
689
|
+
isTTY2,
|
690
|
+
defaultWD2,
|
691
|
+
(err, res) => {
|
692
|
+
try {
|
693
|
+
callback(err, res);
|
694
|
+
} finally {
|
695
|
+
buildRefs.unref();
|
696
|
+
}
|
697
|
+
}
|
698
|
+
);
|
699
|
+
};
|
700
|
+
let transform2 = ({ callName, refs, input, options, isTTY: isTTY2, fs: fs3, callback }) => {
|
701
|
+
const details = createObjectStash();
|
702
|
+
let start = (inputPath) => {
|
703
|
+
try {
|
704
|
+
if (typeof input !== "string" && !(input instanceof Uint8Array))
|
705
|
+
throw new Error('The input to "transform" must be a string or a Uint8Array');
|
706
|
+
let {
|
707
|
+
flags,
|
708
|
+
mangleCache
|
709
|
+
} = flagsForTransformOptions(callName, options, isTTY2, transformLogLevelDefault);
|
710
|
+
let request = {
|
711
|
+
command: "transform",
|
712
|
+
flags,
|
713
|
+
inputFS: inputPath !== null,
|
714
|
+
input: inputPath !== null ? encodeUTF8(inputPath) : typeof input === "string" ? encodeUTF8(input) : input
|
715
|
+
};
|
716
|
+
if (mangleCache) request.mangleCache = mangleCache;
|
717
|
+
sendRequest(refs, request, (error, response) => {
|
718
|
+
if (error) return callback(new Error(error), null);
|
719
|
+
let errors = replaceDetailsInMessages(response.errors, details);
|
720
|
+
let warnings = replaceDetailsInMessages(response.warnings, details);
|
721
|
+
let outstanding = 1;
|
722
|
+
let next = () => {
|
723
|
+
if (--outstanding === 0) {
|
724
|
+
let result = {
|
725
|
+
warnings,
|
726
|
+
code: response.code,
|
727
|
+
map: response.map,
|
728
|
+
mangleCache: void 0,
|
729
|
+
legalComments: void 0
|
730
|
+
};
|
731
|
+
if ("legalComments" in response) result.legalComments = response == null ? void 0 : response.legalComments;
|
732
|
+
if (response.mangleCache) result.mangleCache = response == null ? void 0 : response.mangleCache;
|
733
|
+
callback(null, result);
|
734
|
+
}
|
735
|
+
};
|
736
|
+
if (errors.length > 0) return callback(failureErrorWithLog("Transform failed", errors, warnings), null);
|
737
|
+
if (response.codeFS) {
|
738
|
+
outstanding++;
|
739
|
+
fs3.readFile(response.code, (err, contents) => {
|
740
|
+
if (err !== null) {
|
741
|
+
callback(err, null);
|
742
|
+
} else {
|
743
|
+
response.code = contents;
|
744
|
+
next();
|
745
|
+
}
|
746
|
+
});
|
747
|
+
}
|
748
|
+
if (response.mapFS) {
|
749
|
+
outstanding++;
|
750
|
+
fs3.readFile(response.map, (err, contents) => {
|
751
|
+
if (err !== null) {
|
752
|
+
callback(err, null);
|
753
|
+
} else {
|
754
|
+
response.map = contents;
|
755
|
+
next();
|
756
|
+
}
|
757
|
+
});
|
758
|
+
}
|
759
|
+
next();
|
760
|
+
});
|
761
|
+
} catch (e) {
|
762
|
+
let flags = [];
|
763
|
+
try {
|
764
|
+
pushLogFlags(flags, options, {}, isTTY2, transformLogLevelDefault);
|
765
|
+
} catch {
|
766
|
+
}
|
767
|
+
const error = extractErrorMessageV8(e, streamIn, details, void 0, "");
|
768
|
+
sendRequest(refs, { command: "error", flags, error }, () => {
|
769
|
+
error.detail = details.load(error.detail);
|
770
|
+
callback(failureErrorWithLog("Transform failed", [error], []), null);
|
771
|
+
});
|
772
|
+
}
|
773
|
+
};
|
774
|
+
if ((typeof input === "string" || input instanceof Uint8Array) && input.length > 1024 * 1024) {
|
775
|
+
let next = start;
|
776
|
+
start = () => fs3.writeFile(input, next);
|
777
|
+
}
|
778
|
+
start(null);
|
779
|
+
};
|
780
|
+
let formatMessages2 = ({ callName, refs, messages, options, callback }) => {
|
781
|
+
if (!options) throw new Error(`Missing second argument in ${callName}() call`);
|
782
|
+
let keys = {};
|
783
|
+
let kind = getFlag(options, keys, "kind", mustBeString);
|
784
|
+
let color = getFlag(options, keys, "color", mustBeBoolean);
|
785
|
+
let terminalWidth = getFlag(options, keys, "terminalWidth", mustBeInteger);
|
786
|
+
checkForInvalidFlags(options, keys, `in ${callName}() call`);
|
787
|
+
if (kind === void 0) throw new Error(`Missing "kind" in ${callName}() call`);
|
788
|
+
if (kind !== "error" && kind !== "warning") throw new Error(`Expected "kind" to be "error" or "warning" in ${callName}() call`);
|
789
|
+
let request = {
|
790
|
+
command: "format-msgs",
|
791
|
+
messages: sanitizeMessages(messages, "messages", null, "", terminalWidth),
|
792
|
+
isWarning: kind === "warning"
|
793
|
+
};
|
794
|
+
if (color !== void 0) request.color = color;
|
795
|
+
if (terminalWidth !== void 0) request.terminalWidth = terminalWidth;
|
796
|
+
sendRequest(refs, request, (error, response) => {
|
797
|
+
if (error) return callback(new Error(error), null);
|
798
|
+
callback(null, response.messages);
|
799
|
+
});
|
800
|
+
};
|
801
|
+
let analyzeMetafile2 = ({ callName, refs, metafile, options, callback }) => {
|
802
|
+
if (options === void 0) options = {};
|
803
|
+
let keys = {};
|
804
|
+
let color = getFlag(options, keys, "color", mustBeBoolean);
|
805
|
+
let verbose = getFlag(options, keys, "verbose", mustBeBoolean);
|
806
|
+
checkForInvalidFlags(options, keys, `in ${callName}() call`);
|
807
|
+
let request = {
|
808
|
+
command: "analyze-metafile",
|
809
|
+
metafile
|
810
|
+
};
|
811
|
+
if (color !== void 0) request.color = color;
|
812
|
+
if (verbose !== void 0) request.verbose = verbose;
|
813
|
+
sendRequest(refs, request, (error, response) => {
|
814
|
+
if (error) return callback(new Error(error), null);
|
815
|
+
callback(null, response.result);
|
816
|
+
});
|
817
|
+
};
|
818
|
+
return {
|
819
|
+
readFromStdout,
|
820
|
+
afterClose,
|
821
|
+
service: {
|
822
|
+
buildOrContext,
|
823
|
+
transform: transform2,
|
824
|
+
formatMessages: formatMessages2,
|
825
|
+
analyzeMetafile: analyzeMetafile2
|
826
|
+
}
|
827
|
+
};
|
828
|
+
}
|
829
|
+
function buildOrContextImpl(callName, buildKey, sendRequest, sendResponse, refs, streamIn, requestCallbacks, options, isTTY2, defaultWD2, callback) {
|
830
|
+
const details = createObjectStash();
|
831
|
+
const isContext = callName === "context";
|
832
|
+
const handleError = (e, pluginName) => {
|
833
|
+
const flags = [];
|
834
|
+
try {
|
835
|
+
pushLogFlags(flags, options, {}, isTTY2, buildLogLevelDefault);
|
836
|
+
} catch {
|
837
|
+
}
|
838
|
+
const message = extractErrorMessageV8(e, streamIn, details, void 0, pluginName);
|
839
|
+
sendRequest(refs, { command: "error", flags, error: message }, () => {
|
840
|
+
message.detail = details.load(message.detail);
|
841
|
+
callback(failureErrorWithLog(isContext ? "Context failed" : "Build failed", [message], []), null);
|
842
|
+
});
|
843
|
+
};
|
844
|
+
let plugins;
|
845
|
+
if (typeof options === "object") {
|
846
|
+
const value = options.plugins;
|
847
|
+
if (value !== void 0) {
|
848
|
+
if (!Array.isArray(value)) return handleError(new Error(`"plugins" must be an array`), "");
|
849
|
+
plugins = value;
|
850
|
+
}
|
851
|
+
}
|
852
|
+
if (plugins && plugins.length > 0) {
|
853
|
+
if (streamIn.isSync) return handleError(new Error("Cannot use plugins in synchronous API calls"), "");
|
854
|
+
handlePlugins(
|
855
|
+
buildKey,
|
856
|
+
sendRequest,
|
857
|
+
sendResponse,
|
858
|
+
refs,
|
859
|
+
streamIn,
|
860
|
+
requestCallbacks,
|
861
|
+
options,
|
862
|
+
plugins,
|
863
|
+
details
|
864
|
+
).then(
|
865
|
+
(result) => {
|
866
|
+
if (!result.ok) return handleError(result.error, result.pluginName);
|
867
|
+
try {
|
868
|
+
buildOrContextContinue(result.requestPlugins, result.runOnEndCallbacks, result.scheduleOnDisposeCallbacks);
|
869
|
+
} catch (e) {
|
870
|
+
handleError(e, "");
|
871
|
+
}
|
872
|
+
},
|
873
|
+
(e) => handleError(e, "")
|
874
|
+
);
|
875
|
+
return;
|
876
|
+
}
|
877
|
+
try {
|
878
|
+
buildOrContextContinue(null, (result, done) => done([], []), () => {
|
879
|
+
});
|
880
|
+
} catch (e) {
|
881
|
+
handleError(e, "");
|
882
|
+
}
|
883
|
+
function buildOrContextContinue(requestPlugins, runOnEndCallbacks, scheduleOnDisposeCallbacks) {
|
884
|
+
const writeDefault = streamIn.hasFS;
|
885
|
+
const {
|
886
|
+
entries,
|
887
|
+
flags,
|
888
|
+
write,
|
889
|
+
stdinContents,
|
890
|
+
stdinResolveDir,
|
891
|
+
absWorkingDir,
|
892
|
+
nodePaths,
|
893
|
+
mangleCache
|
894
|
+
} = flagsForBuildOptions(callName, options, isTTY2, buildLogLevelDefault, writeDefault);
|
895
|
+
if (write && !streamIn.hasFS) throw new Error(`The "write" option is unavailable in this environment`);
|
896
|
+
const request = {
|
897
|
+
command: "build",
|
898
|
+
key: buildKey,
|
899
|
+
entries,
|
900
|
+
flags,
|
901
|
+
write,
|
902
|
+
stdinContents,
|
903
|
+
stdinResolveDir,
|
904
|
+
absWorkingDir: absWorkingDir || defaultWD2,
|
905
|
+
nodePaths,
|
906
|
+
context: isContext
|
907
|
+
};
|
908
|
+
if (requestPlugins) request.plugins = requestPlugins;
|
909
|
+
if (mangleCache) request.mangleCache = mangleCache;
|
910
|
+
const buildResponseToResult = (response, callback2) => {
|
911
|
+
const result = {
|
912
|
+
errors: replaceDetailsInMessages(response.errors, details),
|
913
|
+
warnings: replaceDetailsInMessages(response.warnings, details),
|
914
|
+
outputFiles: void 0,
|
915
|
+
metafile: void 0,
|
916
|
+
mangleCache: void 0
|
917
|
+
};
|
918
|
+
const originalErrors = result.errors.slice();
|
919
|
+
const originalWarnings = result.warnings.slice();
|
920
|
+
if (response.outputFiles) result.outputFiles = response.outputFiles.map(convertOutputFiles);
|
921
|
+
if (response.metafile) result.metafile = JSON.parse(response.metafile);
|
922
|
+
if (response.mangleCache) result.mangleCache = response.mangleCache;
|
923
|
+
if (response.writeToStdout !== void 0) console.log(decodeUTF8(response.writeToStdout).replace(/\n$/, ""));
|
924
|
+
runOnEndCallbacks(result, (onEndErrors, onEndWarnings) => {
|
925
|
+
if (originalErrors.length > 0 || onEndErrors.length > 0) {
|
926
|
+
const error = failureErrorWithLog("Build failed", originalErrors.concat(onEndErrors), originalWarnings.concat(onEndWarnings));
|
927
|
+
return callback2(error, null, onEndErrors, onEndWarnings);
|
928
|
+
}
|
929
|
+
callback2(null, result, onEndErrors, onEndWarnings);
|
930
|
+
});
|
931
|
+
};
|
932
|
+
let latestResultPromise;
|
933
|
+
let provideLatestResult;
|
934
|
+
if (isContext)
|
935
|
+
requestCallbacks["on-end"] = (id, request2) => new Promise((resolve) => {
|
936
|
+
buildResponseToResult(request2, (err, result, onEndErrors, onEndWarnings) => {
|
937
|
+
const response = {
|
938
|
+
errors: onEndErrors,
|
939
|
+
warnings: onEndWarnings
|
940
|
+
};
|
941
|
+
if (provideLatestResult) provideLatestResult(err, result);
|
942
|
+
latestResultPromise = void 0;
|
943
|
+
provideLatestResult = void 0;
|
944
|
+
sendResponse(id, response);
|
945
|
+
resolve();
|
946
|
+
});
|
947
|
+
});
|
948
|
+
sendRequest(refs, request, (error, response) => {
|
949
|
+
if (error) return callback(new Error(error), null);
|
950
|
+
if (!isContext) {
|
951
|
+
return buildResponseToResult(response, (err, res) => {
|
952
|
+
scheduleOnDisposeCallbacks();
|
953
|
+
return callback(err, res);
|
954
|
+
});
|
955
|
+
}
|
956
|
+
if (response.errors.length > 0) {
|
957
|
+
return callback(failureErrorWithLog("Context failed", response.errors, response.warnings), null);
|
958
|
+
}
|
959
|
+
let didDispose = false;
|
960
|
+
const result = {
|
961
|
+
rebuild: () => {
|
962
|
+
if (!latestResultPromise) latestResultPromise = new Promise((resolve, reject) => {
|
963
|
+
let settlePromise;
|
964
|
+
provideLatestResult = (err, result2) => {
|
965
|
+
if (!settlePromise) settlePromise = () => err ? reject(err) : resolve(result2);
|
966
|
+
};
|
967
|
+
const triggerAnotherBuild = () => {
|
968
|
+
const request2 = {
|
969
|
+
command: "rebuild",
|
970
|
+
key: buildKey
|
971
|
+
};
|
972
|
+
sendRequest(refs, request2, (error2, response2) => {
|
973
|
+
if (error2) {
|
974
|
+
reject(new Error(error2));
|
975
|
+
} else if (settlePromise) {
|
976
|
+
settlePromise();
|
977
|
+
} else {
|
978
|
+
triggerAnotherBuild();
|
979
|
+
}
|
980
|
+
});
|
981
|
+
};
|
982
|
+
triggerAnotherBuild();
|
983
|
+
});
|
984
|
+
return latestResultPromise;
|
985
|
+
},
|
986
|
+
watch: (options2 = {}) => new Promise((resolve, reject) => {
|
987
|
+
if (!streamIn.hasFS) throw new Error(`Cannot use the "watch" API in this environment`);
|
988
|
+
const keys = {};
|
989
|
+
const delay = getFlag(options2, keys, "delay", mustBeInteger);
|
990
|
+
checkForInvalidFlags(options2, keys, `in watch() call`);
|
991
|
+
const request2 = {
|
992
|
+
command: "watch",
|
993
|
+
key: buildKey
|
994
|
+
};
|
995
|
+
if (delay) request2.delay = delay;
|
996
|
+
sendRequest(refs, request2, (error2) => {
|
997
|
+
if (error2) reject(new Error(error2));
|
998
|
+
else resolve(void 0);
|
999
|
+
});
|
1000
|
+
}),
|
1001
|
+
serve: (options2 = {}) => new Promise((resolve, reject) => {
|
1002
|
+
if (!streamIn.hasFS) throw new Error(`Cannot use the "serve" API in this environment`);
|
1003
|
+
const keys = {};
|
1004
|
+
const port = getFlag(options2, keys, "port", mustBeValidPortNumber);
|
1005
|
+
const host = getFlag(options2, keys, "host", mustBeString);
|
1006
|
+
const servedir = getFlag(options2, keys, "servedir", mustBeString);
|
1007
|
+
const keyfile = getFlag(options2, keys, "keyfile", mustBeString);
|
1008
|
+
const certfile = getFlag(options2, keys, "certfile", mustBeString);
|
1009
|
+
const fallback = getFlag(options2, keys, "fallback", mustBeString);
|
1010
|
+
const cors = getFlag(options2, keys, "cors", mustBeObject);
|
1011
|
+
const onRequest = getFlag(options2, keys, "onRequest", mustBeFunction);
|
1012
|
+
checkForInvalidFlags(options2, keys, `in serve() call`);
|
1013
|
+
const request2 = {
|
1014
|
+
command: "serve",
|
1015
|
+
key: buildKey,
|
1016
|
+
onRequest: !!onRequest
|
1017
|
+
};
|
1018
|
+
if (port !== void 0) request2.port = port;
|
1019
|
+
if (host !== void 0) request2.host = host;
|
1020
|
+
if (servedir !== void 0) request2.servedir = servedir;
|
1021
|
+
if (keyfile !== void 0) request2.keyfile = keyfile;
|
1022
|
+
if (certfile !== void 0) request2.certfile = certfile;
|
1023
|
+
if (fallback !== void 0) request2.fallback = fallback;
|
1024
|
+
if (cors) {
|
1025
|
+
const corsKeys = {};
|
1026
|
+
const origin = getFlag(cors, corsKeys, "origin", mustBeStringOrArrayOfStrings);
|
1027
|
+
checkForInvalidFlags(cors, corsKeys, `on "cors" object`);
|
1028
|
+
if (Array.isArray(origin)) request2.corsOrigin = origin;
|
1029
|
+
else if (origin !== void 0) request2.corsOrigin = [origin];
|
1030
|
+
}
|
1031
|
+
sendRequest(refs, request2, (error2, response2) => {
|
1032
|
+
if (error2) return reject(new Error(error2));
|
1033
|
+
if (onRequest) {
|
1034
|
+
requestCallbacks["serve-request"] = (id, request3) => {
|
1035
|
+
onRequest(request3.args);
|
1036
|
+
sendResponse(id, {});
|
1037
|
+
};
|
1038
|
+
}
|
1039
|
+
resolve(response2);
|
1040
|
+
});
|
1041
|
+
}),
|
1042
|
+
cancel: () => new Promise((resolve) => {
|
1043
|
+
if (didDispose) return resolve();
|
1044
|
+
const request2 = {
|
1045
|
+
command: "cancel",
|
1046
|
+
key: buildKey
|
1047
|
+
};
|
1048
|
+
sendRequest(refs, request2, () => {
|
1049
|
+
resolve();
|
1050
|
+
});
|
1051
|
+
}),
|
1052
|
+
dispose: () => new Promise((resolve) => {
|
1053
|
+
if (didDispose) return resolve();
|
1054
|
+
didDispose = true;
|
1055
|
+
const request2 = {
|
1056
|
+
command: "dispose",
|
1057
|
+
key: buildKey
|
1058
|
+
};
|
1059
|
+
sendRequest(refs, request2, () => {
|
1060
|
+
resolve();
|
1061
|
+
scheduleOnDisposeCallbacks();
|
1062
|
+
refs.unref();
|
1063
|
+
});
|
1064
|
+
})
|
1065
|
+
};
|
1066
|
+
refs.ref();
|
1067
|
+
callback(null, result);
|
1068
|
+
});
|
1069
|
+
}
|
1070
|
+
}
|
1071
|
+
var handlePlugins = async (buildKey, sendRequest, sendResponse, refs, streamIn, requestCallbacks, initialOptions, plugins, details) => {
|
1072
|
+
let onStartCallbacks = [];
|
1073
|
+
let onEndCallbacks = [];
|
1074
|
+
let onResolveCallbacks = {};
|
1075
|
+
let onLoadCallbacks = {};
|
1076
|
+
let onDisposeCallbacks = [];
|
1077
|
+
let nextCallbackID = 0;
|
1078
|
+
let i = 0;
|
1079
|
+
let requestPlugins = [];
|
1080
|
+
let isSetupDone = false;
|
1081
|
+
plugins = [...plugins];
|
1082
|
+
for (let item of plugins) {
|
1083
|
+
let keys = {};
|
1084
|
+
if (typeof item !== "object") throw new Error(`Plugin at index ${i} must be an object`);
|
1085
|
+
const name = getFlag(item, keys, "name", mustBeString);
|
1086
|
+
if (typeof name !== "string" || name === "") throw new Error(`Plugin at index ${i} is missing a name`);
|
1087
|
+
try {
|
1088
|
+
let setup = getFlag(item, keys, "setup", mustBeFunction);
|
1089
|
+
if (typeof setup !== "function") throw new Error(`Plugin is missing a setup function`);
|
1090
|
+
checkForInvalidFlags(item, keys, `on plugin ${quote(name)}`);
|
1091
|
+
let plugin = {
|
1092
|
+
name,
|
1093
|
+
onStart: false,
|
1094
|
+
onEnd: false,
|
1095
|
+
onResolve: [],
|
1096
|
+
onLoad: []
|
1097
|
+
};
|
1098
|
+
i++;
|
1099
|
+
let resolve = (path3, options = {}) => {
|
1100
|
+
if (!isSetupDone) throw new Error('Cannot call "resolve" before plugin setup has completed');
|
1101
|
+
if (typeof path3 !== "string") throw new Error(`The path to resolve must be a string`);
|
1102
|
+
let keys2 = /* @__PURE__ */ Object.create(null);
|
1103
|
+
let pluginName = getFlag(options, keys2, "pluginName", mustBeString);
|
1104
|
+
let importer = getFlag(options, keys2, "importer", mustBeString);
|
1105
|
+
let namespace = getFlag(options, keys2, "namespace", mustBeString);
|
1106
|
+
let resolveDir = getFlag(options, keys2, "resolveDir", mustBeString);
|
1107
|
+
let kind = getFlag(options, keys2, "kind", mustBeString);
|
1108
|
+
let pluginData = getFlag(options, keys2, "pluginData", canBeAnything);
|
1109
|
+
let importAttributes = getFlag(options, keys2, "with", mustBeObject);
|
1110
|
+
checkForInvalidFlags(options, keys2, "in resolve() call");
|
1111
|
+
return new Promise((resolve2, reject) => {
|
1112
|
+
const request = {
|
1113
|
+
command: "resolve",
|
1114
|
+
path: path3,
|
1115
|
+
key: buildKey,
|
1116
|
+
pluginName: name
|
1117
|
+
};
|
1118
|
+
if (pluginName != null) request.pluginName = pluginName;
|
1119
|
+
if (importer != null) request.importer = importer;
|
1120
|
+
if (namespace != null) request.namespace = namespace;
|
1121
|
+
if (resolveDir != null) request.resolveDir = resolveDir;
|
1122
|
+
if (kind != null) request.kind = kind;
|
1123
|
+
else throw new Error(`Must specify "kind" when calling "resolve"`);
|
1124
|
+
if (pluginData != null) request.pluginData = details.store(pluginData);
|
1125
|
+
if (importAttributes != null) request.with = sanitizeStringMap(importAttributes, "with");
|
1126
|
+
sendRequest(refs, request, (error, response) => {
|
1127
|
+
if (error !== null) reject(new Error(error));
|
1128
|
+
else resolve2({
|
1129
|
+
errors: replaceDetailsInMessages(response.errors, details),
|
1130
|
+
warnings: replaceDetailsInMessages(response.warnings, details),
|
1131
|
+
path: response.path,
|
1132
|
+
external: response.external,
|
1133
|
+
sideEffects: response.sideEffects,
|
1134
|
+
namespace: response.namespace,
|
1135
|
+
suffix: response.suffix,
|
1136
|
+
pluginData: details.load(response.pluginData)
|
1137
|
+
});
|
1138
|
+
});
|
1139
|
+
});
|
1140
|
+
};
|
1141
|
+
let promise = setup({
|
1142
|
+
initialOptions,
|
1143
|
+
resolve,
|
1144
|
+
onStart(callback) {
|
1145
|
+
let registeredText = `This error came from the "onStart" callback registered here:`;
|
1146
|
+
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onStart");
|
1147
|
+
onStartCallbacks.push({ name, callback, note: registeredNote });
|
1148
|
+
plugin.onStart = true;
|
1149
|
+
},
|
1150
|
+
onEnd(callback) {
|
1151
|
+
let registeredText = `This error came from the "onEnd" callback registered here:`;
|
1152
|
+
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onEnd");
|
1153
|
+
onEndCallbacks.push({ name, callback, note: registeredNote });
|
1154
|
+
plugin.onEnd = true;
|
1155
|
+
},
|
1156
|
+
onResolve(options, callback) {
|
1157
|
+
let registeredText = `This error came from the "onResolve" callback registered here:`;
|
1158
|
+
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onResolve");
|
1159
|
+
let keys2 = {};
|
1160
|
+
let filter = getFlag(options, keys2, "filter", mustBeRegExp);
|
1161
|
+
let namespace = getFlag(options, keys2, "namespace", mustBeString);
|
1162
|
+
checkForInvalidFlags(options, keys2, `in onResolve() call for plugin ${quote(name)}`);
|
1163
|
+
if (filter == null) throw new Error(`onResolve() call is missing a filter`);
|
1164
|
+
let id = nextCallbackID++;
|
1165
|
+
onResolveCallbacks[id] = { name, callback, note: registeredNote };
|
1166
|
+
plugin.onResolve.push({ id, filter: jsRegExpToGoRegExp(filter), namespace: namespace || "" });
|
1167
|
+
},
|
1168
|
+
onLoad(options, callback) {
|
1169
|
+
let registeredText = `This error came from the "onLoad" callback registered here:`;
|
1170
|
+
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onLoad");
|
1171
|
+
let keys2 = {};
|
1172
|
+
let filter = getFlag(options, keys2, "filter", mustBeRegExp);
|
1173
|
+
let namespace = getFlag(options, keys2, "namespace", mustBeString);
|
1174
|
+
checkForInvalidFlags(options, keys2, `in onLoad() call for plugin ${quote(name)}`);
|
1175
|
+
if (filter == null) throw new Error(`onLoad() call is missing a filter`);
|
1176
|
+
let id = nextCallbackID++;
|
1177
|
+
onLoadCallbacks[id] = { name, callback, note: registeredNote };
|
1178
|
+
plugin.onLoad.push({ id, filter: jsRegExpToGoRegExp(filter), namespace: namespace || "" });
|
1179
|
+
},
|
1180
|
+
onDispose(callback) {
|
1181
|
+
onDisposeCallbacks.push(callback);
|
1182
|
+
},
|
1183
|
+
esbuild: streamIn.esbuild
|
1184
|
+
});
|
1185
|
+
if (promise) await promise;
|
1186
|
+
requestPlugins.push(plugin);
|
1187
|
+
} catch (e) {
|
1188
|
+
return { ok: false, error: e, pluginName: name };
|
1189
|
+
}
|
1190
|
+
}
|
1191
|
+
requestCallbacks["on-start"] = async (id, request) => {
|
1192
|
+
details.clear();
|
1193
|
+
let response = { errors: [], warnings: [] };
|
1194
|
+
await Promise.all(onStartCallbacks.map(async ({ name, callback, note }) => {
|
1195
|
+
try {
|
1196
|
+
let result = await callback();
|
1197
|
+
if (result != null) {
|
1198
|
+
if (typeof result !== "object") throw new Error(`Expected onStart() callback in plugin ${quote(name)} to return an object`);
|
1199
|
+
let keys = {};
|
1200
|
+
let errors = getFlag(result, keys, "errors", mustBeArray);
|
1201
|
+
let warnings = getFlag(result, keys, "warnings", mustBeArray);
|
1202
|
+
checkForInvalidFlags(result, keys, `from onStart() callback in plugin ${quote(name)}`);
|
1203
|
+
if (errors != null) response.errors.push(...sanitizeMessages(errors, "errors", details, name, void 0));
|
1204
|
+
if (warnings != null) response.warnings.push(...sanitizeMessages(warnings, "warnings", details, name, void 0));
|
1205
|
+
}
|
1206
|
+
} catch (e) {
|
1207
|
+
response.errors.push(extractErrorMessageV8(e, streamIn, details, note && note(), name));
|
1208
|
+
}
|
1209
|
+
}));
|
1210
|
+
sendResponse(id, response);
|
1211
|
+
};
|
1212
|
+
requestCallbacks["on-resolve"] = async (id, request) => {
|
1213
|
+
let response = {}, name = "", callback, note;
|
1214
|
+
for (let id2 of request.ids) {
|
1215
|
+
try {
|
1216
|
+
({ name, callback, note } = onResolveCallbacks[id2]);
|
1217
|
+
let result = await callback({
|
1218
|
+
path: request.path,
|
1219
|
+
importer: request.importer,
|
1220
|
+
namespace: request.namespace,
|
1221
|
+
resolveDir: request.resolveDir,
|
1222
|
+
kind: request.kind,
|
1223
|
+
pluginData: details.load(request.pluginData),
|
1224
|
+
with: request.with
|
1225
|
+
});
|
1226
|
+
if (result != null) {
|
1227
|
+
if (typeof result !== "object") throw new Error(`Expected onResolve() callback in plugin ${quote(name)} to return an object`);
|
1228
|
+
let keys = {};
|
1229
|
+
let pluginName = getFlag(result, keys, "pluginName", mustBeString);
|
1230
|
+
let path3 = getFlag(result, keys, "path", mustBeString);
|
1231
|
+
let namespace = getFlag(result, keys, "namespace", mustBeString);
|
1232
|
+
let suffix = getFlag(result, keys, "suffix", mustBeString);
|
1233
|
+
let external = getFlag(result, keys, "external", mustBeBoolean);
|
1234
|
+
let sideEffects = getFlag(result, keys, "sideEffects", mustBeBoolean);
|
1235
|
+
let pluginData = getFlag(result, keys, "pluginData", canBeAnything);
|
1236
|
+
let errors = getFlag(result, keys, "errors", mustBeArray);
|
1237
|
+
let warnings = getFlag(result, keys, "warnings", mustBeArray);
|
1238
|
+
let watchFiles = getFlag(result, keys, "watchFiles", mustBeArrayOfStrings);
|
1239
|
+
let watchDirs = getFlag(result, keys, "watchDirs", mustBeArrayOfStrings);
|
1240
|
+
checkForInvalidFlags(result, keys, `from onResolve() callback in plugin ${quote(name)}`);
|
1241
|
+
response.id = id2;
|
1242
|
+
if (pluginName != null) response.pluginName = pluginName;
|
1243
|
+
if (path3 != null) response.path = path3;
|
1244
|
+
if (namespace != null) response.namespace = namespace;
|
1245
|
+
if (suffix != null) response.suffix = suffix;
|
1246
|
+
if (external != null) response.external = external;
|
1247
|
+
if (sideEffects != null) response.sideEffects = sideEffects;
|
1248
|
+
if (pluginData != null) response.pluginData = details.store(pluginData);
|
1249
|
+
if (errors != null) response.errors = sanitizeMessages(errors, "errors", details, name, void 0);
|
1250
|
+
if (warnings != null) response.warnings = sanitizeMessages(warnings, "warnings", details, name, void 0);
|
1251
|
+
if (watchFiles != null) response.watchFiles = sanitizeStringArray(watchFiles, "watchFiles");
|
1252
|
+
if (watchDirs != null) response.watchDirs = sanitizeStringArray(watchDirs, "watchDirs");
|
1253
|
+
break;
|
1254
|
+
}
|
1255
|
+
} catch (e) {
|
1256
|
+
response = { id: id2, errors: [extractErrorMessageV8(e, streamIn, details, note && note(), name)] };
|
1257
|
+
break;
|
1258
|
+
}
|
1259
|
+
}
|
1260
|
+
sendResponse(id, response);
|
1261
|
+
};
|
1262
|
+
requestCallbacks["on-load"] = async (id, request) => {
|
1263
|
+
let response = {}, name = "", callback, note;
|
1264
|
+
for (let id2 of request.ids) {
|
1265
|
+
try {
|
1266
|
+
({ name, callback, note } = onLoadCallbacks[id2]);
|
1267
|
+
let result = await callback({
|
1268
|
+
path: request.path,
|
1269
|
+
namespace: request.namespace,
|
1270
|
+
suffix: request.suffix,
|
1271
|
+
pluginData: details.load(request.pluginData),
|
1272
|
+
with: request.with
|
1273
|
+
});
|
1274
|
+
if (result != null) {
|
1275
|
+
if (typeof result !== "object") throw new Error(`Expected onLoad() callback in plugin ${quote(name)} to return an object`);
|
1276
|
+
let keys = {};
|
1277
|
+
let pluginName = getFlag(result, keys, "pluginName", mustBeString);
|
1278
|
+
let contents = getFlag(result, keys, "contents", mustBeStringOrUint8Array);
|
1279
|
+
let resolveDir = getFlag(result, keys, "resolveDir", mustBeString);
|
1280
|
+
let pluginData = getFlag(result, keys, "pluginData", canBeAnything);
|
1281
|
+
let loader = getFlag(result, keys, "loader", mustBeString);
|
1282
|
+
let errors = getFlag(result, keys, "errors", mustBeArray);
|
1283
|
+
let warnings = getFlag(result, keys, "warnings", mustBeArray);
|
1284
|
+
let watchFiles = getFlag(result, keys, "watchFiles", mustBeArrayOfStrings);
|
1285
|
+
let watchDirs = getFlag(result, keys, "watchDirs", mustBeArrayOfStrings);
|
1286
|
+
checkForInvalidFlags(result, keys, `from onLoad() callback in plugin ${quote(name)}`);
|
1287
|
+
response.id = id2;
|
1288
|
+
if (pluginName != null) response.pluginName = pluginName;
|
1289
|
+
if (contents instanceof Uint8Array) response.contents = contents;
|
1290
|
+
else if (contents != null) response.contents = encodeUTF8(contents);
|
1291
|
+
if (resolveDir != null) response.resolveDir = resolveDir;
|
1292
|
+
if (pluginData != null) response.pluginData = details.store(pluginData);
|
1293
|
+
if (loader != null) response.loader = loader;
|
1294
|
+
if (errors != null) response.errors = sanitizeMessages(errors, "errors", details, name, void 0);
|
1295
|
+
if (warnings != null) response.warnings = sanitizeMessages(warnings, "warnings", details, name, void 0);
|
1296
|
+
if (watchFiles != null) response.watchFiles = sanitizeStringArray(watchFiles, "watchFiles");
|
1297
|
+
if (watchDirs != null) response.watchDirs = sanitizeStringArray(watchDirs, "watchDirs");
|
1298
|
+
break;
|
1299
|
+
}
|
1300
|
+
} catch (e) {
|
1301
|
+
response = { id: id2, errors: [extractErrorMessageV8(e, streamIn, details, note && note(), name)] };
|
1302
|
+
break;
|
1303
|
+
}
|
1304
|
+
}
|
1305
|
+
sendResponse(id, response);
|
1306
|
+
};
|
1307
|
+
let runOnEndCallbacks = (result, done) => done([], []);
|
1308
|
+
if (onEndCallbacks.length > 0) {
|
1309
|
+
runOnEndCallbacks = (result, done) => {
|
1310
|
+
(async () => {
|
1311
|
+
const onEndErrors = [];
|
1312
|
+
const onEndWarnings = [];
|
1313
|
+
for (const { name, callback, note } of onEndCallbacks) {
|
1314
|
+
let newErrors;
|
1315
|
+
let newWarnings;
|
1316
|
+
try {
|
1317
|
+
const value = await callback(result);
|
1318
|
+
if (value != null) {
|
1319
|
+
if (typeof value !== "object") throw new Error(`Expected onEnd() callback in plugin ${quote(name)} to return an object`);
|
1320
|
+
let keys = {};
|
1321
|
+
let errors = getFlag(value, keys, "errors", mustBeArray);
|
1322
|
+
let warnings = getFlag(value, keys, "warnings", mustBeArray);
|
1323
|
+
checkForInvalidFlags(value, keys, `from onEnd() callback in plugin ${quote(name)}`);
|
1324
|
+
if (errors != null) newErrors = sanitizeMessages(errors, "errors", details, name, void 0);
|
1325
|
+
if (warnings != null) newWarnings = sanitizeMessages(warnings, "warnings", details, name, void 0);
|
1326
|
+
}
|
1327
|
+
} catch (e) {
|
1328
|
+
newErrors = [extractErrorMessageV8(e, streamIn, details, note && note(), name)];
|
1329
|
+
}
|
1330
|
+
if (newErrors) {
|
1331
|
+
onEndErrors.push(...newErrors);
|
1332
|
+
try {
|
1333
|
+
result.errors.push(...newErrors);
|
1334
|
+
} catch {
|
1335
|
+
}
|
1336
|
+
}
|
1337
|
+
if (newWarnings) {
|
1338
|
+
onEndWarnings.push(...newWarnings);
|
1339
|
+
try {
|
1340
|
+
result.warnings.push(...newWarnings);
|
1341
|
+
} catch {
|
1342
|
+
}
|
1343
|
+
}
|
1344
|
+
}
|
1345
|
+
done(onEndErrors, onEndWarnings);
|
1346
|
+
})();
|
1347
|
+
};
|
1348
|
+
}
|
1349
|
+
let scheduleOnDisposeCallbacks = () => {
|
1350
|
+
for (const cb of onDisposeCallbacks) {
|
1351
|
+
setTimeout(() => cb(), 0);
|
1352
|
+
}
|
1353
|
+
};
|
1354
|
+
isSetupDone = true;
|
1355
|
+
return {
|
1356
|
+
ok: true,
|
1357
|
+
requestPlugins,
|
1358
|
+
runOnEndCallbacks,
|
1359
|
+
scheduleOnDisposeCallbacks
|
1360
|
+
};
|
1361
|
+
};
|
1362
|
+
function createObjectStash() {
|
1363
|
+
const map = /* @__PURE__ */ new Map();
|
1364
|
+
let nextID = 0;
|
1365
|
+
return {
|
1366
|
+
clear() {
|
1367
|
+
map.clear();
|
1368
|
+
},
|
1369
|
+
load(id) {
|
1370
|
+
return map.get(id);
|
1371
|
+
},
|
1372
|
+
store(value) {
|
1373
|
+
if (value === void 0) return -1;
|
1374
|
+
const id = nextID++;
|
1375
|
+
map.set(id, value);
|
1376
|
+
return id;
|
1377
|
+
}
|
1378
|
+
};
|
1379
|
+
}
|
1380
|
+
function extractCallerV8(e, streamIn, ident) {
|
1381
|
+
let note;
|
1382
|
+
let tried = false;
|
1383
|
+
return () => {
|
1384
|
+
if (tried) return note;
|
1385
|
+
tried = true;
|
1386
|
+
try {
|
1387
|
+
let lines = (e.stack + "").split("\n");
|
1388
|
+
lines.splice(1, 1);
|
1389
|
+
let location = parseStackLinesV8(streamIn, lines, ident);
|
1390
|
+
if (location) {
|
1391
|
+
note = { text: e.message, location };
|
1392
|
+
return note;
|
1393
|
+
}
|
1394
|
+
} catch {
|
1395
|
+
}
|
1396
|
+
};
|
1397
|
+
}
|
1398
|
+
function extractErrorMessageV8(e, streamIn, stash, note, pluginName) {
|
1399
|
+
let text = "Internal error";
|
1400
|
+
let location = null;
|
1401
|
+
try {
|
1402
|
+
text = (e && e.message || e) + "";
|
1403
|
+
} catch {
|
1404
|
+
}
|
1405
|
+
try {
|
1406
|
+
location = parseStackLinesV8(streamIn, (e.stack + "").split("\n"), "");
|
1407
|
+
} catch {
|
1408
|
+
}
|
1409
|
+
return { id: "", pluginName, text, location, notes: note ? [note] : [], detail: stash ? stash.store(e) : -1 };
|
1410
|
+
}
|
1411
|
+
function parseStackLinesV8(streamIn, lines, ident) {
|
1412
|
+
let at = " at ";
|
1413
|
+
if (streamIn.readFileSync && !lines[0].startsWith(at) && lines[1].startsWith(at)) {
|
1414
|
+
for (let i = 1; i < lines.length; i++) {
|
1415
|
+
let line = lines[i];
|
1416
|
+
if (!line.startsWith(at)) continue;
|
1417
|
+
line = line.slice(at.length);
|
1418
|
+
while (true) {
|
1419
|
+
let match = /^(?:new |async )?\S+ \((.*)\)$/.exec(line);
|
1420
|
+
if (match) {
|
1421
|
+
line = match[1];
|
1422
|
+
continue;
|
1423
|
+
}
|
1424
|
+
match = /^eval at \S+ \((.*)\)(?:, \S+:\d+:\d+)?$/.exec(line);
|
1425
|
+
if (match) {
|
1426
|
+
line = match[1];
|
1427
|
+
continue;
|
1428
|
+
}
|
1429
|
+
match = /^(\S+):(\d+):(\d+)$/.exec(line);
|
1430
|
+
if (match) {
|
1431
|
+
let contents;
|
1432
|
+
try {
|
1433
|
+
contents = streamIn.readFileSync(match[1], "utf8");
|
1434
|
+
} catch {
|
1435
|
+
break;
|
1436
|
+
}
|
1437
|
+
let lineText = contents.split(/\r\n|\r|\n|\u2028|\u2029/)[+match[2] - 1] || "";
|
1438
|
+
let column = +match[3] - 1;
|
1439
|
+
let length = lineText.slice(column, column + ident.length) === ident ? ident.length : 0;
|
1440
|
+
return {
|
1441
|
+
file: match[1],
|
1442
|
+
namespace: "file",
|
1443
|
+
line: +match[2],
|
1444
|
+
column: encodeUTF8(lineText.slice(0, column)).length,
|
1445
|
+
length: encodeUTF8(lineText.slice(column, column + length)).length,
|
1446
|
+
lineText: lineText + "\n" + lines.slice(1).join("\n"),
|
1447
|
+
suggestion: ""
|
1448
|
+
};
|
1449
|
+
}
|
1450
|
+
break;
|
1451
|
+
}
|
1452
|
+
}
|
1453
|
+
}
|
1454
|
+
return null;
|
1455
|
+
}
|
1456
|
+
function failureErrorWithLog(text, errors, warnings) {
|
1457
|
+
let limit = 5;
|
1458
|
+
text += errors.length < 1 ? "" : ` with ${errors.length} error${errors.length < 2 ? "" : "s"}:` + errors.slice(0, limit + 1).map((e, i) => {
|
1459
|
+
if (i === limit) return "\n...";
|
1460
|
+
if (!e.location) return `
|
1461
|
+
error: ${e.text}`;
|
1462
|
+
let { file, line, column } = e.location;
|
1463
|
+
let pluginText = e.pluginName ? `[plugin: ${e.pluginName}] ` : "";
|
1464
|
+
return `
|
1465
|
+
${file}:${line}:${column}: ERROR: ${pluginText}${e.text}`;
|
1466
|
+
}).join("");
|
1467
|
+
let error = new Error(text);
|
1468
|
+
for (const [key, value] of [["errors", errors], ["warnings", warnings]]) {
|
1469
|
+
Object.defineProperty(error, key, {
|
1470
|
+
configurable: true,
|
1471
|
+
enumerable: true,
|
1472
|
+
get: () => value,
|
1473
|
+
set: (value2) => Object.defineProperty(error, key, {
|
1474
|
+
configurable: true,
|
1475
|
+
enumerable: true,
|
1476
|
+
value: value2
|
1477
|
+
})
|
1478
|
+
});
|
1479
|
+
}
|
1480
|
+
return error;
|
1481
|
+
}
|
1482
|
+
function replaceDetailsInMessages(messages, stash) {
|
1483
|
+
for (const message of messages) {
|
1484
|
+
message.detail = stash.load(message.detail);
|
1485
|
+
}
|
1486
|
+
return messages;
|
1487
|
+
}
|
1488
|
+
function sanitizeLocation(location, where, terminalWidth) {
|
1489
|
+
if (location == null) return null;
|
1490
|
+
let keys = {};
|
1491
|
+
let file = getFlag(location, keys, "file", mustBeString);
|
1492
|
+
let namespace = getFlag(location, keys, "namespace", mustBeString);
|
1493
|
+
let line = getFlag(location, keys, "line", mustBeInteger);
|
1494
|
+
let column = getFlag(location, keys, "column", mustBeInteger);
|
1495
|
+
let length = getFlag(location, keys, "length", mustBeInteger);
|
1496
|
+
let lineText = getFlag(location, keys, "lineText", mustBeString);
|
1497
|
+
let suggestion = getFlag(location, keys, "suggestion", mustBeString);
|
1498
|
+
checkForInvalidFlags(location, keys, where);
|
1499
|
+
if (lineText) {
|
1500
|
+
const relevantASCII = lineText.slice(
|
1501
|
+
0,
|
1502
|
+
(column && column > 0 ? column : 0) + (length && length > 0 ? length : 0) + (terminalWidth && terminalWidth > 0 ? terminalWidth : 80)
|
1503
|
+
);
|
1504
|
+
if (!/[\x7F-\uFFFF]/.test(relevantASCII) && !/\n/.test(lineText)) {
|
1505
|
+
lineText = relevantASCII;
|
1506
|
+
}
|
1507
|
+
}
|
1508
|
+
return {
|
1509
|
+
file: file || "",
|
1510
|
+
namespace: namespace || "",
|
1511
|
+
line: line || 0,
|
1512
|
+
column: column || 0,
|
1513
|
+
length: length || 0,
|
1514
|
+
lineText: lineText || "",
|
1515
|
+
suggestion: suggestion || ""
|
1516
|
+
};
|
1517
|
+
}
|
1518
|
+
function sanitizeMessages(messages, property, stash, fallbackPluginName, terminalWidth) {
|
1519
|
+
let messagesClone = [];
|
1520
|
+
let index = 0;
|
1521
|
+
for (const message of messages) {
|
1522
|
+
let keys = {};
|
1523
|
+
let id = getFlag(message, keys, "id", mustBeString);
|
1524
|
+
let pluginName = getFlag(message, keys, "pluginName", mustBeString);
|
1525
|
+
let text = getFlag(message, keys, "text", mustBeString);
|
1526
|
+
let location = getFlag(message, keys, "location", mustBeObjectOrNull);
|
1527
|
+
let notes = getFlag(message, keys, "notes", mustBeArray);
|
1528
|
+
let detail = getFlag(message, keys, "detail", canBeAnything);
|
1529
|
+
let where = `in element ${index} of "${property}"`;
|
1530
|
+
checkForInvalidFlags(message, keys, where);
|
1531
|
+
let notesClone = [];
|
1532
|
+
if (notes) {
|
1533
|
+
for (const note of notes) {
|
1534
|
+
let noteKeys = {};
|
1535
|
+
let noteText = getFlag(note, noteKeys, "text", mustBeString);
|
1536
|
+
let noteLocation = getFlag(note, noteKeys, "location", mustBeObjectOrNull);
|
1537
|
+
checkForInvalidFlags(note, noteKeys, where);
|
1538
|
+
notesClone.push({
|
1539
|
+
text: noteText || "",
|
1540
|
+
location: sanitizeLocation(noteLocation, where, terminalWidth)
|
1541
|
+
});
|
1542
|
+
}
|
1543
|
+
}
|
1544
|
+
messagesClone.push({
|
1545
|
+
id: id || "",
|
1546
|
+
pluginName: pluginName || fallbackPluginName,
|
1547
|
+
text: text || "",
|
1548
|
+
location: sanitizeLocation(location, where, terminalWidth),
|
1549
|
+
notes: notesClone,
|
1550
|
+
detail: stash ? stash.store(detail) : -1
|
1551
|
+
});
|
1552
|
+
index++;
|
1553
|
+
}
|
1554
|
+
return messagesClone;
|
1555
|
+
}
|
1556
|
+
function sanitizeStringArray(values, property) {
|
1557
|
+
const result = [];
|
1558
|
+
for (const value of values) {
|
1559
|
+
if (typeof value !== "string") throw new Error(`${quote(property)} must be an array of strings`);
|
1560
|
+
result.push(value);
|
1561
|
+
}
|
1562
|
+
return result;
|
1563
|
+
}
|
1564
|
+
function sanitizeStringMap(map, property) {
|
1565
|
+
const result = /* @__PURE__ */ Object.create(null);
|
1566
|
+
for (const key in map) {
|
1567
|
+
const value = map[key];
|
1568
|
+
if (typeof value !== "string") throw new Error(`key ${quote(key)} in object ${quote(property)} must be a string`);
|
1569
|
+
result[key] = value;
|
1570
|
+
}
|
1571
|
+
return result;
|
1572
|
+
}
|
1573
|
+
function convertOutputFiles({ path: path3, contents, hash }) {
|
1574
|
+
let text = null;
|
1575
|
+
return {
|
1576
|
+
path: path3,
|
1577
|
+
contents,
|
1578
|
+
hash,
|
1579
|
+
get text() {
|
1580
|
+
const binary = this.contents;
|
1581
|
+
if (text === null || binary !== contents) {
|
1582
|
+
contents = binary;
|
1583
|
+
text = decodeUTF8(binary);
|
1584
|
+
}
|
1585
|
+
return text;
|
1586
|
+
}
|
1587
|
+
};
|
1588
|
+
}
|
1589
|
+
function jsRegExpToGoRegExp(regexp) {
|
1590
|
+
let result = regexp.source;
|
1591
|
+
if (regexp.flags) result = `(?${regexp.flags})${result}`;
|
1592
|
+
return result;
|
1593
|
+
}
|
1594
|
+
|
1595
|
+
// lib/npm/node-platform.ts
|
1596
|
+
var fs = require("fs");
|
1597
|
+
var os = require("os");
|
1598
|
+
var path = require("path");
|
1599
|
+
var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
|
1600
|
+
var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
|
1601
|
+
var packageDarwin_arm64 = "@esbuild/darwin-arm64";
|
1602
|
+
var packageDarwin_x64 = "@esbuild/darwin-x64";
|
1603
|
+
var knownWindowsPackages = {
|
1604
|
+
"win32 arm64 LE": "@esbuild/win32-arm64",
|
1605
|
+
"win32 ia32 LE": "@esbuild/win32-ia32",
|
1606
|
+
"win32 x64 LE": "@esbuild/win32-x64"
|
1607
|
+
};
|
1608
|
+
var knownUnixlikePackages = {
|
1609
|
+
"aix ppc64 BE": "@esbuild/aix-ppc64",
|
1610
|
+
"android arm64 LE": "@esbuild/android-arm64",
|
1611
|
+
"darwin arm64 LE": "@esbuild/darwin-arm64",
|
1612
|
+
"darwin x64 LE": "@esbuild/darwin-x64",
|
1613
|
+
"freebsd arm64 LE": "@esbuild/freebsd-arm64",
|
1614
|
+
"freebsd x64 LE": "@esbuild/freebsd-x64",
|
1615
|
+
"linux arm LE": "@esbuild/linux-arm",
|
1616
|
+
"linux arm64 LE": "@esbuild/linux-arm64",
|
1617
|
+
"linux ia32 LE": "@esbuild/linux-ia32",
|
1618
|
+
"linux mips64el LE": "@esbuild/linux-mips64el",
|
1619
|
+
"linux ppc64 LE": "@esbuild/linux-ppc64",
|
1620
|
+
"linux riscv64 LE": "@esbuild/linux-riscv64",
|
1621
|
+
"linux s390x BE": "@esbuild/linux-s390x",
|
1622
|
+
"linux x64 LE": "@esbuild/linux-x64",
|
1623
|
+
"linux loong64 LE": "@esbuild/linux-loong64",
|
1624
|
+
"netbsd arm64 LE": "@esbuild/netbsd-arm64",
|
1625
|
+
"netbsd x64 LE": "@esbuild/netbsd-x64",
|
1626
|
+
"openbsd arm64 LE": "@esbuild/openbsd-arm64",
|
1627
|
+
"openbsd x64 LE": "@esbuild/openbsd-x64",
|
1628
|
+
"sunos x64 LE": "@esbuild/sunos-x64"
|
1629
|
+
};
|
1630
|
+
var knownWebAssemblyFallbackPackages = {
|
1631
|
+
"android arm LE": "@esbuild/android-arm",
|
1632
|
+
"android x64 LE": "@esbuild/android-x64",
|
1633
|
+
"openharmony arm64 LE": "@esbuild/openharmony-arm64"
|
1634
|
+
};
|
1635
|
+
function pkgAndSubpathForCurrentPlatform() {
|
1636
|
+
let pkg;
|
1637
|
+
let subpath;
|
1638
|
+
let isWASM = false;
|
1639
|
+
let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
|
1640
|
+
if (platformKey in knownWindowsPackages) {
|
1641
|
+
pkg = knownWindowsPackages[platformKey];
|
1642
|
+
subpath = "esbuild.exe";
|
1643
|
+
} else if (platformKey in knownUnixlikePackages) {
|
1644
|
+
pkg = knownUnixlikePackages[platformKey];
|
1645
|
+
subpath = "bin/esbuild";
|
1646
|
+
} else if (platformKey in knownWebAssemblyFallbackPackages) {
|
1647
|
+
pkg = knownWebAssemblyFallbackPackages[platformKey];
|
1648
|
+
subpath = "bin/esbuild";
|
1649
|
+
isWASM = true;
|
1650
|
+
} else {
|
1651
|
+
throw new Error(`Unsupported platform: ${platformKey}`);
|
1652
|
+
}
|
1653
|
+
return { pkg, subpath, isWASM };
|
1654
|
+
}
|
1655
|
+
function pkgForSomeOtherPlatform() {
|
1656
|
+
const libMainJS = require.resolve("esbuild");
|
1657
|
+
const nodeModulesDirectory = path.dirname(path.dirname(path.dirname(libMainJS)));
|
1658
|
+
if (path.basename(nodeModulesDirectory) === "node_modules") {
|
1659
|
+
for (const unixKey in knownUnixlikePackages) {
|
1660
|
+
try {
|
1661
|
+
const pkg = knownUnixlikePackages[unixKey];
|
1662
|
+
if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
|
1663
|
+
} catch {
|
1664
|
+
}
|
1665
|
+
}
|
1666
|
+
for (const windowsKey in knownWindowsPackages) {
|
1667
|
+
try {
|
1668
|
+
const pkg = knownWindowsPackages[windowsKey];
|
1669
|
+
if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
|
1670
|
+
} catch {
|
1671
|
+
}
|
1672
|
+
}
|
1673
|
+
}
|
1674
|
+
return null;
|
1675
|
+
}
|
1676
|
+
function downloadedBinPath(pkg, subpath) {
|
1677
|
+
const esbuildLibDir = path.dirname(require.resolve("esbuild"));
|
1678
|
+
return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
|
1679
|
+
}
|
1680
|
+
function generateBinPath() {
|
1681
|
+
if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
|
1682
|
+
if (!fs.existsSync(ESBUILD_BINARY_PATH)) {
|
1683
|
+
console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
|
1684
|
+
} else {
|
1685
|
+
return { binPath: ESBUILD_BINARY_PATH, isWASM: false };
|
1686
|
+
}
|
1687
|
+
}
|
1688
|
+
const { pkg, subpath, isWASM } = pkgAndSubpathForCurrentPlatform();
|
1689
|
+
let binPath;
|
1690
|
+
try {
|
1691
|
+
binPath = require.resolve(`${pkg}/${subpath}`);
|
1692
|
+
} catch (e) {
|
1693
|
+
binPath = downloadedBinPath(pkg, subpath);
|
1694
|
+
if (!fs.existsSync(binPath)) {
|
1695
|
+
try {
|
1696
|
+
require.resolve(pkg);
|
1697
|
+
} catch {
|
1698
|
+
const otherPkg = pkgForSomeOtherPlatform();
|
1699
|
+
if (otherPkg) {
|
1700
|
+
let suggestions = `
|
1701
|
+
Specifically the "${otherPkg}" package is present but this platform
|
1702
|
+
needs the "${pkg}" package instead. People often get into this
|
1703
|
+
situation by installing esbuild on Windows or macOS and copying "node_modules"
|
1704
|
+
into a Docker image that runs Linux, or by copying "node_modules" between
|
1705
|
+
Windows and WSL environments.
|
1706
|
+
|
1707
|
+
If you are installing with npm, you can try not copying the "node_modules"
|
1708
|
+
directory when you copy the files over, and running "npm ci" or "npm install"
|
1709
|
+
on the destination platform after the copy. Or you could consider using yarn
|
1710
|
+
instead of npm which has built-in support for installing a package on multiple
|
1711
|
+
platforms simultaneously.
|
1712
|
+
|
1713
|
+
If you are installing with yarn, you can try listing both this platform and the
|
1714
|
+
other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
|
1715
|
+
feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
|
1716
|
+
Keep in mind that this means multiple copies of esbuild will be present.
|
1717
|
+
`;
|
1718
|
+
if (pkg === packageDarwin_x64 && otherPkg === packageDarwin_arm64 || pkg === packageDarwin_arm64 && otherPkg === packageDarwin_x64) {
|
1719
|
+
suggestions = `
|
1720
|
+
Specifically the "${otherPkg}" package is present but this platform
|
1721
|
+
needs the "${pkg}" package instead. People often get into this
|
1722
|
+
situation by installing esbuild with npm running inside of Rosetta 2 and then
|
1723
|
+
trying to use it with node running outside of Rosetta 2, or vice versa (Rosetta
|
1724
|
+
2 is Apple's on-the-fly x86_64-to-arm64 translation service).
|
1725
|
+
|
1726
|
+
If you are installing with npm, you can try ensuring that both npm and node are
|
1727
|
+
not running under Rosetta 2 and then reinstalling esbuild. This likely involves
|
1728
|
+
changing how you installed npm and/or node. For example, installing node with
|
1729
|
+
the universal installer here should work: https://nodejs.org/en/download/. Or
|
1730
|
+
you could consider using yarn instead of npm which has built-in support for
|
1731
|
+
installing a package on multiple platforms simultaneously.
|
1732
|
+
|
1733
|
+
If you are installing with yarn, you can try listing both "arm64" and "x64"
|
1734
|
+
in your ".yarnrc.yml" file using the "supportedArchitectures" feature:
|
1735
|
+
https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
|
1736
|
+
Keep in mind that this means multiple copies of esbuild will be present.
|
1737
|
+
`;
|
1738
|
+
}
|
1739
|
+
throw new Error(`
|
1740
|
+
You installed esbuild for another platform than the one you're currently using.
|
1741
|
+
This won't work because esbuild is written with native code and needs to
|
1742
|
+
install a platform-specific binary executable.
|
1743
|
+
${suggestions}
|
1744
|
+
Another alternative is to use the "esbuild-wasm" package instead, which works
|
1745
|
+
the same way on all platforms. But it comes with a heavy performance cost and
|
1746
|
+
can sometimes be 10x slower than the "esbuild" package, so you may also not
|
1747
|
+
want to do that.
|
1748
|
+
`);
|
1749
|
+
}
|
1750
|
+
throw new Error(`The package "${pkg}" could not be found, and is needed by esbuild.
|
1751
|
+
|
1752
|
+
If you are installing esbuild with npm, make sure that you don't specify the
|
1753
|
+
"--no-optional" or "--omit=optional" flags. The "optionalDependencies" feature
|
1754
|
+
of "package.json" is used by esbuild to install the correct binary executable
|
1755
|
+
for your current platform.`);
|
1756
|
+
}
|
1757
|
+
throw e;
|
1758
|
+
}
|
1759
|
+
}
|
1760
|
+
if (/\.zip\//.test(binPath)) {
|
1761
|
+
let pnpapi;
|
1762
|
+
try {
|
1763
|
+
pnpapi = require("pnpapi");
|
1764
|
+
} catch (e) {
|
1765
|
+
}
|
1766
|
+
if (pnpapi) {
|
1767
|
+
const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
|
1768
|
+
const binTargetPath = path.join(
|
1769
|
+
root,
|
1770
|
+
"node_modules",
|
1771
|
+
".cache",
|
1772
|
+
"esbuild",
|
1773
|
+
`pnpapi-${pkg.replace("/", "-")}-${"0.25.9"}-${path.basename(subpath)}`
|
1774
|
+
);
|
1775
|
+
if (!fs.existsSync(binTargetPath)) {
|
1776
|
+
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
|
1777
|
+
fs.copyFileSync(binPath, binTargetPath);
|
1778
|
+
fs.chmodSync(binTargetPath, 493);
|
1779
|
+
}
|
1780
|
+
return { binPath: binTargetPath, isWASM };
|
1781
|
+
}
|
1782
|
+
}
|
1783
|
+
return { binPath, isWASM };
|
1784
|
+
}
|
1785
|
+
|
1786
|
+
// lib/npm/node.ts
|
1787
|
+
var child_process = require("child_process");
|
1788
|
+
var crypto = require("crypto");
|
1789
|
+
var path2 = require("path");
|
1790
|
+
var fs2 = require("fs");
|
1791
|
+
var os2 = require("os");
|
1792
|
+
var tty = require("tty");
|
1793
|
+
var worker_threads;
|
1794
|
+
if (process.env.ESBUILD_WORKER_THREADS !== "0") {
|
1795
|
+
try {
|
1796
|
+
worker_threads = require("worker_threads");
|
1797
|
+
} catch {
|
1798
|
+
}
|
1799
|
+
let [major, minor] = process.versions.node.split(".");
|
1800
|
+
if (
|
1801
|
+
// <v12.17.0 does not work
|
1802
|
+
+major < 12 || +major === 12 && +minor < 17 || +major === 13 && +minor < 13
|
1803
|
+
) {
|
1804
|
+
worker_threads = void 0;
|
1805
|
+
}
|
1806
|
+
}
|
1807
|
+
var _a;
|
1808
|
+
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.25.9";
|
1809
|
+
var esbuildCommandAndArgs = () => {
|
1810
|
+
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
|
1811
|
+
throw new Error(
|
1812
|
+
`The esbuild JavaScript API cannot be bundled. Please mark the "esbuild" package as external so it's not included in the bundle.
|
1813
|
+
|
1814
|
+
More information: The file containing the code for esbuild's JavaScript API (${__filename}) does not appear to be inside the esbuild package on the file system, which usually means that the esbuild package was bundled into another file. This is problematic because the API needs to run a binary executable inside the esbuild package which is located using a relative path from the API code to the executable. If the esbuild package is bundled, the relative path will be incorrect and the executable won't be found.`
|
1815
|
+
);
|
1816
|
+
}
|
1817
|
+
if (false) {
|
1818
|
+
return ["node", [path2.join(__dirname, "..", "bin", "esbuild")]];
|
1819
|
+
} else {
|
1820
|
+
const { binPath, isWASM } = generateBinPath();
|
1821
|
+
if (isWASM) {
|
1822
|
+
return ["node", [binPath]];
|
1823
|
+
} else {
|
1824
|
+
return [binPath, []];
|
1825
|
+
}
|
1826
|
+
}
|
1827
|
+
};
|
1828
|
+
var isTTY = () => tty.isatty(2);
|
1829
|
+
var fsSync = {
|
1830
|
+
readFile(tempFile, callback) {
|
1831
|
+
try {
|
1832
|
+
let contents = fs2.readFileSync(tempFile, "utf8");
|
1833
|
+
try {
|
1834
|
+
fs2.unlinkSync(tempFile);
|
1835
|
+
} catch {
|
1836
|
+
}
|
1837
|
+
callback(null, contents);
|
1838
|
+
} catch (err) {
|
1839
|
+
callback(err, null);
|
1840
|
+
}
|
1841
|
+
},
|
1842
|
+
writeFile(contents, callback) {
|
1843
|
+
try {
|
1844
|
+
let tempFile = randomFileName();
|
1845
|
+
fs2.writeFileSync(tempFile, contents);
|
1846
|
+
callback(tempFile);
|
1847
|
+
} catch {
|
1848
|
+
callback(null);
|
1849
|
+
}
|
1850
|
+
}
|
1851
|
+
};
|
1852
|
+
var fsAsync = {
|
1853
|
+
readFile(tempFile, callback) {
|
1854
|
+
try {
|
1855
|
+
fs2.readFile(tempFile, "utf8", (err, contents) => {
|
1856
|
+
try {
|
1857
|
+
fs2.unlink(tempFile, () => callback(err, contents));
|
1858
|
+
} catch {
|
1859
|
+
callback(err, contents);
|
1860
|
+
}
|
1861
|
+
});
|
1862
|
+
} catch (err) {
|
1863
|
+
callback(err, null);
|
1864
|
+
}
|
1865
|
+
},
|
1866
|
+
writeFile(contents, callback) {
|
1867
|
+
try {
|
1868
|
+
let tempFile = randomFileName();
|
1869
|
+
fs2.writeFile(tempFile, contents, (err) => err !== null ? callback(null) : callback(tempFile));
|
1870
|
+
} catch {
|
1871
|
+
callback(null);
|
1872
|
+
}
|
1873
|
+
}
|
1874
|
+
};
|
1875
|
+
var version = "0.25.9";
|
1876
|
+
var build = (options) => ensureServiceIsRunning().build(options);
|
1877
|
+
var context = (buildOptions) => ensureServiceIsRunning().context(buildOptions);
|
1878
|
+
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
|
1879
|
+
var formatMessages = (messages, options) => ensureServiceIsRunning().formatMessages(messages, options);
|
1880
|
+
var analyzeMetafile = (messages, options) => ensureServiceIsRunning().analyzeMetafile(messages, options);
|
1881
|
+
var buildSync = (options) => {
|
1882
|
+
if (worker_threads && !isInternalWorkerThread) {
|
1883
|
+
if (!workerThreadService) workerThreadService = startWorkerThreadService(worker_threads);
|
1884
|
+
return workerThreadService.buildSync(options);
|
1885
|
+
}
|
1886
|
+
let result;
|
1887
|
+
runServiceSync((service) => service.buildOrContext({
|
1888
|
+
callName: "buildSync",
|
1889
|
+
refs: null,
|
1890
|
+
options,
|
1891
|
+
isTTY: isTTY(),
|
1892
|
+
defaultWD,
|
1893
|
+
callback: (err, res) => {
|
1894
|
+
if (err) throw err;
|
1895
|
+
result = res;
|
1896
|
+
}
|
1897
|
+
}));
|
1898
|
+
return result;
|
1899
|
+
};
|
1900
|
+
var transformSync = (input, options) => {
|
1901
|
+
if (worker_threads && !isInternalWorkerThread) {
|
1902
|
+
if (!workerThreadService) workerThreadService = startWorkerThreadService(worker_threads);
|
1903
|
+
return workerThreadService.transformSync(input, options);
|
1904
|
+
}
|
1905
|
+
let result;
|
1906
|
+
runServiceSync((service) => service.transform({
|
1907
|
+
callName: "transformSync",
|
1908
|
+
refs: null,
|
1909
|
+
input,
|
1910
|
+
options: options || {},
|
1911
|
+
isTTY: isTTY(),
|
1912
|
+
fs: fsSync,
|
1913
|
+
callback: (err, res) => {
|
1914
|
+
if (err) throw err;
|
1915
|
+
result = res;
|
1916
|
+
}
|
1917
|
+
}));
|
1918
|
+
return result;
|
1919
|
+
};
|
1920
|
+
var formatMessagesSync = (messages, options) => {
|
1921
|
+
if (worker_threads && !isInternalWorkerThread) {
|
1922
|
+
if (!workerThreadService) workerThreadService = startWorkerThreadService(worker_threads);
|
1923
|
+
return workerThreadService.formatMessagesSync(messages, options);
|
1924
|
+
}
|
1925
|
+
let result;
|
1926
|
+
runServiceSync((service) => service.formatMessages({
|
1927
|
+
callName: "formatMessagesSync",
|
1928
|
+
refs: null,
|
1929
|
+
messages,
|
1930
|
+
options,
|
1931
|
+
callback: (err, res) => {
|
1932
|
+
if (err) throw err;
|
1933
|
+
result = res;
|
1934
|
+
}
|
1935
|
+
}));
|
1936
|
+
return result;
|
1937
|
+
};
|
1938
|
+
var analyzeMetafileSync = (metafile, options) => {
|
1939
|
+
if (worker_threads && !isInternalWorkerThread) {
|
1940
|
+
if (!workerThreadService) workerThreadService = startWorkerThreadService(worker_threads);
|
1941
|
+
return workerThreadService.analyzeMetafileSync(metafile, options);
|
1942
|
+
}
|
1943
|
+
let result;
|
1944
|
+
runServiceSync((service) => service.analyzeMetafile({
|
1945
|
+
callName: "analyzeMetafileSync",
|
1946
|
+
refs: null,
|
1947
|
+
metafile: typeof metafile === "string" ? metafile : JSON.stringify(metafile),
|
1948
|
+
options,
|
1949
|
+
callback: (err, res) => {
|
1950
|
+
if (err) throw err;
|
1951
|
+
result = res;
|
1952
|
+
}
|
1953
|
+
}));
|
1954
|
+
return result;
|
1955
|
+
};
|
1956
|
+
var stop = () => {
|
1957
|
+
if (stopService) stopService();
|
1958
|
+
if (workerThreadService) workerThreadService.stop();
|
1959
|
+
return Promise.resolve();
|
1960
|
+
};
|
1961
|
+
var initializeWasCalled = false;
|
1962
|
+
var initialize = (options) => {
|
1963
|
+
options = validateInitializeOptions(options || {});
|
1964
|
+
if (options.wasmURL) throw new Error(`The "wasmURL" option only works in the browser`);
|
1965
|
+
if (options.wasmModule) throw new Error(`The "wasmModule" option only works in the browser`);
|
1966
|
+
if (options.worker) throw new Error(`The "worker" option only works in the browser`);
|
1967
|
+
if (initializeWasCalled) throw new Error('Cannot call "initialize" more than once');
|
1968
|
+
ensureServiceIsRunning();
|
1969
|
+
initializeWasCalled = true;
|
1970
|
+
return Promise.resolve();
|
1971
|
+
};
|
1972
|
+
var defaultWD = process.cwd();
|
1973
|
+
var longLivedService;
|
1974
|
+
var stopService;
|
1975
|
+
var ensureServiceIsRunning = () => {
|
1976
|
+
if (longLivedService) return longLivedService;
|
1977
|
+
let [command, args] = esbuildCommandAndArgs();
|
1978
|
+
let child = child_process.spawn(command, args.concat(`--service=${"0.25.9"}`, "--ping"), {
|
1979
|
+
windowsHide: true,
|
1980
|
+
stdio: ["pipe", "pipe", "inherit"],
|
1981
|
+
cwd: defaultWD
|
1982
|
+
});
|
1983
|
+
let { readFromStdout, afterClose, service } = createChannel({
|
1984
|
+
writeToStdin(bytes) {
|
1985
|
+
child.stdin.write(bytes, (err) => {
|
1986
|
+
if (err) afterClose(err);
|
1987
|
+
});
|
1988
|
+
},
|
1989
|
+
readFileSync: fs2.readFileSync,
|
1990
|
+
isSync: false,
|
1991
|
+
hasFS: true,
|
1992
|
+
esbuild: node_exports
|
1993
|
+
});
|
1994
|
+
child.stdin.on("error", afterClose);
|
1995
|
+
child.on("error", afterClose);
|
1996
|
+
const stdin = child.stdin;
|
1997
|
+
const stdout = child.stdout;
|
1998
|
+
stdout.on("data", readFromStdout);
|
1999
|
+
stdout.on("end", afterClose);
|
2000
|
+
stopService = () => {
|
2001
|
+
stdin.destroy();
|
2002
|
+
stdout.destroy();
|
2003
|
+
child.kill();
|
2004
|
+
initializeWasCalled = false;
|
2005
|
+
longLivedService = void 0;
|
2006
|
+
stopService = void 0;
|
2007
|
+
};
|
2008
|
+
let refCount = 0;
|
2009
|
+
child.unref();
|
2010
|
+
if (stdin.unref) {
|
2011
|
+
stdin.unref();
|
2012
|
+
}
|
2013
|
+
if (stdout.unref) {
|
2014
|
+
stdout.unref();
|
2015
|
+
}
|
2016
|
+
const refs = {
|
2017
|
+
ref() {
|
2018
|
+
if (++refCount === 1) child.ref();
|
2019
|
+
},
|
2020
|
+
unref() {
|
2021
|
+
if (--refCount === 0) child.unref();
|
2022
|
+
}
|
2023
|
+
};
|
2024
|
+
longLivedService = {
|
2025
|
+
build: (options) => new Promise((resolve, reject) => {
|
2026
|
+
service.buildOrContext({
|
2027
|
+
callName: "build",
|
2028
|
+
refs,
|
2029
|
+
options,
|
2030
|
+
isTTY: isTTY(),
|
2031
|
+
defaultWD,
|
2032
|
+
callback: (err, res) => err ? reject(err) : resolve(res)
|
2033
|
+
});
|
2034
|
+
}),
|
2035
|
+
context: (options) => new Promise((resolve, reject) => service.buildOrContext({
|
2036
|
+
callName: "context",
|
2037
|
+
refs,
|
2038
|
+
options,
|
2039
|
+
isTTY: isTTY(),
|
2040
|
+
defaultWD,
|
2041
|
+
callback: (err, res) => err ? reject(err) : resolve(res)
|
2042
|
+
})),
|
2043
|
+
transform: (input, options) => new Promise((resolve, reject) => service.transform({
|
2044
|
+
callName: "transform",
|
2045
|
+
refs,
|
2046
|
+
input,
|
2047
|
+
options: options || {},
|
2048
|
+
isTTY: isTTY(),
|
2049
|
+
fs: fsAsync,
|
2050
|
+
callback: (err, res) => err ? reject(err) : resolve(res)
|
2051
|
+
})),
|
2052
|
+
formatMessages: (messages, options) => new Promise((resolve, reject) => service.formatMessages({
|
2053
|
+
callName: "formatMessages",
|
2054
|
+
refs,
|
2055
|
+
messages,
|
2056
|
+
options,
|
2057
|
+
callback: (err, res) => err ? reject(err) : resolve(res)
|
2058
|
+
})),
|
2059
|
+
analyzeMetafile: (metafile, options) => new Promise((resolve, reject) => service.analyzeMetafile({
|
2060
|
+
callName: "analyzeMetafile",
|
2061
|
+
refs,
|
2062
|
+
metafile: typeof metafile === "string" ? metafile : JSON.stringify(metafile),
|
2063
|
+
options,
|
2064
|
+
callback: (err, res) => err ? reject(err) : resolve(res)
|
2065
|
+
}))
|
2066
|
+
};
|
2067
|
+
return longLivedService;
|
2068
|
+
};
|
2069
|
+
var runServiceSync = (callback) => {
|
2070
|
+
let [command, args] = esbuildCommandAndArgs();
|
2071
|
+
let stdin = new Uint8Array();
|
2072
|
+
let { readFromStdout, afterClose, service } = createChannel({
|
2073
|
+
writeToStdin(bytes) {
|
2074
|
+
if (stdin.length !== 0) throw new Error("Must run at most one command");
|
2075
|
+
stdin = bytes;
|
2076
|
+
},
|
2077
|
+
isSync: true,
|
2078
|
+
hasFS: true,
|
2079
|
+
esbuild: node_exports
|
2080
|
+
});
|
2081
|
+
callback(service);
|
2082
|
+
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.25.9"}`), {
|
2083
|
+
cwd: defaultWD,
|
2084
|
+
windowsHide: true,
|
2085
|
+
input: stdin,
|
2086
|
+
// We don't know how large the output could be. If it's too large, the
|
2087
|
+
// command will fail with ENOBUFS. Reserve 16mb for now since that feels
|
2088
|
+
// like it should be enough. Also allow overriding this with an environment
|
2089
|
+
// variable.
|
2090
|
+
maxBuffer: +process.env.ESBUILD_MAX_BUFFER || 16 * 1024 * 1024
|
2091
|
+
});
|
2092
|
+
readFromStdout(stdout);
|
2093
|
+
afterClose(null);
|
2094
|
+
};
|
2095
|
+
var randomFileName = () => {
|
2096
|
+
return path2.join(os2.tmpdir(), `esbuild-${crypto.randomBytes(32).toString("hex")}`);
|
2097
|
+
};
|
2098
|
+
var workerThreadService = null;
|
2099
|
+
var startWorkerThreadService = (worker_threads2) => {
|
2100
|
+
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
|
2101
|
+
let worker = new worker_threads2.Worker(__filename, {
|
2102
|
+
workerData: { workerPort, defaultWD, esbuildVersion: "0.25.9" },
|
2103
|
+
transferList: [workerPort],
|
2104
|
+
// From node's documentation: https://nodejs.org/api/worker_threads.html
|
2105
|
+
//
|
2106
|
+
// Take care when launching worker threads from preload scripts (scripts loaded
|
2107
|
+
// and run using the `-r` command line flag). Unless the `execArgv` option is
|
2108
|
+
// explicitly set, new Worker threads automatically inherit the command line flags
|
2109
|
+
// from the running process and will preload the same preload scripts as the main
|
2110
|
+
// thread. If the preload script unconditionally launches a worker thread, every
|
2111
|
+
// thread spawned will spawn another until the application crashes.
|
2112
|
+
//
|
2113
|
+
execArgv: []
|
2114
|
+
});
|
2115
|
+
let nextID = 0;
|
2116
|
+
let fakeBuildError = (text) => {
|
2117
|
+
let error = new Error(`Build failed with 1 error:
|
2118
|
+
error: ${text}`);
|
2119
|
+
let errors = [{ id: "", pluginName: "", text, location: null, notes: [], detail: void 0 }];
|
2120
|
+
error.errors = errors;
|
2121
|
+
error.warnings = [];
|
2122
|
+
return error;
|
2123
|
+
};
|
2124
|
+
let validateBuildSyncOptions = (options) => {
|
2125
|
+
if (!options) return;
|
2126
|
+
let plugins = options.plugins;
|
2127
|
+
if (plugins && plugins.length > 0) throw fakeBuildError(`Cannot use plugins in synchronous API calls`);
|
2128
|
+
};
|
2129
|
+
let applyProperties = (object, properties) => {
|
2130
|
+
for (let key in properties) {
|
2131
|
+
object[key] = properties[key];
|
2132
|
+
}
|
2133
|
+
};
|
2134
|
+
let runCallSync = (command, args) => {
|
2135
|
+
let id = nextID++;
|
2136
|
+
let sharedBuffer = new SharedArrayBuffer(8);
|
2137
|
+
let sharedBufferView = new Int32Array(sharedBuffer);
|
2138
|
+
let msg = { sharedBuffer, id, command, args };
|
2139
|
+
worker.postMessage(msg);
|
2140
|
+
let status = Atomics.wait(sharedBufferView, 0, 0);
|
2141
|
+
if (status !== "ok" && status !== "not-equal") throw new Error("Internal error: Atomics.wait() failed: " + status);
|
2142
|
+
let { message: { id: id2, resolve, reject, properties } } = worker_threads2.receiveMessageOnPort(mainPort);
|
2143
|
+
if (id !== id2) throw new Error(`Internal error: Expected id ${id} but got id ${id2}`);
|
2144
|
+
if (reject) {
|
2145
|
+
applyProperties(reject, properties);
|
2146
|
+
throw reject;
|
2147
|
+
}
|
2148
|
+
return resolve;
|
2149
|
+
};
|
2150
|
+
worker.unref();
|
2151
|
+
return {
|
2152
|
+
buildSync(options) {
|
2153
|
+
validateBuildSyncOptions(options);
|
2154
|
+
return runCallSync("build", [options]);
|
2155
|
+
},
|
2156
|
+
transformSync(input, options) {
|
2157
|
+
return runCallSync("transform", [input, options]);
|
2158
|
+
},
|
2159
|
+
formatMessagesSync(messages, options) {
|
2160
|
+
return runCallSync("formatMessages", [messages, options]);
|
2161
|
+
},
|
2162
|
+
analyzeMetafileSync(metafile, options) {
|
2163
|
+
return runCallSync("analyzeMetafile", [metafile, options]);
|
2164
|
+
},
|
2165
|
+
stop() {
|
2166
|
+
worker.terminate();
|
2167
|
+
workerThreadService = null;
|
2168
|
+
}
|
2169
|
+
};
|
2170
|
+
};
|
2171
|
+
var startSyncServiceWorker = () => {
|
2172
|
+
let workerPort = worker_threads.workerData.workerPort;
|
2173
|
+
let parentPort = worker_threads.parentPort;
|
2174
|
+
let extractProperties = (object) => {
|
2175
|
+
let properties = {};
|
2176
|
+
if (object && typeof object === "object") {
|
2177
|
+
for (let key in object) {
|
2178
|
+
properties[key] = object[key];
|
2179
|
+
}
|
2180
|
+
}
|
2181
|
+
return properties;
|
2182
|
+
};
|
2183
|
+
try {
|
2184
|
+
let service = ensureServiceIsRunning();
|
2185
|
+
defaultWD = worker_threads.workerData.defaultWD;
|
2186
|
+
parentPort.on("message", (msg) => {
|
2187
|
+
(async () => {
|
2188
|
+
let { sharedBuffer, id, command, args } = msg;
|
2189
|
+
let sharedBufferView = new Int32Array(sharedBuffer);
|
2190
|
+
try {
|
2191
|
+
switch (command) {
|
2192
|
+
case "build":
|
2193
|
+
workerPort.postMessage({ id, resolve: await service.build(args[0]) });
|
2194
|
+
break;
|
2195
|
+
case "transform":
|
2196
|
+
workerPort.postMessage({ id, resolve: await service.transform(args[0], args[1]) });
|
2197
|
+
break;
|
2198
|
+
case "formatMessages":
|
2199
|
+
workerPort.postMessage({ id, resolve: await service.formatMessages(args[0], args[1]) });
|
2200
|
+
break;
|
2201
|
+
case "analyzeMetafile":
|
2202
|
+
workerPort.postMessage({ id, resolve: await service.analyzeMetafile(args[0], args[1]) });
|
2203
|
+
break;
|
2204
|
+
default:
|
2205
|
+
throw new Error(`Invalid command: ${command}`);
|
2206
|
+
}
|
2207
|
+
} catch (reject) {
|
2208
|
+
workerPort.postMessage({ id, reject, properties: extractProperties(reject) });
|
2209
|
+
}
|
2210
|
+
Atomics.add(sharedBufferView, 0, 1);
|
2211
|
+
Atomics.notify(sharedBufferView, 0, Infinity);
|
2212
|
+
})();
|
2213
|
+
});
|
2214
|
+
} catch (reject) {
|
2215
|
+
parentPort.on("message", (msg) => {
|
2216
|
+
let { sharedBuffer, id } = msg;
|
2217
|
+
let sharedBufferView = new Int32Array(sharedBuffer);
|
2218
|
+
workerPort.postMessage({ id, reject, properties: extractProperties(reject) });
|
2219
|
+
Atomics.add(sharedBufferView, 0, 1);
|
2220
|
+
Atomics.notify(sharedBufferView, 0, Infinity);
|
2221
|
+
});
|
2222
|
+
}
|
2223
|
+
};
|
2224
|
+
if (isInternalWorkerThread) {
|
2225
|
+
startSyncServiceWorker();
|
2226
|
+
}
|
2227
|
+
var node_default = node_exports;
|
2228
|
+
// Annotate the CommonJS export names for ESM import in node:
|
2229
|
+
0 && (module.exports = {
|
2230
|
+
analyzeMetafile,
|
2231
|
+
analyzeMetafileSync,
|
2232
|
+
build,
|
2233
|
+
buildSync,
|
2234
|
+
context,
|
2235
|
+
formatMessages,
|
2236
|
+
formatMessagesSync,
|
2237
|
+
initialize,
|
2238
|
+
stop,
|
2239
|
+
transform,
|
2240
|
+
transformSync,
|
2241
|
+
version
|
2242
|
+
});
|