@lvce-editor/static-server 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +3 -0
- package/package.json +21 -0
- package/src/parts/Assert/Assert.js +1 -0
- package/src/parts/CachingHeaders/CachingHeaders.js +3 -0
- package/src/parts/CompatServerResponse/CompatServerResponse.js +10 -0
- package/src/parts/CrossOriginEmbedderPolicy/CrossOriginEmbedderPolicy.js +1 -0
- package/src/parts/CrossOriginResourcePolicy/CrossOriginResourcePolicy.js +1 -0
- package/src/parts/GetHeaders/GetHeaders.js +21 -0
- package/src/parts/GetMimeType/GetMimeType.js +30 -0
- package/src/parts/HandleMessageFromParent/HandleMessageFromParent.js +15 -0
- package/src/parts/HandleUncaughtExceptionMonitor/HandleUncaughtExceptionMonitor.js +3 -0
- package/src/parts/HttpHeader/HttpHeader.js +9 -0
- package/src/parts/HttpServerResponse/HttpServerResponse.js +17 -0
- package/src/parts/HttpServerResponseStream/HttpServerResponseStream.js +24 -0
- package/src/parts/HttpStatusCode/HttpStatusCode.js +5 -0
- package/src/parts/Main/Main.js +10 -0
- package/src/parts/MimeType/MimeType.js +37 -0
- package/src/parts/PipelineResponse/PipelineResponse.js +5 -0
- package/src/parts/Root/Root.js +6 -0
- package/src/parts/SetHeaders/SetHeaders.js +5 -0
- package/src/parts/Static/Static.js +4 -0
- package/src/static-server.js +3 -0
- package/static/c76328b/config/colorTheme.json +98 -0
- package/static/c76328b/config/defaultSettings.json +58 -0
- package/static/c76328b/config/fileMap.json +16 -0
- package/static/c76328b/config/webExtensions.json +1 -0
- package/static/c76328b/css/App.css +2881 -0
- package/static/c76328b/css/parts/Animation.css +9 -0
- package/static/c76328b/css/parts/DebugButtons.css +22 -0
- package/static/c76328b/css/parts/DebugValue.css +24 -0
- package/static/c76328b/css/parts/E2eTest.css +48 -0
- package/static/c76328b/css/parts/E2eTests.css +30 -0
- package/static/c76328b/css/parts/EditorHover.css +6 -0
- package/static/c76328b/css/parts/EditorMessage.css +23 -0
- package/static/c76328b/css/parts/ImagePreview.css +33 -0
- package/static/c76328b/css/parts/InlineDiffEditor.css +27 -0
- package/static/c76328b/css/parts/Key.css +12 -0
- package/static/c76328b/css/parts/KeyBindingsHeader.css +36 -0
- package/static/c76328b/css/parts/KeyBindingsTable.css +51 -0
- package/static/c76328b/css/parts/Markdown.css +701 -0
- package/static/c76328b/css/parts/Progress.css +5 -0
- package/static/c76328b/css/parts/SearchToggleButton.css +16 -0
- package/static/c76328b/css/parts/Select.css +11 -0
- package/static/c76328b/css/parts/ViewletAbout.css +9 -0
- package/static/c76328b/css/parts/ViewletBrowserViewOverview.css +4 -0
- package/static/c76328b/css/parts/ViewletDebugConsole.css +16 -0
- package/static/c76328b/css/parts/ViewletDefineKeyBinding.css +21 -0
- package/static/c76328b/css/parts/ViewletDialog.css +150 -0
- package/static/c76328b/css/parts/ViewletDiffEditor.css +31 -0
- package/static/c76328b/css/parts/ViewletEditorWidgetError.css +9 -0
- package/static/c76328b/css/parts/ViewletExtensionDetail.css +79 -0
- package/static/c76328b/css/parts/ViewletExtensions.css +185 -0
- package/static/c76328b/css/parts/ViewletKeyBindings.css +34 -0
- package/static/c76328b/css/parts/ViewletMedia.css +23 -0
- package/static/c76328b/css/parts/ViewletOutput.css +17 -0
- package/static/c76328b/css/parts/ViewletPanel.css +23 -0
- package/static/c76328b/css/parts/ViewletPanelTabs.css +35 -0
- package/static/c76328b/css/parts/ViewletPdf.css +49 -0
- package/static/c76328b/css/parts/ViewletProblems.css +95 -0
- package/static/c76328b/css/parts/ViewletReferences.css +22 -0
- package/static/c76328b/css/parts/ViewletRunAndDebug.css +87 -0
- package/static/c76328b/css/parts/ViewletScreenCapture.css +3 -0
- package/static/c76328b/css/parts/ViewletSearch.css +34 -0
- package/static/c76328b/css/parts/ViewletSimpleBrowser.css +21 -0
- package/static/c76328b/css/parts/ViewletSourceControl.css +67 -0
- package/static/c76328b/css/parts/ViewletStorage.css +21 -0
- package/static/c76328b/css/parts/ViewletTerminal.css +10 -0
- package/static/c76328b/css/parts/ViewletTerminalTabs.css +31 -0
- package/static/c76328b/extensions/builtin.language-basics-bat/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-bat/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-bat/languageConfiguration.json +17 -0
- package/static/c76328b/extensions/builtin.language-basics-bat/src/tokenizeBat.js +33 -0
- package/static/c76328b/extensions/builtin.language-basics-c/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-c/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-c/src/tokenizeC.js +211 -0
- package/static/c76328b/extensions/builtin.language-basics-coffeescript/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-coffeescript/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-coffeescript/src/tokenizeCoffeeScript.js +257 -0
- package/static/c76328b/extensions/builtin.language-basics-cpp/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-cpp/extension.json +32 -0
- package/static/c76328b/extensions/builtin.language-basics-cpp/languageConfiguration.json +5 -0
- package/static/c76328b/extensions/builtin.language-basics-cpp/src/tokenizeCpp.js +321 -0
- package/static/c76328b/extensions/builtin.language-basics-cson/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-cson/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-cson/languageConfiguration.json +21 -0
- package/static/c76328b/extensions/builtin.language-basics-cson/src/tokenizeCson.js +207 -0
- package/static/c76328b/extensions/builtin.language-basics-css/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-css/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-css/languageConfiguration.json +21 -0
- package/static/c76328b/extensions/builtin.language-basics-css/src/tokenizeCss.js +691 -0
- package/static/c76328b/extensions/builtin.language-basics-dart/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-dart/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-dart/src/tokenizeDart.js +139 -0
- package/static/c76328b/extensions/builtin.language-basics-desktop/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-desktop/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-desktop/src/tokenizeDesktop.js +166 -0
- package/static/c76328b/extensions/builtin.language-basics-docker/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-docker/extension.json +24 -0
- package/static/c76328b/extensions/builtin.language-basics-docker/src/tokenizeDockerfile.js +131 -0
- package/static/c76328b/extensions/builtin.language-basics-dotenv/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-dotenv/extension.json +26 -0
- package/static/c76328b/extensions/builtin.language-basics-dotenv/src/tokenizeDotenv.js +341 -0
- package/static/c76328b/extensions/builtin.language-basics-editorconfig/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-editorconfig/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-editorconfig/src/tokenizeEditorConfig.js +173 -0
- package/static/c76328b/extensions/builtin.language-basics-elixir/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-elixir/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-elixir/src/tokenizeElixir.js +180 -0
- package/static/c76328b/extensions/builtin.language-basics-elm/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-elm/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-elm/src/tokenizeElm.js +301 -0
- package/static/c76328b/extensions/builtin.language-basics-gitattributes/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-gitattributes/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-gitattributes/src/tokenizeGitAttributes.js +159 -0
- package/static/c76328b/extensions/builtin.language-basics-gn/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-gn/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-gn/src/tokenizeGn.js +178 -0
- package/static/c76328b/extensions/builtin.language-basics-go/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-go/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-go/src/tokenizeGo.js +295 -0
- package/static/c76328b/extensions/builtin.language-basics-graphql/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-graphql/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-graphql/src/tokenizeGraphql.js +452 -0
- package/static/c76328b/extensions/builtin.language-basics-html/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-html/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-html/languageConfiguration.json +66 -0
- package/static/c76328b/extensions/builtin.language-basics-html/src/tokenizeHtml.js +557 -0
- package/static/c76328b/extensions/builtin.language-basics-java/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-java/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-java/languageConfiguration.json +31 -0
- package/static/c76328b/extensions/builtin.language-basics-java/src/tokenizeJava.js +284 -0
- package/static/c76328b/extensions/builtin.language-basics-javascript/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-javascript/extension.json +14 -0
- package/static/c76328b/extensions/builtin.language-basics-javascript/languageConfiguration.json +40 -0
- package/static/c76328b/extensions/builtin.language-basics-javascript/src/tokenizeJavaScript.js +619 -0
- package/static/c76328b/extensions/builtin.language-basics-json/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-json/extension.json +60 -0
- package/static/c76328b/extensions/builtin.language-basics-json/src/tokenizeJson.js +362 -0
- package/static/c76328b/extensions/builtin.language-basics-json5/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-json5/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-json5/src/tokenizeJson5.js +346 -0
- package/static/c76328b/extensions/builtin.language-basics-jsx/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-jsx/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-jsx/src/tokenizeJsx.js +661 -0
- package/static/c76328b/extensions/builtin.language-basics-julia/README.md +18 -0
- package/static/c76328b/extensions/builtin.language-basics-julia/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-julia/src/tokenizeJulia.js +181 -0
- package/static/c76328b/extensions/builtin.language-basics-kotlin/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-kotlin/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-kotlin/src/tokenizeKotlin.js +274 -0
- package/static/c76328b/extensions/builtin.language-basics-less/LICENSE +21 -0
- package/static/c76328b/extensions/builtin.language-basics-less/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-less/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-less/languageConfiguration.json +17 -0
- package/static/c76328b/extensions/builtin.language-basics-less/src/tokenizeLess.js +612 -0
- package/static/c76328b/extensions/builtin.language-basics-markdown/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-markdown/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-markdown/src/tokenizeMarkdown.js +471 -0
- package/static/c76328b/extensions/builtin.language-basics-mdx/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-mdx/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-mdx/src/tokenizeMdx.js +395 -0
- package/static/c76328b/extensions/builtin.language-basics-nix/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-nix/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-nix/languageConfiguration.json +21 -0
- package/static/c76328b/extensions/builtin.language-basics-nix/src/tokenizeNix.js +224 -0
- package/static/c76328b/extensions/builtin.language-basics-nvmrc/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-nvmrc/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-nvmrc/src/tokenizeNvmrc.js +30 -0
- package/static/c76328b/extensions/builtin.language-basics-perl/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-perl/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-perl/src/tokenizePerl.js +200 -0
- package/static/c76328b/extensions/builtin.language-basics-plaintext/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-plaintext/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-plaintext/src/tokenizePlaintext.js +28 -0
- package/static/c76328b/extensions/builtin.language-basics-powershell/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-powershell/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-powershell/src/tokenizePowershell.js +141 -0
- package/static/c76328b/extensions/builtin.language-basics-python/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-python/extension.json +15 -0
- package/static/c76328b/extensions/builtin.language-basics-python/languageConfiguration.json +5 -0
- package/static/c76328b/extensions/builtin.language-basics-python/src/tokenizePython.js +326 -0
- package/static/c76328b/extensions/builtin.language-basics-r/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-r/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-r/src/tokenizeR.js +71 -0
- package/static/c76328b/extensions/builtin.language-basics-ruby/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-ruby/extension.json +48 -0
- package/static/c76328b/extensions/builtin.language-basics-ruby/src/tokenizeRuby.js +248 -0
- package/static/c76328b/extensions/builtin.language-basics-rust/LICENSE +21 -0
- package/static/c76328b/extensions/builtin.language-basics-rust/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-rust/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-rust/languageConfiguration.json +17 -0
- package/static/c76328b/extensions/builtin.language-basics-rust/src/tokenizeRust.js +205 -0
- package/static/c76328b/extensions/builtin.language-basics-scss/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-scss/extension.json +12 -0
- package/static/c76328b/extensions/builtin.language-basics-scss/languageConfiguration.json +17 -0
- package/static/c76328b/extensions/builtin.language-basics-scss/src/tokenizeScss.js +683 -0
- package/static/c76328b/extensions/builtin.language-basics-shellscript/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-shellscript/extension.json +56 -0
- package/static/c76328b/extensions/builtin.language-basics-shellscript/src/tokenizeShellScript.js +572 -0
- package/static/c76328b/extensions/builtin.language-basics-svelte/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-svelte/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-svelte/src/tokenizeSvelte.js +428 -0
- package/static/c76328b/extensions/builtin.language-basics-terraform/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-terraform/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-terraform/src/tokenizeTerraform.js +243 -0
- package/static/c76328b/extensions/builtin.language-basics-toml/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-toml/extension.json +14 -0
- package/static/c76328b/extensions/builtin.language-basics-toml/src/tokenizeToml.js +299 -0
- package/static/c76328b/extensions/builtin.language-basics-typescript/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-typescript/extension.json +17 -0
- package/static/c76328b/extensions/builtin.language-basics-typescript/src/tokenizeTypeScript.js +1683 -0
- package/static/c76328b/extensions/builtin.language-basics-vue/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-vue/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-vue/src/tokenizeVue.js +481 -0
- package/static/c76328b/extensions/builtin.language-basics-wgsl/README.md +16 -0
- package/static/c76328b/extensions/builtin.language-basics-wgsl/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-wgsl/languageConfiguration.json +21 -0
- package/static/c76328b/extensions/builtin.language-basics-wgsl/src/tokenizeWgsl.js +226 -0
- package/static/c76328b/extensions/builtin.language-basics-xml/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-xml/extension.json +85 -0
- package/static/c76328b/extensions/builtin.language-basics-xml/src/tokenizeXml.js +328 -0
- package/static/c76328b/extensions/builtin.language-basics-yaml/README.md +14 -0
- package/static/c76328b/extensions/builtin.language-basics-yaml/extension.json +13 -0
- package/static/c76328b/extensions/builtin.language-basics-yaml/src/tokenizeYaml.js +405 -0
- package/static/c76328b/extensions/builtin.theme-atom-one-dark/README.md +11 -0
- package/static/c76328b/extensions/builtin.theme-atom-one-dark/color-theme.json +235 -0
- package/static/c76328b/extensions/builtin.theme-atom-one-dark/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-atom-one-dark/images/demo.png +0 -0
- package/static/c76328b/extensions/builtin.theme-ayu/README.md +11 -0
- package/static/c76328b/extensions/builtin.theme-ayu/color-theme.json +234 -0
- package/static/c76328b/extensions/builtin.theme-ayu/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-cobalt2/README.md +20 -0
- package/static/c76328b/extensions/builtin.theme-cobalt2/color-theme.json +208 -0
- package/static/c76328b/extensions/builtin.theme-cobalt2/extension.json +13 -0
- package/static/c76328b/extensions/builtin.theme-cobalt2/images/demo.png +0 -0
- package/static/c76328b/extensions/builtin.theme-cobalt2/images/logo.png +0 -0
- package/static/c76328b/extensions/builtin.theme-gruvbox/README.md +20 -0
- package/static/c76328b/extensions/builtin.theme-gruvbox/color-theme.json +217 -0
- package/static/c76328b/extensions/builtin.theme-gruvbox/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-high-contrast/README.md +9 -0
- package/static/c76328b/extensions/builtin.theme-high-contrast/color-theme.json +86 -0
- package/static/c76328b/extensions/builtin.theme-high-contrast/extension.json +11 -0
- package/static/c76328b/extensions/builtin.theme-material/README.md +9 -0
- package/static/c76328b/extensions/builtin.theme-material/color-theme.json +183 -0
- package/static/c76328b/extensions/builtin.theme-material/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-monokai/README.md +10 -0
- package/static/c76328b/extensions/builtin.theme-monokai/color-theme.json +151 -0
- package/static/c76328b/extensions/builtin.theme-monokai/extension.json +11 -0
- package/static/c76328b/extensions/builtin.theme-noctis-uva/README.md +11 -0
- package/static/c76328b/extensions/builtin.theme-noctis-uva/color-theme.json +211 -0
- package/static/c76328b/extensions/builtin.theme-noctis-uva/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-noctis-uva/images/demo.png +0 -0
- package/static/c76328b/extensions/builtin.theme-palenight/README.md +11 -0
- package/static/c76328b/extensions/builtin.theme-palenight/color-theme.json +209 -0
- package/static/c76328b/extensions/builtin.theme-palenight/extension.json +12 -0
- package/static/c76328b/extensions/builtin.theme-palenight/images/demo.png +0 -0
- package/static/c76328b/extensions/builtin.theme-slime/README.md +5 -0
- package/static/c76328b/extensions/builtin.theme-slime/color-theme.json +298 -0
- package/static/c76328b/extensions/builtin.theme-slime/extension.json +13 -0
- package/static/c76328b/extensions/builtin.theme-slime/icon.png +0 -0
- package/static/c76328b/extensions/builtin.vscode-icons/README.md +20 -0
- package/static/c76328b/extensions/builtin.vscode-icons/extension.json +13 -0
- package/static/c76328b/extensions/builtin.vscode-icons/icon-theme.json +4151 -0
- package/static/c76328b/extensions/builtin.vscode-icons/icon.png +0 -0
- package/static/c76328b/file-icons/default_file.svg +1 -0
- package/static/c76328b/file-icons/default_folder.svg +1 -0
- package/static/c76328b/file-icons/default_folder_opened.svg +1 -0
- package/static/c76328b/file-icons/default_root_folder.svg +1 -0
- package/static/c76328b/file-icons/default_root_folder_opened.svg +1 -0
- package/static/c76328b/file-icons/file_type_access.svg +1 -0
- package/static/c76328b/file-icons/file_type_access2.svg +1 -0
- package/static/c76328b/file-icons/file_type_actionscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_actionscript2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ada.svg +1 -0
- package/static/c76328b/file-icons/file_type_advpl.svg +1 -0
- package/static/c76328b/file-icons/file_type_affectscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_affinitydesigner.svg +1 -0
- package/static/c76328b/file-icons/file_type_affinityphoto.svg +1 -0
- package/static/c76328b/file-icons/file_type_affinitypublisher.svg +1 -0
- package/static/c76328b/file-icons/file_type_ai.svg +1 -0
- package/static/c76328b/file-icons/file_type_ai2.svg +1 -0
- package/static/c76328b/file-icons/file_type_al.svg +1 -0
- package/static/c76328b/file-icons/file_type_al_dal.svg +1 -0
- package/static/c76328b/file-icons/file_type_allcontributors.svg +1 -0
- package/static/c76328b/file-icons/file_type_angular.svg +1 -0
- package/static/c76328b/file-icons/file_type_ansible.svg +1 -0
- package/static/c76328b/file-icons/file_type_antlr.svg +1 -0
- package/static/c76328b/file-icons/file_type_anyscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_apache.svg +1 -0
- package/static/c76328b/file-icons/file_type_apex.svg +1 -0
- package/static/c76328b/file-icons/file_type_api_extractor.svg +1 -0
- package/static/c76328b/file-icons/file_type_apib.svg +1 -0
- package/static/c76328b/file-icons/file_type_apib2.svg +1 -0
- package/static/c76328b/file-icons/file_type_apl.svg +1 -0
- package/static/c76328b/file-icons/file_type_applescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_appscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_appsemble.svg +1 -0
- package/static/c76328b/file-icons/file_type_appveyor.svg +1 -0
- package/static/c76328b/file-icons/file_type_arduino.svg +1 -0
- package/static/c76328b/file-icons/file_type_asciidoc.svg +1 -0
- package/static/c76328b/file-icons/file_type_asp.svg +1 -0
- package/static/c76328b/file-icons/file_type_aspx.svg +1 -0
- package/static/c76328b/file-icons/file_type_assembly.svg +1 -0
- package/static/c76328b/file-icons/file_type_astro.svg +1 -0
- package/static/c76328b/file-icons/file_type_astroconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_atom.svg +1 -0
- package/static/c76328b/file-icons/file_type_ats.svg +1 -0
- package/static/c76328b/file-icons/file_type_audio.svg +1 -0
- package/static/c76328b/file-icons/file_type_aurelia.svg +1 -0
- package/static/c76328b/file-icons/file_type_autohotkey.svg +1 -0
- package/static/c76328b/file-icons/file_type_autoit.svg +1 -0
- package/static/c76328b/file-icons/file_type_avif.svg +1 -0
- package/static/c76328b/file-icons/file_type_avro.svg +1 -0
- package/static/c76328b/file-icons/file_type_awk.svg +1 -0
- package/static/c76328b/file-icons/file_type_aws.svg +1 -0
- package/static/c76328b/file-icons/file_type_azure.svg +1 -0
- package/static/c76328b/file-icons/file_type_azurepipelines.svg +1 -0
- package/static/c76328b/file-icons/file_type_babel.svg +1 -0
- package/static/c76328b/file-icons/file_type_babel2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ballerina.svg +1 -0
- package/static/c76328b/file-icons/file_type_bat.svg +1 -0
- package/static/c76328b/file-icons/file_type_bats.svg +1 -0
- package/static/c76328b/file-icons/file_type_bazaar.svg +1 -0
- package/static/c76328b/file-icons/file_type_bazel.svg +1 -0
- package/static/c76328b/file-icons/file_type_bazel_ignore.svg +1 -0
- package/static/c76328b/file-icons/file_type_bazel_version.svg +1 -0
- package/static/c76328b/file-icons/file_type_befunge.svg +1 -0
- package/static/c76328b/file-icons/file_type_bicep.svg +1 -0
- package/static/c76328b/file-icons/file_type_biml.svg +1 -0
- package/static/c76328b/file-icons/file_type_binary.svg +1 -0
- package/static/c76328b/file-icons/file_type_biome.svg +1 -0
- package/static/c76328b/file-icons/file_type_bitbucketpipeline.svg +1 -0
- package/static/c76328b/file-icons/file_type_bithound.svg +1 -0
- package/static/c76328b/file-icons/file_type_blade.svg +1 -0
- package/static/c76328b/file-icons/file_type_blitzbasic.svg +1 -0
- package/static/c76328b/file-icons/file_type_bolt.svg +1 -0
- package/static/c76328b/file-icons/file_type_bosque.svg +1 -0
- package/static/c76328b/file-icons/file_type_bower.svg +1 -0
- package/static/c76328b/file-icons/file_type_bower2.svg +1 -0
- package/static/c76328b/file-icons/file_type_browserslist.svg +1 -0
- package/static/c76328b/file-icons/file_type_bruno.svg +1 -0
- package/static/c76328b/file-icons/file_type_buckbuild.svg +1 -0
- package/static/c76328b/file-icons/file_type_buf.svg +1 -0
- package/static/c76328b/file-icons/file_type_bun.svg +1 -0
- package/static/c76328b/file-icons/file_type_bundlemon.svg +1 -0
- package/static/c76328b/file-icons/file_type_bundler.svg +1 -0
- package/static/c76328b/file-icons/file_type_bunfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_c.svg +1 -0
- package/static/c76328b/file-icons/file_type_c2.svg +1 -0
- package/static/c76328b/file-icons/file_type_c3.svg +1 -0
- package/static/c76328b/file-icons/file_type_c_al.svg +1 -0
- package/static/c76328b/file-icons/file_type_cabal.svg +1 -0
- package/static/c76328b/file-icons/file_type_caddy.svg +1 -0
- package/static/c76328b/file-icons/file_type_cake.svg +1 -0
- package/static/c76328b/file-icons/file_type_cakephp.svg +1 -0
- package/static/c76328b/file-icons/file_type_capacitor.svg +1 -0
- package/static/c76328b/file-icons/file_type_cargo.svg +1 -0
- package/static/c76328b/file-icons/file_type_casc.svg +1 -0
- package/static/c76328b/file-icons/file_type_cddl.svg +1 -0
- package/static/c76328b/file-icons/file_type_cert.svg +1 -0
- package/static/c76328b/file-icons/file_type_ceylon.svg +1 -0
- package/static/c76328b/file-icons/file_type_cf.svg +1 -0
- package/static/c76328b/file-icons/file_type_cf2.svg +1 -0
- package/static/c76328b/file-icons/file_type_cfc.svg +1 -0
- package/static/c76328b/file-icons/file_type_cfc2.svg +1 -0
- package/static/c76328b/file-icons/file_type_cfm.svg +1 -0
- package/static/c76328b/file-icons/file_type_cfm2.svg +1 -0
- package/static/c76328b/file-icons/file_type_cheader.svg +1 -0
- package/static/c76328b/file-icons/file_type_chef.svg +1 -0
- package/static/c76328b/file-icons/file_type_chef_cookbook.svg +1 -0
- package/static/c76328b/file-icons/file_type_circleci.svg +1 -0
- package/static/c76328b/file-icons/file_type_class.svg +1 -0
- package/static/c76328b/file-icons/file_type_clojure.svg +1 -0
- package/static/c76328b/file-icons/file_type_clojurescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_cloudfoundry.svg +1 -0
- package/static/c76328b/file-icons/file_type_cmake.svg +1 -0
- package/static/c76328b/file-icons/file_type_cobol.svg +1 -0
- package/static/c76328b/file-icons/file_type_codacy.svg +1 -0
- package/static/c76328b/file-icons/file_type_codeclimate.svg +1 -0
- package/static/c76328b/file-icons/file_type_codecov.svg +1 -0
- package/static/c76328b/file-icons/file_type_codekit.svg +1 -0
- package/static/c76328b/file-icons/file_type_codeowners.svg +1 -0
- package/static/c76328b/file-icons/file_type_codeql.svg +1 -0
- package/static/c76328b/file-icons/file_type_coderabbit.svg +1 -0
- package/static/c76328b/file-icons/file_type_coffeelint.svg +1 -0
- package/static/c76328b/file-icons/file_type_coffeescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_commitizen.svg +1 -0
- package/static/c76328b/file-icons/file_type_commitlint.svg +1 -0
- package/static/c76328b/file-icons/file_type_compass.svg +1 -0
- package/static/c76328b/file-icons/file_type_composer.svg +1 -0
- package/static/c76328b/file-icons/file_type_conan.svg +1 -0
- package/static/c76328b/file-icons/file_type_conda.svg +1 -0
- package/static/c76328b/file-icons/file_type_config.svg +1 -0
- package/static/c76328b/file-icons/file_type_confluence.svg +1 -0
- package/static/c76328b/file-icons/file_type_coverage.svg +1 -0
- package/static/c76328b/file-icons/file_type_coveralls.svg +1 -0
- package/static/c76328b/file-icons/file_type_cpp.svg +1 -0
- package/static/c76328b/file-icons/file_type_cpp2.svg +1 -0
- package/static/c76328b/file-icons/file_type_cpp3.svg +1 -0
- package/static/c76328b/file-icons/file_type_cppheader.svg +1 -0
- package/static/c76328b/file-icons/file_type_crowdin.svg +1 -0
- package/static/c76328b/file-icons/file_type_crystal.svg +1 -0
- package/static/c76328b/file-icons/file_type_csharp.svg +1 -0
- package/static/c76328b/file-icons/file_type_csharp2.svg +1 -0
- package/static/c76328b/file-icons/file_type_cspell.svg +1 -0
- package/static/c76328b/file-icons/file_type_csproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_css.svg +1 -0
- package/static/c76328b/file-icons/file_type_csscomb.svg +1 -0
- package/static/c76328b/file-icons/file_type_csslint.svg +1 -0
- package/static/c76328b/file-icons/file_type_cssmap.svg +1 -0
- package/static/c76328b/file-icons/file_type_cucumber.svg +1 -0
- package/static/c76328b/file-icons/file_type_cuda.svg +1 -0
- package/static/c76328b/file-icons/file_type_cvs.svg +1 -0
- package/static/c76328b/file-icons/file_type_cypress.svg +1 -0
- package/static/c76328b/file-icons/file_type_cypress_spec.svg +1 -0
- package/static/c76328b/file-icons/file_type_cython.svg +1 -0
- package/static/c76328b/file-icons/file_type_dal.svg +1 -0
- package/static/c76328b/file-icons/file_type_darcs.svg +1 -0
- package/static/c76328b/file-icons/file_type_dartlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_dartlang_generated.svg +1 -0
- package/static/c76328b/file-icons/file_type_dartlang_ignore.svg +1 -0
- package/static/c76328b/file-icons/file_type_datadog.svg +1 -0
- package/static/c76328b/file-icons/file_type_db.svg +1 -0
- package/static/c76328b/file-icons/file_type_debian.svg +1 -0
- package/static/c76328b/file-icons/file_type_delphi.svg +1 -0
- package/static/c76328b/file-icons/file_type_deno.svg +1 -0
- package/static/c76328b/file-icons/file_type_denoify.svg +1 -0
- package/static/c76328b/file-icons/file_type_dependabot.svg +1 -0
- package/static/c76328b/file-icons/file_type_dependencies.svg +1 -0
- package/static/c76328b/file-icons/file_type_devcontainer.svg +1 -0
- package/static/c76328b/file-icons/file_type_dhall.svg +1 -0
- package/static/c76328b/file-icons/file_type_diff.svg +1 -0
- package/static/c76328b/file-icons/file_type_django.svg +1 -0
- package/static/c76328b/file-icons/file_type_dlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_docker.svg +1 -0
- package/static/c76328b/file-icons/file_type_docker2.svg +1 -0
- package/static/c76328b/file-icons/file_type_dockertest.svg +1 -0
- package/static/c76328b/file-icons/file_type_dockertest2.svg +1 -0
- package/static/c76328b/file-icons/file_type_docpad.svg +1 -0
- package/static/c76328b/file-icons/file_type_docz.svg +1 -0
- package/static/c76328b/file-icons/file_type_dojo.svg +1 -0
- package/static/c76328b/file-icons/file_type_doppler.svg +1 -0
- package/static/c76328b/file-icons/file_type_dotenv.svg +1 -0
- package/static/c76328b/file-icons/file_type_dotjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_doxygen.svg +1 -0
- package/static/c76328b/file-icons/file_type_drawio.svg +1 -0
- package/static/c76328b/file-icons/file_type_drone.svg +1 -0
- package/static/c76328b/file-icons/file_type_drools.svg +1 -0
- package/static/c76328b/file-icons/file_type_dtd.svg +1 -0
- package/static/c76328b/file-icons/file_type_dustjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_dvc.svg +1 -0
- package/static/c76328b/file-icons/file_type_dylan.svg +1 -0
- package/static/c76328b/file-icons/file_type_earthly.svg +1 -0
- package/static/c76328b/file-icons/file_type_eas-metadata.svg +1 -0
- package/static/c76328b/file-icons/file_type_edge.svg +1 -0
- package/static/c76328b/file-icons/file_type_edge2.svg +1 -0
- package/static/c76328b/file-icons/file_type_editorconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_eex.svg +1 -0
- package/static/c76328b/file-icons/file_type_ejs.svg +1 -0
- package/static/c76328b/file-icons/file_type_elastic.svg +1 -0
- package/static/c76328b/file-icons/file_type_elasticbeanstalk.svg +1 -0
- package/static/c76328b/file-icons/file_type_eleventy.svg +1 -0
- package/static/c76328b/file-icons/file_type_eleventy2.svg +1 -0
- package/static/c76328b/file-icons/file_type_elixir.svg +1 -0
- package/static/c76328b/file-icons/file_type_elm.svg +1 -0
- package/static/c76328b/file-icons/file_type_elm2.svg +1 -0
- package/static/c76328b/file-icons/file_type_emacs.svg +1 -0
- package/static/c76328b/file-icons/file_type_ember.svg +1 -0
- package/static/c76328b/file-icons/file_type_ensime.svg +1 -0
- package/static/c76328b/file-icons/file_type_eps.svg +1 -0
- package/static/c76328b/file-icons/file_type_erb.svg +1 -0
- package/static/c76328b/file-icons/file_type_erlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_erlang2.svg +1 -0
- package/static/c76328b/file-icons/file_type_esbuild.svg +1 -0
- package/static/c76328b/file-icons/file_type_eslint.svg +1 -0
- package/static/c76328b/file-icons/file_type_eslint2.svg +1 -0
- package/static/c76328b/file-icons/file_type_esphome.svg +1 -0
- package/static/c76328b/file-icons/file_type_excalidraw.svg +1 -0
- package/static/c76328b/file-icons/file_type_excel.svg +1 -0
- package/static/c76328b/file-icons/file_type_excel2.svg +1 -0
- package/static/c76328b/file-icons/file_type_expo.svg +1 -0
- package/static/c76328b/file-icons/file_type_falcon.svg +1 -0
- package/static/c76328b/file-icons/file_type_fantasticon.svg +1 -0
- package/static/c76328b/file-icons/file_type_fauna.svg +1 -0
- package/static/c76328b/file-icons/file_type_favicon.svg +1 -0
- package/static/c76328b/file-icons/file_type_fbx.svg +1 -0
- package/static/c76328b/file-icons/file_type_firebase.svg +1 -0
- package/static/c76328b/file-icons/file_type_firebasehosting.svg +1 -0
- package/static/c76328b/file-icons/file_type_firestore.svg +1 -0
- package/static/c76328b/file-icons/file_type_fitbit.svg +1 -0
- package/static/c76328b/file-icons/file_type_fla.svg +1 -0
- package/static/c76328b/file-icons/file_type_flareact.svg +1 -0
- package/static/c76328b/file-icons/file_type_flash.svg +1 -0
- package/static/c76328b/file-icons/file_type_floobits.svg +1 -0
- package/static/c76328b/file-icons/file_type_flow.svg +1 -0
- package/static/c76328b/file-icons/file_type_flutter.svg +1 -0
- package/static/c76328b/file-icons/file_type_flutter_package.svg +1 -0
- package/static/c76328b/file-icons/file_type_font.svg +1 -0
- package/static/c76328b/file-icons/file_type_formkit.svg +1 -0
- package/static/c76328b/file-icons/file_type_fortran.svg +1 -0
- package/static/c76328b/file-icons/file_type_fossa.svg +1 -0
- package/static/c76328b/file-icons/file_type_fossil.svg +1 -0
- package/static/c76328b/file-icons/file_type_freemarker.svg +1 -0
- package/static/c76328b/file-icons/file_type_frontcommerce.svg +1 -0
- package/static/c76328b/file-icons/file_type_fsharp.svg +1 -0
- package/static/c76328b/file-icons/file_type_fsharp2.svg +1 -0
- package/static/c76328b/file-icons/file_type_fsproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_fthtml.svg +1 -0
- package/static/c76328b/file-icons/file_type_funding.svg +1 -0
- package/static/c76328b/file-icons/file_type_fusebox.svg +1 -0
- package/static/c76328b/file-icons/file_type_galen.svg +1 -0
- package/static/c76328b/file-icons/file_type_galen2.svg +1 -0
- package/static/c76328b/file-icons/file_type_gamemaker.svg +1 -0
- package/static/c76328b/file-icons/file_type_gamemaker2.svg +1 -0
- package/static/c76328b/file-icons/file_type_gamemaker81.svg +1 -0
- package/static/c76328b/file-icons/file_type_gatsby.svg +1 -0
- package/static/c76328b/file-icons/file_type_gcloud.svg +1 -0
- package/static/c76328b/file-icons/file_type_gcode.svg +1 -0
- package/static/c76328b/file-icons/file_type_gdscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_genstat.svg +1 -0
- package/static/c76328b/file-icons/file_type_git.svg +1 -0
- package/static/c76328b/file-icons/file_type_git2.svg +1 -0
- package/static/c76328b/file-icons/file_type_gitlab.svg +1 -0
- package/static/c76328b/file-icons/file_type_gitpod.svg +1 -0
- package/static/c76328b/file-icons/file_type_gleam.svg +1 -0
- package/static/c76328b/file-icons/file_type_gleamconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_glide.svg +1 -0
- package/static/c76328b/file-icons/file_type_glitter.svg +1 -0
- package/static/c76328b/file-icons/file_type_glsl.svg +1 -0
- package/static/c76328b/file-icons/file_type_glyphs.svg +1 -0
- package/static/c76328b/file-icons/file_type_gnu.svg +1 -0
- package/static/c76328b/file-icons/file_type_gnuplot.svg +1 -0
- package/static/c76328b/file-icons/file_type_go.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_aqua.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_black.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_fuchsia.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_gopher.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_lightblue.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_package.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_white.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_work.svg +1 -0
- package/static/c76328b/file-icons/file_type_go_yellow.svg +1 -0
- package/static/c76328b/file-icons/file_type_goctl.svg +1 -0
- package/static/c76328b/file-icons/file_type_godot.svg +1 -0
- package/static/c76328b/file-icons/file_type_gpg.svg +1 -0
- package/static/c76328b/file-icons/file_type_gradle.svg +1 -0
- package/static/c76328b/file-icons/file_type_gradle2.svg +1 -0
- package/static/c76328b/file-icons/file_type_grain.svg +1 -0
- package/static/c76328b/file-icons/file_type_graphql.svg +1 -0
- package/static/c76328b/file-icons/file_type_graphql_config.svg +1 -0
- package/static/c76328b/file-icons/file_type_graphviz.svg +1 -0
- package/static/c76328b/file-icons/file_type_greenkeeper.svg +1 -0
- package/static/c76328b/file-icons/file_type_gridsome.svg +1 -0
- package/static/c76328b/file-icons/file_type_groovy.svg +1 -0
- package/static/c76328b/file-icons/file_type_groovy2.svg +1 -0
- package/static/c76328b/file-icons/file_type_grunt.svg +1 -0
- package/static/c76328b/file-icons/file_type_gulp.svg +1 -0
- package/static/c76328b/file-icons/file_type_haml.svg +1 -0
- package/static/c76328b/file-icons/file_type_handlebars.svg +1 -0
- package/static/c76328b/file-icons/file_type_handlebars2.svg +1 -0
- package/static/c76328b/file-icons/file_type_harbour.svg +1 -0
- package/static/c76328b/file-icons/file_type_hardhat.svg +1 -0
- package/static/c76328b/file-icons/file_type_hashicorp.svg +1 -0
- package/static/c76328b/file-icons/file_type_haskell.svg +1 -0
- package/static/c76328b/file-icons/file_type_haskell2.svg +1 -0
- package/static/c76328b/file-icons/file_type_haxe.svg +1 -0
- package/static/c76328b/file-icons/file_type_haxecheckstyle.svg +1 -0
- package/static/c76328b/file-icons/file_type_haxedevelop.svg +1 -0
- package/static/c76328b/file-icons/file_type_helix.svg +1 -0
- package/static/c76328b/file-icons/file_type_helm.svg +1 -0
- package/static/c76328b/file-icons/file_type_hjson.svg +1 -0
- package/static/c76328b/file-icons/file_type_hlsl.svg +1 -0
- package/static/c76328b/file-icons/file_type_homeassistant.svg +1 -0
- package/static/c76328b/file-icons/file_type_horusec.svg +1 -0
- package/static/c76328b/file-icons/file_type_host.svg +1 -0
- package/static/c76328b/file-icons/file_type_html.svg +1 -0
- package/static/c76328b/file-icons/file_type_htmlhint.svg +1 -0
- package/static/c76328b/file-icons/file_type_htmlvalidate.svg +1 -0
- package/static/c76328b/file-icons/file_type_http.svg +1 -0
- package/static/c76328b/file-icons/file_type_hunspell.svg +1 -0
- package/static/c76328b/file-icons/file_type_husky.svg +1 -0
- package/static/c76328b/file-icons/file_type_hy.svg +1 -0
- package/static/c76328b/file-icons/file_type_hygen.svg +1 -0
- package/static/c76328b/file-icons/file_type_hypr.svg +1 -0
- package/static/c76328b/file-icons/file_type_icl.svg +1 -0
- package/static/c76328b/file-icons/file_type_idris.svg +1 -0
- package/static/c76328b/file-icons/file_type_idrisbin.svg +1 -0
- package/static/c76328b/file-icons/file_type_idrispkg.svg +1 -0
- package/static/c76328b/file-icons/file_type_image.svg +1 -0
- package/static/c76328b/file-icons/file_type_imba.svg +1 -0
- package/static/c76328b/file-icons/file_type_inc.svg +1 -0
- package/static/c76328b/file-icons/file_type_infopath.svg +1 -0
- package/static/c76328b/file-icons/file_type_informix.svg +1 -0
- package/static/c76328b/file-icons/file_type_ini.svg +1 -0
- package/static/c76328b/file-icons/file_type_ink.svg +1 -0
- package/static/c76328b/file-icons/file_type_innosetup.svg +1 -0
- package/static/c76328b/file-icons/file_type_io.svg +1 -0
- package/static/c76328b/file-icons/file_type_iodine.svg +1 -0
- package/static/c76328b/file-icons/file_type_ionic.svg +1 -0
- package/static/c76328b/file-icons/file_type_jake.svg +1 -0
- package/static/c76328b/file-icons/file_type_janet.svg +1 -0
- package/static/c76328b/file-icons/file_type_jar.svg +1 -0
- package/static/c76328b/file-icons/file_type_jasmine.svg +1 -0
- package/static/c76328b/file-icons/file_type_java.svg +1 -0
- package/static/c76328b/file-icons/file_type_jbuilder.svg +1 -0
- package/static/c76328b/file-icons/file_type_jekyll.svg +1 -0
- package/static/c76328b/file-icons/file_type_jenkins.svg +1 -0
- package/static/c76328b/file-icons/file_type_jest.svg +1 -0
- package/static/c76328b/file-icons/file_type_jest_snapshot.svg +1 -0
- package/static/c76328b/file-icons/file_type_jinja.svg +1 -0
- package/static/c76328b/file-icons/file_type_jpm.svg +1 -0
- package/static/c76328b/file-icons/file_type_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_js_official.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsbeautify.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_jscpd.svg +1 -0
- package/static/c76328b/file-icons/file_type_jshint.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsmap.svg +1 -0
- package/static/c76328b/file-icons/file_type_json.svg +1 -0
- package/static/c76328b/file-icons/file_type_json2.svg +1 -0
- package/static/c76328b/file-icons/file_type_json5.svg +1 -0
- package/static/c76328b/file-icons/file_type_json_official.svg +1 -0
- package/static/c76328b/file-icons/file_type_json_schema.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsonld.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsonnet.svg +1 -0
- package/static/c76328b/file-icons/file_type_jsp.svg +1 -0
- package/static/c76328b/file-icons/file_type_jss.svg +1 -0
- package/static/c76328b/file-icons/file_type_juice.svg +1 -0
- package/static/c76328b/file-icons/file_type_julia.svg +1 -0
- package/static/c76328b/file-icons/file_type_julia2.svg +1 -0
- package/static/c76328b/file-icons/file_type_jupyter.svg +1 -0
- package/static/c76328b/file-icons/file_type_k.svg +1 -0
- package/static/c76328b/file-icons/file_type_karma.svg +1 -0
- package/static/c76328b/file-icons/file_type_key.svg +1 -0
- package/static/c76328b/file-icons/file_type_kitchenci.svg +1 -0
- package/static/c76328b/file-icons/file_type_kite.svg +1 -0
- package/static/c76328b/file-icons/file_type_kivy.svg +1 -0
- package/static/c76328b/file-icons/file_type_knip.svg +1 -0
- package/static/c76328b/file-icons/file_type_kos.svg +1 -0
- package/static/c76328b/file-icons/file_type_kotlin.svg +1 -0
- package/static/c76328b/file-icons/file_type_kusto.svg +1 -0
- package/static/c76328b/file-icons/file_type_latino.svg +1 -0
- package/static/c76328b/file-icons/file_type_layout.svg +1 -0
- package/static/c76328b/file-icons/file_type_lerna.svg +1 -0
- package/static/c76328b/file-icons/file_type_less.svg +1 -0
- package/static/c76328b/file-icons/file_type_lex.svg +1 -0
- package/static/c76328b/file-icons/file_type_liara.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_base.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_calc.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_draw.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_impress.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_math.svg +1 -0
- package/static/c76328b/file-icons/file_type_libreoffice_writer.svg +1 -0
- package/static/c76328b/file-icons/file_type_license.svg +1 -0
- package/static/c76328b/file-icons/file_type_licensebat.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_actionscript2.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_ada.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_apl.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_astro.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_astroconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_babel.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_babel2.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_cabal.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_circleci.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_cloudfoundry.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_codacy.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_codeclimate.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_codeowners.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_config.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_crystal.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_cypress.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_cypress_spec.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_db.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_deno.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_dhall.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_docpad.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_drone.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_eas-metadata.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_eleventy.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_eleventy2.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_esphome.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_expo.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_firebasehosting.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_fla.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_font.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_gamemaker2.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_gradle.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_hashicorp.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_hjson.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_ini.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_io.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_jsconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_jsmap.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_json.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_json5.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_json_schema.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_jsonld.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_kite.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_lerna.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_mailing.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_mdx-components.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_mdx.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_mlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_mustache.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_netlify.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_next.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_nim.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_nx.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_objidconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_openHAB.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_pcl.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_pnpm.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_prettier.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_prisma.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_purescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_quasar.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_raku.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_razzle.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_rehype.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_remark.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_replit.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_retext.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_rome.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_rubocop.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_rust.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_rust_toolchain.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_safetensors.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_shaderlab.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_solidity.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_spin.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_stylelint.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_stylus.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_symfony.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_systemd.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_systemverilog.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_testcafe.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_testjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_tex.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_tm.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_tmux.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_todo.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_toit.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_toml.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_tree.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_turbo.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_unibeautify.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_vash.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_vercel.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_vsix.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_vsixmanifest.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_xfl.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_xorg.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_yaml.svg +1 -0
- package/static/c76328b/file-icons/file_type_light_zeit.svg +1 -0
- package/static/c76328b/file-icons/file_type_lighthouse.svg +1 -0
- package/static/c76328b/file-icons/file_type_lilypond.svg +1 -0
- package/static/c76328b/file-icons/file_type_lime.svg +1 -0
- package/static/c76328b/file-icons/file_type_lintstagedrc.svg +1 -0
- package/static/c76328b/file-icons/file_type_liquid.svg +1 -0
- package/static/c76328b/file-icons/file_type_lisp.svg +1 -0
- package/static/c76328b/file-icons/file_type_livescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_lnk.svg +1 -0
- package/static/c76328b/file-icons/file_type_locale.svg +1 -0
- package/static/c76328b/file-icons/file_type_log.svg +1 -0
- package/static/c76328b/file-icons/file_type_lolcode.svg +1 -0
- package/static/c76328b/file-icons/file_type_lsl.svg +1 -0
- package/static/c76328b/file-icons/file_type_lua.svg +1 -0
- package/static/c76328b/file-icons/file_type_luau.svg +1 -0
- package/static/c76328b/file-icons/file_type_lync.svg +1 -0
- package/static/c76328b/file-icons/file_type_mailing.svg +1 -0
- package/static/c76328b/file-icons/file_type_makefile.svg +1 -0
- package/static/c76328b/file-icons/file_type_manifest.svg +1 -0
- package/static/c76328b/file-icons/file_type_manifest_bak.svg +1 -0
- package/static/c76328b/file-icons/file_type_manifest_skip.svg +1 -0
- package/static/c76328b/file-icons/file_type_map.svg +1 -0
- package/static/c76328b/file-icons/file_type_mariadb.svg +1 -0
- package/static/c76328b/file-icons/file_type_markdown.svg +1 -0
- package/static/c76328b/file-icons/file_type_markdownlint.svg +1 -0
- package/static/c76328b/file-icons/file_type_markdownlint_ignore.svg +1 -0
- package/static/c76328b/file-icons/file_type_marko.svg +1 -0
- package/static/c76328b/file-icons/file_type_markojs.svg +1 -0
- package/static/c76328b/file-icons/file_type_master-co.svg +1 -0
- package/static/c76328b/file-icons/file_type_matlab.svg +1 -0
- package/static/c76328b/file-icons/file_type_maven.svg +1 -0
- package/static/c76328b/file-icons/file_type_maxscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_maya.svg +1 -0
- package/static/c76328b/file-icons/file_type_mdx-components.svg +1 -0
- package/static/c76328b/file-icons/file_type_mdx.svg +1 -0
- package/static/c76328b/file-icons/file_type_mediawiki.svg +1 -0
- package/static/c76328b/file-icons/file_type_mercurial.svg +1 -0
- package/static/c76328b/file-icons/file_type_mermaid.svg +1 -0
- package/static/c76328b/file-icons/file_type_meson.svg +1 -0
- package/static/c76328b/file-icons/file_type_meteor.svg +1 -0
- package/static/c76328b/file-icons/file_type_mivascript.svg +1 -0
- package/static/c76328b/file-icons/file_type_mjml.svg +1 -0
- package/static/c76328b/file-icons/file_type_mlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_mocha.svg +1 -0
- package/static/c76328b/file-icons/file_type_modernizr.svg +1 -0
- package/static/c76328b/file-icons/file_type_mojo.svg +1 -0
- package/static/c76328b/file-icons/file_type_mojolicious.svg +1 -0
- package/static/c76328b/file-icons/file_type_moleculer.svg +1 -0
- package/static/c76328b/file-icons/file_type_mondoo.svg +1 -0
- package/static/c76328b/file-icons/file_type_mongo.svg +1 -0
- package/static/c76328b/file-icons/file_type_monotone.svg +1 -0
- package/static/c76328b/file-icons/file_type_motif.svg +1 -0
- package/static/c76328b/file-icons/file_type_mson.svg +1 -0
- package/static/c76328b/file-icons/file_type_mustache.svg +1 -0
- package/static/c76328b/file-icons/file_type_mvt.svg +1 -0
- package/static/c76328b/file-icons/file_type_mvtcss.svg +1 -0
- package/static/c76328b/file-icons/file_type_mvtjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_mysql.svg +1 -0
- package/static/c76328b/file-icons/file_type_ndst.svg +1 -0
- package/static/c76328b/file-icons/file_type_nearly.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_adapter_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_adapter_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_controller_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_controller_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_decorator_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_decorator_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_filter_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_filter_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_gateway_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_gateway_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_guard_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_guard_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_interceptor_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_interceptor_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_middleware_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_middleware_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_module_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_module_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_pipe_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_pipe_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_service_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_nest_service_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_nestjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_netlify.svg +1 -0
- package/static/c76328b/file-icons/file_type_next.svg +1 -0
- package/static/c76328b/file-icons/file_type_nextflow.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_css.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_html.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_less.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_sass.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_scss.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_component_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_controller_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_controller_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_directive_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_directive_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_directive_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_directive_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_directive_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_guard_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_guard_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_guard_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_interceptor_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_interceptor_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_interceptor_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_module_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_module_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_module_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_module_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_module_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_pipe_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_pipe_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_pipe_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_pipe_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_pipe_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_routing_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_routing_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_routing_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_routing_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_routing_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_service_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_service_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_service_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_service_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_service_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_smart_component_dart.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_smart_component_js.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_smart_component_js2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_smart_component_ts.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_smart_component_ts2.svg +1 -0
- package/static/c76328b/file-icons/file_type_ng_tailwind.svg +1 -0
- package/static/c76328b/file-icons/file_type_nginx.svg +1 -0
- package/static/c76328b/file-icons/file_type_nim.svg +1 -0
- package/static/c76328b/file-icons/file_type_nimble.svg +1 -0
- package/static/c76328b/file-icons/file_type_ninja.svg +1 -0
- package/static/c76328b/file-icons/file_type_nix.svg +1 -0
- package/static/c76328b/file-icons/file_type_njsproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_noc.svg +1 -0
- package/static/c76328b/file-icons/file_type_node.svg +1 -0
- package/static/c76328b/file-icons/file_type_node2.svg +1 -0
- package/static/c76328b/file-icons/file_type_nodemon.svg +1 -0
- package/static/c76328b/file-icons/file_type_npm.svg +1 -0
- package/static/c76328b/file-icons/file_type_nsi.svg +1 -0
- package/static/c76328b/file-icons/file_type_nsri-integrity.svg +1 -0
- package/static/c76328b/file-icons/file_type_nsri.svg +1 -0
- package/static/c76328b/file-icons/file_type_nuget.svg +1 -0
- package/static/c76328b/file-icons/file_type_numpy.svg +1 -0
- package/static/c76328b/file-icons/file_type_nunjucks.svg +1 -0
- package/static/c76328b/file-icons/file_type_nuxt.svg +1 -0
- package/static/c76328b/file-icons/file_type_nx.svg +1 -0
- package/static/c76328b/file-icons/file_type_nyc.svg +1 -0
- package/static/c76328b/file-icons/file_type_objectivec.svg +1 -0
- package/static/c76328b/file-icons/file_type_objectivecpp.svg +1 -0
- package/static/c76328b/file-icons/file_type_objidconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_ocaml.svg +1 -0
- package/static/c76328b/file-icons/file_type_ocaml_intf.svg +1 -0
- package/static/c76328b/file-icons/file_type_ogone.svg +1 -0
- package/static/c76328b/file-icons/file_type_onenote.svg +1 -0
- package/static/c76328b/file-icons/file_type_openHAB.svg +1 -0
- package/static/c76328b/file-icons/file_type_opencl.svg +1 -0
- package/static/c76328b/file-icons/file_type_openscad.svg +1 -0
- package/static/c76328b/file-icons/file_type_org.svg +1 -0
- package/static/c76328b/file-icons/file_type_outlook.svg +1 -0
- package/static/c76328b/file-icons/file_type_ovpn.svg +1 -0
- package/static/c76328b/file-icons/file_type_package.svg +1 -0
- package/static/c76328b/file-icons/file_type_paket.svg +1 -0
- package/static/c76328b/file-icons/file_type_pandacss.svg +1 -0
- package/static/c76328b/file-icons/file_type_patch.svg +1 -0
- package/static/c76328b/file-icons/file_type_pcl.svg +1 -0
- package/static/c76328b/file-icons/file_type_pddl.svg +1 -0
- package/static/c76328b/file-icons/file_type_pddl_happenings.svg +1 -0
- package/static/c76328b/file-icons/file_type_pddl_plan.svg +1 -0
- package/static/c76328b/file-icons/file_type_pdf.svg +1 -0
- package/static/c76328b/file-icons/file_type_pdf2.svg +1 -0
- package/static/c76328b/file-icons/file_type_pdm.svg +1 -0
- package/static/c76328b/file-icons/file_type_peeky.svg +1 -0
- package/static/c76328b/file-icons/file_type_perl.svg +1 -0
- package/static/c76328b/file-icons/file_type_perl2.svg +1 -0
- package/static/c76328b/file-icons/file_type_perl6.svg +1 -0
- package/static/c76328b/file-icons/file_type_pgsql.svg +1 -0
- package/static/c76328b/file-icons/file_type_photoshop.svg +1 -0
- package/static/c76328b/file-icons/file_type_photoshop2.svg +1 -0
- package/static/c76328b/file-icons/file_type_php.svg +1 -0
- package/static/c76328b/file-icons/file_type_php2.svg +1 -0
- package/static/c76328b/file-icons/file_type_php3.svg +1 -0
- package/static/c76328b/file-icons/file_type_phpcsfixer.svg +1 -0
- package/static/c76328b/file-icons/file_type_phpstan.svg +1 -0
- package/static/c76328b/file-icons/file_type_phpunit.svg +1 -0
- package/static/c76328b/file-icons/file_type_phraseapp.svg +1 -0
- package/static/c76328b/file-icons/file_type_pine.svg +1 -0
- package/static/c76328b/file-icons/file_type_pip.svg +1 -0
- package/static/c76328b/file-icons/file_type_pipeline.svg +1 -0
- package/static/c76328b/file-icons/file_type_plantuml.svg +1 -0
- package/static/c76328b/file-icons/file_type_platformio.svg +1 -0
- package/static/c76328b/file-icons/file_type_playwright.svg +1 -0
- package/static/c76328b/file-icons/file_type_plsql.svg +1 -0
- package/static/c76328b/file-icons/file_type_plsql_package.svg +1 -0
- package/static/c76328b/file-icons/file_type_plsql_package_body.svg +1 -0
- package/static/c76328b/file-icons/file_type_plsql_package_header.svg +1 -0
- package/static/c76328b/file-icons/file_type_plsql_package_spec.svg +1 -0
- package/static/c76328b/file-icons/file_type_pm2.svg +1 -0
- package/static/c76328b/file-icons/file_type_pnpm.svg +1 -0
- package/static/c76328b/file-icons/file_type_poedit.svg +1 -0
- package/static/c76328b/file-icons/file_type_poetry.svg +1 -0
- package/static/c76328b/file-icons/file_type_polymer.svg +1 -0
- package/static/c76328b/file-icons/file_type_pony.svg +1 -0
- package/static/c76328b/file-icons/file_type_postcss.svg +1 -0
- package/static/c76328b/file-icons/file_type_postcssconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_postman.svg +1 -0
- package/static/c76328b/file-icons/file_type_powerpoint.svg +1 -0
- package/static/c76328b/file-icons/file_type_powerpoint2.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell2.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_format.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_psd.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_psd2.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_psm.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_psm2.svg +1 -0
- package/static/c76328b/file-icons/file_type_powershell_types.svg +1 -0
- package/static/c76328b/file-icons/file_type_preact.svg +1 -0
- package/static/c76328b/file-icons/file_type_precommit.svg +1 -0
- package/static/c76328b/file-icons/file_type_prettier.svg +1 -0
- package/static/c76328b/file-icons/file_type_prisma.svg +1 -0
- package/static/c76328b/file-icons/file_type_processinglang.svg +1 -0
- package/static/c76328b/file-icons/file_type_procfile.svg +1 -0
- package/static/c76328b/file-icons/file_type_progress.svg +1 -0
- package/static/c76328b/file-icons/file_type_prolog.svg +1 -0
- package/static/c76328b/file-icons/file_type_prometheus.svg +1 -0
- package/static/c76328b/file-icons/file_type_protobuf.svg +1 -0
- package/static/c76328b/file-icons/file_type_protractor.svg +1 -0
- package/static/c76328b/file-icons/file_type_publiccode.svg +1 -0
- package/static/c76328b/file-icons/file_type_publisher.svg +1 -0
- package/static/c76328b/file-icons/file_type_pug.svg +1 -0
- package/static/c76328b/file-icons/file_type_pulumi.svg +1 -0
- package/static/c76328b/file-icons/file_type_puppet.svg +1 -0
- package/static/c76328b/file-icons/file_type_purescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_pyenv.svg +1 -0
- package/static/c76328b/file-icons/file_type_pyret.svg +1 -0
- package/static/c76328b/file-icons/file_type_pyscript.svg +1 -0
- package/static/c76328b/file-icons/file_type_python.svg +1 -0
- package/static/c76328b/file-icons/file_type_pythowo.svg +1 -0
- package/static/c76328b/file-icons/file_type_pytyped.svg +1 -0
- package/static/c76328b/file-icons/file_type_pyup.svg +1 -0
- package/static/c76328b/file-icons/file_type_q.svg +1 -0
- package/static/c76328b/file-icons/file_type_qbs.svg +1 -0
- package/static/c76328b/file-icons/file_type_qlikview.svg +1 -0
- package/static/c76328b/file-icons/file_type_qml.svg +1 -0
- package/static/c76328b/file-icons/file_type_qmldir.svg +1 -0
- package/static/c76328b/file-icons/file_type_qsharp.svg +1 -0
- package/static/c76328b/file-icons/file_type_quasar.svg +1 -0
- package/static/c76328b/file-icons/file_type_r.svg +1 -0
- package/static/c76328b/file-icons/file_type_ra_syntax_tree.svg +1 -0
- package/static/c76328b/file-icons/file_type_racket.svg +1 -0
- package/static/c76328b/file-icons/file_type_rails.svg +1 -0
- package/static/c76328b/file-icons/file_type_rake.svg +1 -0
- package/static/c76328b/file-icons/file_type_raku.svg +1 -0
- package/static/c76328b/file-icons/file_type_raml.svg +1 -0
- package/static/c76328b/file-icons/file_type_razor.svg +1 -0
- package/static/c76328b/file-icons/file_type_razzle.svg +1 -0
- package/static/c76328b/file-icons/file_type_reactjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_reacttemplate.svg +1 -0
- package/static/c76328b/file-icons/file_type_reactts.svg +1 -0
- package/static/c76328b/file-icons/file_type_reason.svg +1 -0
- package/static/c76328b/file-icons/file_type_red.svg +1 -0
- package/static/c76328b/file-icons/file_type_registry.svg +1 -0
- package/static/c76328b/file-icons/file_type_rego.svg +1 -0
- package/static/c76328b/file-icons/file_type_rehype.svg +1 -0
- package/static/c76328b/file-icons/file_type_remark.svg +1 -0
- package/static/c76328b/file-icons/file_type_renovate.svg +1 -0
- package/static/c76328b/file-icons/file_type_replit.svg +1 -0
- package/static/c76328b/file-icons/file_type_rescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_rest.svg +1 -0
- package/static/c76328b/file-icons/file_type_retext.svg +1 -0
- package/static/c76328b/file-icons/file_type_rexx.svg +1 -0
- package/static/c76328b/file-icons/file_type_riot.svg +1 -0
- package/static/c76328b/file-icons/file_type_rmd.svg +1 -0
- package/static/c76328b/file-icons/file_type_rnc.svg +1 -0
- package/static/c76328b/file-icons/file_type_robotframework.svg +1 -0
- package/static/c76328b/file-icons/file_type_robots.svg +1 -0
- package/static/c76328b/file-icons/file_type_rollup.svg +1 -0
- package/static/c76328b/file-icons/file_type_rome.svg +1 -0
- package/static/c76328b/file-icons/file_type_ron.svg +1 -0
- package/static/c76328b/file-icons/file_type_rproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_rspec.svg +1 -0
- package/static/c76328b/file-icons/file_type_rss.svg +1 -0
- package/static/c76328b/file-icons/file_type_rubocop.svg +1 -0
- package/static/c76328b/file-icons/file_type_ruby.svg +1 -0
- package/static/c76328b/file-icons/file_type_rust.svg +1 -0
- package/static/c76328b/file-icons/file_type_rust_toolchain.svg +1 -0
- package/static/c76328b/file-icons/file_type_s-lang.svg +1 -0
- package/static/c76328b/file-icons/file_type_safetensors.svg +1 -0
- package/static/c76328b/file-icons/file_type_sails.svg +1 -0
- package/static/c76328b/file-icons/file_type_saltstack.svg +1 -0
- package/static/c76328b/file-icons/file_type_san.svg +1 -0
- package/static/c76328b/file-icons/file_type_sapphire_framework_cli.svg +1 -0
- package/static/c76328b/file-icons/file_type_sas.svg +1 -0
- package/static/c76328b/file-icons/file_type_sass.svg +1 -0
- package/static/c76328b/file-icons/file_type_sbt.svg +1 -0
- package/static/c76328b/file-icons/file_type_scala.svg +1 -0
- package/static/c76328b/file-icons/file_type_scilab.svg +1 -0
- package/static/c76328b/file-icons/file_type_script.svg +1 -0
- package/static/c76328b/file-icons/file_type_scss.svg +1 -0
- package/static/c76328b/file-icons/file_type_scss2.svg +1 -0
- package/static/c76328b/file-icons/file_type_sdlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_search_result.svg +1 -0
- package/static/c76328b/file-icons/file_type_sentry.svg +1 -0
- package/static/c76328b/file-icons/file_type_sequelize.svg +1 -0
- package/static/c76328b/file-icons/file_type_serverless.svg +1 -0
- package/static/c76328b/file-icons/file_type_shaderlab.svg +1 -0
- package/static/c76328b/file-icons/file_type_shell.svg +1 -0
- package/static/c76328b/file-icons/file_type_shellcheck.svg +1 -0
- package/static/c76328b/file-icons/file_type_shuttle.svg +1 -0
- package/static/c76328b/file-icons/file_type_silverstripe.svg +1 -0
- package/static/c76328b/file-icons/file_type_sino.svg +1 -0
- package/static/c76328b/file-icons/file_type_siyuan.svg +1 -0
- package/static/c76328b/file-icons/file_type_sketch.svg +1 -0
- package/static/c76328b/file-icons/file_type_skipper.svg +1 -0
- package/static/c76328b/file-icons/file_type_slang.svg +1 -0
- package/static/c76328b/file-icons/file_type_slashup.svg +1 -0
- package/static/c76328b/file-icons/file_type_slice.svg +1 -0
- package/static/c76328b/file-icons/file_type_slim.svg +1 -0
- package/static/c76328b/file-icons/file_type_slint.svg +1 -0
- package/static/c76328b/file-icons/file_type_sln.svg +1 -0
- package/static/c76328b/file-icons/file_type_sln2.svg +1 -0
- package/static/c76328b/file-icons/file_type_smarty.svg +1 -0
- package/static/c76328b/file-icons/file_type_snakemake.svg +1 -0
- package/static/c76328b/file-icons/file_type_snapcraft.svg +1 -0
- package/static/c76328b/file-icons/file_type_snaplet.svg +1 -0
- package/static/c76328b/file-icons/file_type_snort.svg +1 -0
- package/static/c76328b/file-icons/file_type_snyk.svg +1 -0
- package/static/c76328b/file-icons/file_type_solidarity.svg +1 -0
- package/static/c76328b/file-icons/file_type_solidity.svg +1 -0
- package/static/c76328b/file-icons/file_type_source.svg +1 -0
- package/static/c76328b/file-icons/file_type_spacengine.svg +1 -0
- package/static/c76328b/file-icons/file_type_sparql.svg +1 -0
- package/static/c76328b/file-icons/file_type_spin.svg +1 -0
- package/static/c76328b/file-icons/file_type_sqf.svg +1 -0
- package/static/c76328b/file-icons/file_type_sql.svg +1 -0
- package/static/c76328b/file-icons/file_type_sqlite.svg +1 -0
- package/static/c76328b/file-icons/file_type_squirrel.svg +1 -0
- package/static/c76328b/file-icons/file_type_sss.svg +1 -0
- package/static/c76328b/file-icons/file_type_sst.svg +1 -0
- package/static/c76328b/file-icons/file_type_stan.svg +1 -0
- package/static/c76328b/file-icons/file_type_stata.svg +1 -0
- package/static/c76328b/file-icons/file_type_stencil.svg +1 -0
- package/static/c76328b/file-icons/file_type_storyboard.svg +1 -0
- package/static/c76328b/file-icons/file_type_storybook.svg +1 -0
- package/static/c76328b/file-icons/file_type_stryker.svg +1 -0
- package/static/c76328b/file-icons/file_type_stylable.svg +1 -0
- package/static/c76328b/file-icons/file_type_style.svg +1 -0
- package/static/c76328b/file-icons/file_type_styled.svg +1 -0
- package/static/c76328b/file-icons/file_type_stylelint.svg +1 -0
- package/static/c76328b/file-icons/file_type_stylish_haskell.svg +1 -0
- package/static/c76328b/file-icons/file_type_stylus.svg +1 -0
- package/static/c76328b/file-icons/file_type_sublime.svg +1 -0
- package/static/c76328b/file-icons/file_type_subversion.svg +1 -0
- package/static/c76328b/file-icons/file_type_svelte.svg +1 -0
- package/static/c76328b/file-icons/file_type_svelteconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_svg.svg +1 -0
- package/static/c76328b/file-icons/file_type_svgo.svg +1 -0
- package/static/c76328b/file-icons/file_type_swagger.svg +1 -0
- package/static/c76328b/file-icons/file_type_swc.svg +1 -0
- package/static/c76328b/file-icons/file_type_swift.svg +1 -0
- package/static/c76328b/file-icons/file_type_swig.svg +1 -0
- package/static/c76328b/file-icons/file_type_symfony.svg +1 -0
- package/static/c76328b/file-icons/file_type_systemd.svg +1 -0
- package/static/c76328b/file-icons/file_type_systemverilog.svg +1 -0
- package/static/c76328b/file-icons/file_type_t4tt.svg +1 -0
- package/static/c76328b/file-icons/file_type_tailwind.svg +1 -0
- package/static/c76328b/file-icons/file_type_tamagui.svg +1 -0
- package/static/c76328b/file-icons/file_type_taskfile.svg +1 -0
- package/static/c76328b/file-icons/file_type_tauri.svg +1 -0
- package/static/c76328b/file-icons/file_type_tcl.svg +1 -0
- package/static/c76328b/file-icons/file_type_teal.svg +1 -0
- package/static/c76328b/file-icons/file_type_templ.svg +1 -0
- package/static/c76328b/file-icons/file_type_tera.svg +1 -0
- package/static/c76328b/file-icons/file_type_terraform.svg +1 -0
- package/static/c76328b/file-icons/file_type_test.svg +1 -0
- package/static/c76328b/file-icons/file_type_testcafe.svg +1 -0
- package/static/c76328b/file-icons/file_type_testjs.svg +1 -0
- package/static/c76328b/file-icons/file_type_testplane.svg +1 -0
- package/static/c76328b/file-icons/file_type_testts.svg +1 -0
- package/static/c76328b/file-icons/file_type_tex.svg +1 -0
- package/static/c76328b/file-icons/file_type_text.svg +1 -0
- package/static/c76328b/file-icons/file_type_textile.svg +1 -0
- package/static/c76328b/file-icons/file_type_tfs.svg +1 -0
- package/static/c76328b/file-icons/file_type_tiltfile.svg +1 -0
- package/static/c76328b/file-icons/file_type_tm.svg +1 -0
- package/static/c76328b/file-icons/file_type_tmux.svg +1 -0
- package/static/c76328b/file-icons/file_type_todo.svg +1 -0
- package/static/c76328b/file-icons/file_type_toit.svg +1 -0
- package/static/c76328b/file-icons/file_type_toml.svg +1 -0
- package/static/c76328b/file-icons/file_type_tox.svg +1 -0
- package/static/c76328b/file-icons/file_type_travis.svg +1 -0
- package/static/c76328b/file-icons/file_type_tree.svg +1 -0
- package/static/c76328b/file-icons/file_type_tres.svg +1 -0
- package/static/c76328b/file-icons/file_type_truffle.svg +1 -0
- package/static/c76328b/file-icons/file_type_trunk.svg +1 -0
- package/static/c76328b/file-icons/file_type_tsbuildinfo.svg +1 -0
- package/static/c76328b/file-icons/file_type_tscn.svg +1 -0
- package/static/c76328b/file-icons/file_type_tsconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_tsconfig_official.svg +1 -0
- package/static/c76328b/file-icons/file_type_tslint.svg +1 -0
- package/static/c76328b/file-icons/file_type_tt.svg +1 -0
- package/static/c76328b/file-icons/file_type_ttcn.svg +1 -0
- package/static/c76328b/file-icons/file_type_tuc.svg +1 -0
- package/static/c76328b/file-icons/file_type_turbo.svg +1 -0
- package/static/c76328b/file-icons/file_type_twig.svg +1 -0
- package/static/c76328b/file-icons/file_type_typedoc.svg +1 -0
- package/static/c76328b/file-icons/file_type_typescript.svg +1 -0
- package/static/c76328b/file-icons/file_type_typescript_official.svg +1 -0
- package/static/c76328b/file-icons/file_type_typescriptdef.svg +1 -0
- package/static/c76328b/file-icons/file_type_typescriptdef_official.svg +1 -0
- package/static/c76328b/file-icons/file_type_typo3.svg +1 -0
- package/static/c76328b/file-icons/file_type_uiua.svg +1 -0
- package/static/c76328b/file-icons/file_type_unibeautify.svg +1 -0
- package/static/c76328b/file-icons/file_type_unison.svg +1 -0
- package/static/c76328b/file-icons/file_type_unlicense.svg +1 -0
- package/static/c76328b/file-icons/file_type_unocss.svg +1 -0
- package/static/c76328b/file-icons/file_type_vagrant.svg +1 -0
- package/static/c76328b/file-icons/file_type_vala.svg +1 -0
- package/static/c76328b/file-icons/file_type_vanilla_extract.svg +1 -0
- package/static/c76328b/file-icons/file_type_vapi.svg +1 -0
- package/static/c76328b/file-icons/file_type_vapor.svg +1 -0
- package/static/c76328b/file-icons/file_type_vash.svg +1 -0
- package/static/c76328b/file-icons/file_type_vb.svg +1 -0
- package/static/c76328b/file-icons/file_type_vba.svg +1 -0
- package/static/c76328b/file-icons/file_type_vbhtml.svg +1 -0
- package/static/c76328b/file-icons/file_type_vbproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_vcxproj.svg +1 -0
- package/static/c76328b/file-icons/file_type_velocity.svg +1 -0
- package/static/c76328b/file-icons/file_type_vento.svg +1 -0
- package/static/c76328b/file-icons/file_type_vercel.svg +1 -0
- package/static/c76328b/file-icons/file_type_verilog.svg +1 -0
- package/static/c76328b/file-icons/file_type_vhdl.svg +1 -0
- package/static/c76328b/file-icons/file_type_video.svg +1 -0
- package/static/c76328b/file-icons/file_type_view.svg +1 -0
- package/static/c76328b/file-icons/file_type_vim.svg +1 -0
- package/static/c76328b/file-icons/file_type_vite.svg +1 -0
- package/static/c76328b/file-icons/file_type_vitest.svg +1 -0
- package/static/c76328b/file-icons/file_type_vlang.svg +1 -0
- package/static/c76328b/file-icons/file_type_volt.svg +1 -0
- package/static/c76328b/file-icons/file_type_vscode-insiders.svg +1 -0
- package/static/c76328b/file-icons/file_type_vscode.svg +1 -0
- package/static/c76328b/file-icons/file_type_vscode2.svg +1 -0
- package/static/c76328b/file-icons/file_type_vscode3.svg +1 -0
- package/static/c76328b/file-icons/file_type_vscode_test.svg +1 -0
- package/static/c76328b/file-icons/file_type_vsix.svg +1 -0
- package/static/c76328b/file-icons/file_type_vsixmanifest.svg +1 -0
- package/static/c76328b/file-icons/file_type_vue.svg +1 -0
- package/static/c76328b/file-icons/file_type_vueconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_vyper.svg +1 -0
- package/static/c76328b/file-icons/file_type_wallaby.svg +1 -0
- package/static/c76328b/file-icons/file_type_wally.svg +1 -0
- package/static/c76328b/file-icons/file_type_wasm.svg +1 -0
- package/static/c76328b/file-icons/file_type_watchmanconfig.svg +1 -0
- package/static/c76328b/file-icons/file_type_wdio.svg +1 -0
- package/static/c76328b/file-icons/file_type_webpack.svg +1 -0
- package/static/c76328b/file-icons/file_type_wenyan.svg +1 -0
- package/static/c76328b/file-icons/file_type_wercker.svg +1 -0
- package/static/c76328b/file-icons/file_type_wgsl.svg +1 -0
- package/static/c76328b/file-icons/file_type_wikitext.svg +1 -0
- package/static/c76328b/file-icons/file_type_windi.svg +1 -0
- package/static/c76328b/file-icons/file_type_wit.svg +1 -0
- package/static/c76328b/file-icons/file_type_wolfram.svg +1 -0
- package/static/c76328b/file-icons/file_type_word.svg +1 -0
- package/static/c76328b/file-icons/file_type_word2.svg +1 -0
- package/static/c76328b/file-icons/file_type_wpml.svg +1 -0
- package/static/c76328b/file-icons/file_type_wurst.svg +1 -0
- package/static/c76328b/file-icons/file_type_wxml.svg +1 -0
- package/static/c76328b/file-icons/file_type_wxss.svg +1 -0
- package/static/c76328b/file-icons/file_type_wxt.svg +1 -0
- package/static/c76328b/file-icons/file_type_xcode.svg +1 -0
- package/static/c76328b/file-icons/file_type_xfl.svg +1 -0
- package/static/c76328b/file-icons/file_type_xib.svg +1 -0
- package/static/c76328b/file-icons/file_type_xliff.svg +1 -0
- package/static/c76328b/file-icons/file_type_xmake.svg +1 -0
- package/static/c76328b/file-icons/file_type_xml.svg +1 -0
- package/static/c76328b/file-icons/file_type_xo.svg +1 -0
- package/static/c76328b/file-icons/file_type_xorg.svg +1 -0
- package/static/c76328b/file-icons/file_type_xquery.svg +1 -0
- package/static/c76328b/file-icons/file_type_xsl.svg +1 -0
- package/static/c76328b/file-icons/file_type_yacc.svg +1 -0
- package/static/c76328b/file-icons/file_type_yaml.svg +1 -0
- package/static/c76328b/file-icons/file_type_yamllint.svg +1 -0
- package/static/c76328b/file-icons/file_type_yandex.svg +1 -0
- package/static/c76328b/file-icons/file_type_yang.svg +1 -0
- package/static/c76328b/file-icons/file_type_yarn.svg +1 -0
- package/static/c76328b/file-icons/file_type_yeoman.svg +1 -0
- package/static/c76328b/file-icons/file_type_zeit.svg +1 -0
- package/static/c76328b/file-icons/file_type_zig.svg +1 -0
- package/static/c76328b/file-icons/file_type_zip.svg +1 -0
- package/static/c76328b/file-icons/file_type_zip2.svg +1 -0
- package/static/c76328b/file-icons/folder_type_android.svg +1 -0
- package/static/c76328b/file-icons/folder_type_android_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_api.svg +1 -0
- package/static/c76328b/file-icons/folder_type_api_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_app.svg +1 -0
- package/static/c76328b/file-icons/folder_type_app_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_arangodb.svg +1 -0
- package/static/c76328b/file-icons/folder_type_arangodb_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_asset.svg +1 -0
- package/static/c76328b/file-icons/folder_type_asset_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_audio.svg +1 -0
- package/static/c76328b/file-icons/folder_type_audio_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_aurelia.svg +1 -0
- package/static/c76328b/file-icons/folder_type_aurelia_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_aws.svg +1 -0
- package/static/c76328b/file-icons/folder_type_aws_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_azure.svg +1 -0
- package/static/c76328b/file-icons/folder_type_azure_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_azurepipelines.svg +1 -0
- package/static/c76328b/file-icons/folder_type_azurepipelines_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_binary.svg +1 -0
- package/static/c76328b/file-icons/folder_type_binary_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bloc.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bloc_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_blueprint.svg +1 -0
- package/static/c76328b/file-icons/folder_type_blueprint_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bot.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bot_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bower.svg +1 -0
- package/static/c76328b/file-icons/folder_type_bower_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_buildkite.svg +1 -0
- package/static/c76328b/file-icons/folder_type_buildkite_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cake.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cake_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_certificate.svg +1 -0
- package/static/c76328b/file-icons/folder_type_certificate_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_changesets.svg +1 -0
- package/static/c76328b/file-icons/folder_type_changesets_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_chef.svg +1 -0
- package/static/c76328b/file-icons/folder_type_chef_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_circleci.svg +1 -0
- package/static/c76328b/file-icons/folder_type_circleci_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cli.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cli_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_client.svg +1 -0
- package/static/c76328b/file-icons/folder_type_client_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cmake.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cmake_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_common.svg +1 -0
- package/static/c76328b/file-icons/folder_type_common_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_component.svg +1 -0
- package/static/c76328b/file-icons/folder_type_component_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_composer.svg +1 -0
- package/static/c76328b/file-icons/folder_type_composer_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_config.svg +1 -0
- package/static/c76328b/file-icons/folder_type_config_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_controller.svg +1 -0
- package/static/c76328b/file-icons/folder_type_controller_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_coverage.svg +1 -0
- package/static/c76328b/file-icons/folder_type_coverage_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_css.svg +1 -0
- package/static/c76328b/file-icons/folder_type_css_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cubit.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cubit_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cypress.svg +1 -0
- package/static/c76328b/file-icons/folder_type_cypress_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dapr.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dapr_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_datadog.svg +1 -0
- package/static/c76328b/file-icons/folder_type_datadog_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_db.svg +1 -0
- package/static/c76328b/file-icons/folder_type_db_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_debian.svg +1 -0
- package/static/c76328b/file-icons/folder_type_debian_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dependabot.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dependabot_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_devcontainer.svg +1 -0
- package/static/c76328b/file-icons/folder_type_devcontainer_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dist.svg +1 -0
- package/static/c76328b/file-icons/folder_type_dist_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_docker.svg +1 -0
- package/static/c76328b/file-icons/folder_type_docker_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_docs.svg +1 -0
- package/static/c76328b/file-icons/folder_type_docs_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_e2e.svg +1 -0
- package/static/c76328b/file-icons/folder_type_e2e_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_elasticbeanstalk.svg +1 -0
- package/static/c76328b/file-icons/folder_type_elasticbeanstalk_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_electron.svg +1 -0
- package/static/c76328b/file-icons/folder_type_electron_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_expo.svg +1 -0
- package/static/c76328b/file-icons/folder_type_expo_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_favicon.svg +1 -0
- package/static/c76328b/file-icons/folder_type_favicon_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_flow.svg +1 -0
- package/static/c76328b/file-icons/folder_type_flow_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_fonts.svg +1 -0
- package/static/c76328b/file-icons/folder_type_fonts_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_frontcommerce.svg +1 -0
- package/static/c76328b/file-icons/folder_type_frontcommerce_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gcp.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gcp_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_git.svg +1 -0
- package/static/c76328b/file-icons/folder_type_git_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_github.svg +1 -0
- package/static/c76328b/file-icons/folder_type_github_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gitlab.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gitlab_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gradle.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gradle_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_graphql.svg +1 -0
- package/static/c76328b/file-icons/folder_type_graphql_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_grunt.svg +1 -0
- package/static/c76328b/file-icons/folder_type_grunt_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gulp.svg +1 -0
- package/static/c76328b/file-icons/folder_type_gulp_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_haxelib.svg +1 -0
- package/static/c76328b/file-icons/folder_type_haxelib_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_helper.svg +1 -0
- package/static/c76328b/file-icons/folder_type_helper_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_hook.svg +1 -0
- package/static/c76328b/file-icons/folder_type_hook_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_husky.svg +1 -0
- package/static/c76328b/file-icons/folder_type_husky_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_idea.svg +1 -0
- package/static/c76328b/file-icons/folder_type_idea_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_images.svg +1 -0
- package/static/c76328b/file-icons/folder_type_images_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_include.svg +1 -0
- package/static/c76328b/file-icons/folder_type_include_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_interfaces.svg +1 -0
- package/static/c76328b/file-icons/folder_type_interfaces_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_ios.svg +1 -0
- package/static/c76328b/file-icons/folder_type_ios_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_js.svg +1 -0
- package/static/c76328b/file-icons/folder_type_js_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_json.svg +1 -0
- package/static/c76328b/file-icons/folder_type_json_official.svg +1 -0
- package/static/c76328b/file-icons/folder_type_json_official_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_json_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_kubernetes.svg +1 -0
- package/static/c76328b/file-icons/folder_type_kubernetes_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_less.svg +1 -0
- package/static/c76328b/file-icons/folder_type_less_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_library.svg +1 -0
- package/static/c76328b/file-icons/folder_type_library_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_cypress.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_cypress_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_electron.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_electron_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_expo.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_expo_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_fonts.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_fonts_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_gradle.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_gradle_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_meteor.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_meteor_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_mysql.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_mysql_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_node.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_node_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_redux.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_redux_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_sass.svg +1 -0
- package/static/c76328b/file-icons/folder_type_light_sass_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_linux.svg +1 -0
- package/static/c76328b/file-icons/folder_type_linux_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_locale.svg +1 -0
- package/static/c76328b/file-icons/folder_type_locale_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_log.svg +1 -0
- package/static/c76328b/file-icons/folder_type_log_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_macos.svg +1 -0
- package/static/c76328b/file-icons/folder_type_macos_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mariadb.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mariadb_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_maven.svg +1 -0
- package/static/c76328b/file-icons/folder_type_maven_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mediawiki.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mediawiki_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_memcached.svg +1 -0
- package/static/c76328b/file-icons/folder_type_memcached_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_meteor.svg +1 -0
- package/static/c76328b/file-icons/folder_type_meteor_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_middleware.svg +1 -0
- package/static/c76328b/file-icons/folder_type_middleware_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_minikube.svg +1 -0
- package/static/c76328b/file-icons/folder_type_minikube_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mjml.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mjml_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mock.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mock_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_model.svg +1 -0
- package/static/c76328b/file-icons/folder_type_model_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_module.svg +1 -0
- package/static/c76328b/file-icons/folder_type_module_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mojo.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mojo_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mongodb.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mongodb_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mysql.svg +1 -0
- package/static/c76328b/file-icons/folder_type_mysql_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_next.svg +1 -0
- package/static/c76328b/file-icons/folder_type_next_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nginx.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nginx_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nix.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nix_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_node.svg +1 -0
- package/static/c76328b/file-icons/folder_type_node_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_notebooks.svg +1 -0
- package/static/c76328b/file-icons/folder_type_notebooks_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_notification.svg +1 -0
- package/static/c76328b/file-icons/folder_type_notification_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nuget.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nuget_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nuxt.svg +1 -0
- package/static/c76328b/file-icons/folder_type_nuxt_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_package.svg +1 -0
- package/static/c76328b/file-icons/folder_type_package_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_paket.svg +1 -0
- package/static/c76328b/file-icons/folder_type_paket_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_php.svg +1 -0
- package/static/c76328b/file-icons/folder_type_php_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_platformio.svg +1 -0
- package/static/c76328b/file-icons/folder_type_platformio_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_plugin.svg +1 -0
- package/static/c76328b/file-icons/folder_type_plugin_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_prisma.svg +1 -0
- package/static/c76328b/file-icons/folder_type_prisma_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_private.svg +1 -0
- package/static/c76328b/file-icons/folder_type_private_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_public.svg +1 -0
- package/static/c76328b/file-icons/folder_type_public_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_python.svg +1 -0
- package/static/c76328b/file-icons/folder_type_python_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_ravendb.svg +1 -0
- package/static/c76328b/file-icons/folder_type_ravendb_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_redis.svg +1 -0
- package/static/c76328b/file-icons/folder_type_redis_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_redux.svg +1 -0
- package/static/c76328b/file-icons/folder_type_redux_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_route.svg +1 -0
- package/static/c76328b/file-icons/folder_type_route_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_sass.svg +1 -0
- package/static/c76328b/file-icons/folder_type_sass_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_script.svg +1 -0
- package/static/c76328b/file-icons/folder_type_script_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_server.svg +1 -0
- package/static/c76328b/file-icons/folder_type_server_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_services.svg +1 -0
- package/static/c76328b/file-icons/folder_type_services_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_shared.svg +1 -0
- package/static/c76328b/file-icons/folder_type_shared_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_snaplet.svg +1 -0
- package/static/c76328b/file-icons/folder_type_snaplet_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_spin.svg +1 -0
- package/static/c76328b/file-icons/folder_type_spin_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_src.svg +1 -0
- package/static/c76328b/file-icons/folder_type_src_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_sso.svg +1 -0
- package/static/c76328b/file-icons/folder_type_sso_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_story.svg +1 -0
- package/static/c76328b/file-icons/folder_type_story_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_style.svg +1 -0
- package/static/c76328b/file-icons/folder_type_style_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_supabase.svg +1 -0
- package/static/c76328b/file-icons/folder_type_supabase_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_svelte.svg +1 -0
- package/static/c76328b/file-icons/folder_type_svelte_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_tauri.svg +1 -0
- package/static/c76328b/file-icons/folder_type_tauri_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_temp.svg +1 -0
- package/static/c76328b/file-icons/folder_type_temp_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_template.svg +1 -0
- package/static/c76328b/file-icons/folder_type_template_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_test.svg +1 -0
- package/static/c76328b/file-icons/folder_type_test_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_theme.svg +1 -0
- package/static/c76328b/file-icons/folder_type_theme_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_tools.svg +1 -0
- package/static/c76328b/file-icons/folder_type_tools_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_travis.svg +1 -0
- package/static/c76328b/file-icons/folder_type_travis_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_trunk.svg +1 -0
- package/static/c76328b/file-icons/folder_type_trunk_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_turbo.svg +1 -0
- package/static/c76328b/file-icons/folder_type_turbo_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typescript.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typescript_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typings.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typings2.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typings2_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_typings_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vagrant.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vagrant_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vercel.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vercel_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_video.svg +1 -0
- package/static/c76328b/file-icons/folder_type_video_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_view.svg +1 -0
- package/static/c76328b/file-icons/folder_type_view_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vs.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vs2.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vs2_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vs_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode2.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode2_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode3.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode3_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test2.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test2_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test3.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test3_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_vscode_test_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_webpack.svg +1 -0
- package/static/c76328b/file-icons/folder_type_webpack_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_windows.svg +1 -0
- package/static/c76328b/file-icons/folder_type_windows_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_wit.svg +1 -0
- package/static/c76328b/file-icons/folder_type_wit_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_www.svg +1 -0
- package/static/c76328b/file-icons/folder_type_www_opened.svg +1 -0
- package/static/c76328b/file-icons/folder_type_yarn.svg +1 -0
- package/static/c76328b/file-icons/folder_type_yarn_opened.svg +1 -0
- package/static/c76328b/fonts/FiraCode-VariableFont.ttf +0 -0
- package/static/c76328b/icons/add.svg +1 -0
- package/static/c76328b/icons/arrow-down.svg +3 -0
- package/static/c76328b/icons/arrow-left.svg +3 -0
- package/static/c76328b/icons/arrow-right.svg +3 -0
- package/static/c76328b/icons/arrow-up.svg +3 -0
- package/static/c76328b/icons/blank.svg +1 -0
- package/static/c76328b/icons/book.svg +1 -0
- package/static/c76328b/icons/case-sensitive.svg +1 -0
- package/static/c76328b/icons/check.svg +1 -0
- package/static/c76328b/icons/chevron-down.svg +1 -0
- package/static/c76328b/icons/chevron-left.svg +1 -0
- package/static/c76328b/icons/chevron-right.svg +3 -0
- package/static/c76328b/icons/chevron-up.svg +1 -0
- package/static/c76328b/icons/chrome-close.svg +3 -0
- package/static/c76328b/icons/chrome-maximize.svg +3 -0
- package/static/c76328b/icons/chrome-minimize.svg +3 -0
- package/static/c76328b/icons/chrome-restore.svg +1 -0
- package/static/c76328b/icons/circle-filled.svg +1 -0
- package/static/c76328b/icons/clear-all.svg +1 -0
- package/static/c76328b/icons/close.svg +1 -0
- package/static/c76328b/icons/cloud.svg +1 -0
- package/static/c76328b/icons/collapse-all.svg +1 -0
- package/static/c76328b/icons/debug-all.svg +1 -0
- package/static/c76328b/icons/debug-alt-2.svg +3 -0
- package/static/c76328b/icons/debug-alt-small.svg +1 -0
- package/static/c76328b/icons/debug-alt.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-conditional-unverified.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-conditional.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-data-unverified.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-data.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-function-unverified.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-function.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-log-unverified.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-log.svg +1 -0
- package/static/c76328b/icons/debug-breakpoint-unsupported.svg +1 -0
- package/static/c76328b/icons/debug-console.svg +1 -0
- package/static/c76328b/icons/debug-continue-small.svg +1 -0
- package/static/c76328b/icons/debug-continue.svg +1 -0
- package/static/c76328b/icons/debug-coverage.svg +1 -0
- package/static/c76328b/icons/debug-disconnect.svg +1 -0
- package/static/c76328b/icons/debug-line-by-line.svg +1 -0
- package/static/c76328b/icons/debug-pause.svg +1 -0
- package/static/c76328b/icons/debug-rerun.svg +1 -0
- package/static/c76328b/icons/debug-restart-frame.svg +1 -0
- package/static/c76328b/icons/debug-restart.svg +1 -0
- package/static/c76328b/icons/debug-reverse-continue.svg +1 -0
- package/static/c76328b/icons/debug-stackframe-active.svg +1 -0
- package/static/c76328b/icons/debug-stackframe.svg +1 -0
- package/static/c76328b/icons/debug-start.svg +1 -0
- package/static/c76328b/icons/debug-step-back.svg +1 -0
- package/static/c76328b/icons/debug-step-into.svg +1 -0
- package/static/c76328b/icons/debug-step-out.svg +1 -0
- package/static/c76328b/icons/debug-step-over.svg +1 -0
- package/static/c76328b/icons/debug-stop.svg +1 -0
- package/static/c76328b/icons/debug.svg +1 -0
- package/static/c76328b/icons/discard.svg +1 -0
- package/static/c76328b/icons/edit.svg +1 -0
- package/static/c76328b/icons/ellipsis.svg +5 -0
- package/static/c76328b/icons/error.svg +1 -0
- package/static/c76328b/icons/exclude.svg +1 -0
- package/static/c76328b/icons/extensionDefaultIcon.png +0 -0
- package/static/c76328b/icons/extensions.svg +3 -0
- package/static/c76328b/icons/files.svg +3 -0
- package/static/c76328b/icons/filter.svg +1 -0
- package/static/c76328b/icons/go-to-file.svg +1 -0
- package/static/c76328b/icons/icon-close.svg +3 -0
- package/static/c76328b/icons/icon-source-control.svg +3 -0
- package/static/c76328b/icons/icon-sync.svg +1 -0
- package/static/c76328b/icons/icon.png +0 -0
- package/static/c76328b/icons/icon.svg +3 -0
- package/static/c76328b/icons/info.svg +1 -0
- package/static/c76328b/icons/language-icon.svg +1 -0
- package/static/c76328b/icons/link-external.svg +1 -0
- package/static/c76328b/icons/list-flat.svg +1 -0
- package/static/c76328b/icons/list-tree.svg +1 -0
- package/static/c76328b/icons/new-file.svg +1 -0
- package/static/c76328b/icons/new-folder.svg +1 -0
- package/static/c76328b/icons/newline.svg +1 -0
- package/static/c76328b/icons/open-preview.svg +1 -0
- package/static/c76328b/icons/play.svg +1 -0
- package/static/c76328b/icons/preserve-case.svg +1 -0
- package/static/c76328b/icons/progress.svg +1 -0
- package/static/c76328b/icons/pwa-icon-192.png +0 -0
- package/static/c76328b/icons/pwa-icon-512.png +0 -0
- package/static/c76328b/icons/record-keys.svg +1 -0
- package/static/c76328b/icons/refresh.svg +1 -0
- package/static/c76328b/icons/regex.svg +1 -0
- package/static/c76328b/icons/remove.svg +1 -0
- package/static/c76328b/icons/replace-all.svg +1 -0
- package/static/c76328b/icons/replace.svg +1 -0
- package/static/c76328b/icons/run-all.svg +1 -0
- package/static/c76328b/icons/search.svg +3 -0
- package/static/c76328b/icons/settings-gear.svg +3 -0
- package/static/c76328b/icons/source-control.svg +3 -0
- package/static/c76328b/icons/split-horizontal.svg +1 -0
- package/static/c76328b/icons/squiggly-error.svg +1 -0
- package/static/c76328b/icons/squiggly-warning.svg +1 -0
- package/static/c76328b/icons/symbol-array.svg +3 -0
- package/static/c76328b/icons/symbol-boolean.svg +3 -0
- package/static/c76328b/icons/symbol-class.svg +3 -0
- package/static/c76328b/icons/symbol-color.svg +3 -0
- package/static/c76328b/icons/symbol-constant.svg +4 -0
- package/static/c76328b/icons/symbol-enum-member.svg +3 -0
- package/static/c76328b/icons/symbol-enum.svg +3 -0
- package/static/c76328b/icons/symbol-event.svg +3 -0
- package/static/c76328b/icons/symbol-field.svg +3 -0
- package/static/c76328b/icons/symbol-file.svg +3 -0
- package/static/c76328b/icons/symbol-interface.svg +3 -0
- package/static/c76328b/icons/symbol-key.svg +3 -0
- package/static/c76328b/icons/symbol-keyword.svg +3 -0
- package/static/c76328b/icons/symbol-method.svg +3 -0
- package/static/c76328b/icons/symbol-misc.svg +3 -0
- package/static/c76328b/icons/symbol-namespace.svg +3 -0
- package/static/c76328b/icons/symbol-numeric.svg +3 -0
- package/static/c76328b/icons/symbol-operator.svg +3 -0
- package/static/c76328b/icons/symbol-parameter.svg +3 -0
- package/static/c76328b/icons/symbol-property.svg +3 -0
- package/static/c76328b/icons/symbol-ruler.svg +3 -0
- package/static/c76328b/icons/symbol-snippet.svg +3 -0
- package/static/c76328b/icons/symbol-string.svg +3 -0
- package/static/c76328b/icons/symbol-structure.svg +3 -0
- package/static/c76328b/icons/symbol-variable.svg +3 -0
- package/static/c76328b/icons/tag.svg +1 -0
- package/static/c76328b/icons/terminal-bash.svg +1 -0
- package/static/c76328b/icons/terminal.svg +1 -0
- package/static/c76328b/icons/theme-icon.png +0 -0
- package/static/c76328b/icons/trash.svg +1 -0
- package/static/c76328b/icons/triangle-down.svg +1 -0
- package/static/c76328b/icons/triangle-left.svg +1 -0
- package/static/c76328b/icons/triangle-right.svg +1 -0
- package/static/c76328b/icons/triangle-up.svg +1 -0
- package/static/c76328b/icons/warning.svg +1 -0
- package/static/c76328b/icons/whole-word.svg +1 -0
- package/static/c76328b/icons/zoom-in.svg +1 -0
- package/static/c76328b/icons/zoom-out.svg +1 -0
- package/static/c76328b/js/babel-parser.js +14154 -0
- package/static/c76328b/js/blob-util.js +149 -0
- package/static/c76328b/js/idb/async-iterators.js +56 -0
- package/static/c76328b/js/idb/index.js +99 -0
- package/static/c76328b/js/idb/with-async-ittr.js +4 -0
- package/static/c76328b/js/idb/wrap-idb-value.js +190 -0
- package/static/c76328b/js/js-base64.js +296 -0
- package/static/c76328b/js/ky.js +489 -0
- package/static/c76328b/js/lvce-editor-import-script.js +5 -0
- package/static/c76328b/js/lvce-editor-ipc.js +735 -0
- package/static/c76328b/js/lvce-editor-json-rpc.js +383 -0
- package/static/c76328b/js/lvce-editor-verror.js +55 -0
- package/static/c76328b/js/marked.js +1990 -0
- package/static/c76328b/js/p-min-delay.js +7 -0
- package/static/c76328b/js/pretty-bytes.js +94 -0
- package/static/c76328b/js/preview-injected.js +101 -0
- package/static/c76328b/js/yoctodelay.js +2 -0
- package/static/c76328b/lib-css/termterm.css +39 -0
- package/static/c76328b/manifest.json +26 -0
- package/static/c76328b/packages/about-view-worker/dist/aboutWorkerMain.js +1556 -0
- package/static/c76328b/packages/diff-worker/dist/diffWorkerMain.js +886 -0
- package/static/c76328b/packages/editor-worker/dist/editorWorkerMain.js +11885 -0
- package/static/c76328b/packages/embeds-worker/dist/embedsWorkerMain.js +1067 -0
- package/static/c76328b/packages/embeds-worker/dist/embedsWorkerMain.js.map +1 -0
- package/static/c76328b/packages/embeds-worker/src/embedsWorkerMain.ts +3 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Assert/Assert.ts +94 -0
- package/static/c76328b/packages/embeds-worker/src/parts/AssertionError/AssertionError.ts +6 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Callback/Callback.ts +1 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Command/Command.ts +10 -0
- package/static/c76328b/packages/embeds-worker/src/parts/CommandMap/CommandMap.ts +26 -0
- package/static/c76328b/packages/embeds-worker/src/parts/CommandState/CommandState.ts +17 -0
- package/static/c76328b/packages/embeds-worker/src/parts/ElectronWebContentsView/ElectronWebContentsView.ts +117 -0
- package/static/c76328b/packages/embeds-worker/src/parts/EmbedsProcess/EmbedsProcess.ts +25 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Exit/Exit.ts +3 -0
- package/static/c76328b/packages/embeds-worker/src/parts/GetPortTuple/GetPortTuple.ts +4 -0
- package/static/c76328b/packages/embeds-worker/src/parts/HandleIpc/HandleIpc.ts +35 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcChild/IpcChild.ts +13 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcChildModule/IpcChildModule.ts +14 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcChildType/IpcChildType.ts +14 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcId/IpcId.ts +4 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcParent/IpcParent.ts +7 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcParentWithElectronMessagePort/IpcParentWithElectronMessagePort.ts +39 -0
- package/static/c76328b/packages/embeds-worker/src/parts/IpcState/IpcState.ts +14 -0
- package/static/c76328b/packages/embeds-worker/src/parts/JsonRpc/JsonRpc.ts +2 -0
- package/static/c76328b/packages/embeds-worker/src/parts/LaunchEmbedsProcessIpc/LaunchEmbedsProcessIpc.ts +10 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Listen/Listen.ts +13 -0
- package/static/c76328b/packages/embeds-worker/src/parts/LoadErrorCode/LoadErrorCode.ts +3 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Main/Main.ts +5 -0
- package/static/c76328b/packages/embeds-worker/src/parts/ProcessName/ProcessName.ts +1 -0
- package/static/c76328b/packages/embeds-worker/src/parts/Rpc/Rpc.ts +21 -0
- package/static/c76328b/packages/explorer-worker/dist/explorerViewWorkerMain.js +3385 -0
- package/static/c76328b/packages/extension-detail-view-worker/dist/extensionDetailViewWorkerMain.js +4178 -0
- package/static/c76328b/packages/extension-host-sub-worker/dist/extensionHostSubWorkerMain.js +989 -0
- package/static/c76328b/packages/extension-host-sub-worker/dist/extensionHostSubWorkerMain.js.map +1 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/extensionHostSubWorkerMain.js +3 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Ajax/Ajax.js +14 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Assert/Assert.js +71 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/AssetDir/AssetDir.js +16 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Callback/Callback.js +42 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Character/Character.js +11 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/CleanImportError/CleanImportError.js +20 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/CodeFrameColumns/CodeFrameColumns.js +126 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Command/Command.js +10 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/CommandMap/CommandMap.js +5 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/CommandState/CommandState.js +17 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/ErrorType/ErrorType.js +4 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetData/GetData.js +3 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetErrorConstructor/GetErrorConstructor.js +28 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetErrorResponse/GetErrorResponse.js +33 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetModulesErrorStack/GetModulesErrorStack.js +49 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetNewLineIndex/GetNewLineIndex.js +9 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetResponse/GetResponse.js +11 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/GetSuccessResponse/GetSuccessResponse.js +9 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/HandleIpc/HandleIpc.js +12 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/HandleJsonRpcMessage/HandleJsonRpcMessage.js +10 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Id/Id.js +7 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/ImportScript/ImportScript.js +12 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChild/IpcChild.js +8 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChildModule/IpcChildModule.js +12 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChildType/IpcChildType.js +18 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChildWithMessagePort/IpcChildWithMessagePort.js +24 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChildWithModuleWorker/IpcChildWithModuleWorker.js +40 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcChildWithModuleWorkerAndMessagePort/IpcChildWithModuleWorkerAndMessagePort.js +54 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/IpcError/IpcError.js +6 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JoinLines/JoinLines.js +3 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpc/JsonRpc.js +16 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpcError/JsonRpcError.js +6 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpcErrorCode/JsonRpcErrorCode.js +2 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpcEvent/JsonRpcEvent.js +9 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpcRequest/JsonRpcRequest.js +16 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/JsonRpcVersion/JsonRpcVersion.js +1 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Listen/Listen.js +19 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/LoadFile/LoadFile.js +14 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/LoadKy/LoadKy.js +11 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Main/Main.js +5 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/MergeStacks/MergeStacks.js +20 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/NormalizeErrorLine/NormalizeErrorLine.js +9 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/Platform/Platform.js +19 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/PlatformType/PlatformType.js +5 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/PrettyError/PrettyError.js +139 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/PrintPrettyError/PrintPrettyError.js +3 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/ProcessName/ProcessName.js +1 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/RestoreJsonRpcError/RestoreJsonRpcError.js +78 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/SplitLines/SplitLines.js +11 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/UnwrapJsonRpcResult/UnwrapJsonRpcResult.js +13 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/VError/VError.js +27 -0
- package/static/c76328b/packages/extension-host-sub-worker/src/parts/WaitForFirstMessage/WaitForFirstMessage.js +13 -0
- package/static/c76328b/packages/extension-host-worker/dist/extensionHostWorkerMain.js +3813 -0
- package/static/c76328b/packages/extension-search-view-worker/dist/extensionSearchViewWorkerMain.js +1468 -0
- package/static/c76328b/packages/file-search-worker/dist/fileSearchWorkerMain.js +1835 -0
- package/static/c76328b/packages/iframe-worker/dist/iframeWorkerMain.js +1349 -0
- package/static/c76328b/packages/keybindings-view-worker/dist/keyBindingsViewWorkerMain.js +1915 -0
- package/static/c76328b/packages/renderer-process/LICENSE +21 -0
- package/static/c76328b/packages/renderer-process/README.md +1 -0
- package/static/c76328b/packages/renderer-process/dist/rendererProcessMain.js +11834 -0
- package/static/c76328b/packages/renderer-process/package.json +27 -0
- package/static/c76328b/packages/renderer-worker/dist/rendererWorkerMain.js +38528 -0
- package/static/c76328b/packages/syntax-highlighting-worker/dist/syntaxHighlightingWorkerMain.js +1109 -0
- package/static/c76328b/packages/terminal-worker/dist/terminalWorkerMain.js +2971 -0
- package/static/c76328b/packages/test-worker/dist/testWorkerMain.js +2140 -0
- package/static/c76328b/packages/text-search-worker/dist/textSearchWorkerMain.js +4272 -0
- package/static/c76328b/playground/languages/index.cpp +22 -0
- package/static/c76328b/playground/languages/index.css +19 -0
- package/static/c76328b/playground/languages/index.csv +3 -0
- package/static/c76328b/playground/languages/index.dart +3 -0
- package/static/c76328b/playground/languages/index.env +1 -0
- package/static/c76328b/playground/languages/index.ex +8 -0
- package/static/c76328b/playground/languages/index.html +1 -0
- package/static/c76328b/playground/languages/index.java +5 -0
- package/static/c76328b/playground/languages/index.jl +14 -0
- package/static/c76328b/playground/languages/index.js +3 -0
- package/static/c76328b/playground/languages/index.json +3 -0
- package/static/c76328b/playground/languages/index.kt +3 -0
- package/static/c76328b/playground/languages/index.pl +11 -0
- package/static/c76328b/playground/languages/index.py +25 -0
- package/static/c76328b/playground/languages/index.ts +3 -0
- package/static/c76328b/playground/languages/scrolling.txt +100 -0
- package/static/c76328b/playground/languages/tsconfig.json +24 -0
- package/static/c76328b/playground/sample-folder/a.txt +0 -0
- package/static/c76328b/playground/sample-folder/b.txt +0 -0
- package/static/c76328b/playground/sample-folder/c.txt +0 -0
- package/static/favicon.ico +0 -0
- package/static/index.html +14 -0
|
@@ -0,0 +1,2140 @@
|
|
|
1
|
+
const Two = '2.0';
|
|
2
|
+
const state$2 = {
|
|
3
|
+
callbacks: Object.create(null)
|
|
4
|
+
};
|
|
5
|
+
const set = (id, fn) => {
|
|
6
|
+
state$2.callbacks[id] = fn;
|
|
7
|
+
};
|
|
8
|
+
const get = id => {
|
|
9
|
+
return state$2.callbacks[id];
|
|
10
|
+
};
|
|
11
|
+
const remove = id => {
|
|
12
|
+
delete state$2.callbacks[id];
|
|
13
|
+
};
|
|
14
|
+
let id = 0;
|
|
15
|
+
const create$3 = () => {
|
|
16
|
+
return ++id;
|
|
17
|
+
};
|
|
18
|
+
const warn = (...args) => {
|
|
19
|
+
console.warn(...args);
|
|
20
|
+
};
|
|
21
|
+
const registerPromise = () => {
|
|
22
|
+
const id = create$3();
|
|
23
|
+
const {
|
|
24
|
+
resolve,
|
|
25
|
+
promise
|
|
26
|
+
} = Promise.withResolvers();
|
|
27
|
+
set(id, resolve);
|
|
28
|
+
return {
|
|
29
|
+
id,
|
|
30
|
+
promise
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
const resolve = (id, response) => {
|
|
34
|
+
const fn = get(id);
|
|
35
|
+
if (!fn) {
|
|
36
|
+
console.log(response);
|
|
37
|
+
warn(`callback ${id} may already be disposed`);
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
fn(response);
|
|
41
|
+
remove(id);
|
|
42
|
+
};
|
|
43
|
+
const create$2 = (method, params) => {
|
|
44
|
+
const {
|
|
45
|
+
id,
|
|
46
|
+
promise
|
|
47
|
+
} = registerPromise();
|
|
48
|
+
const message = {
|
|
49
|
+
jsonrpc: Two,
|
|
50
|
+
method,
|
|
51
|
+
params,
|
|
52
|
+
id
|
|
53
|
+
};
|
|
54
|
+
return {
|
|
55
|
+
message,
|
|
56
|
+
promise
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
class JsonRpcError extends Error {
|
|
60
|
+
constructor(message) {
|
|
61
|
+
super(message);
|
|
62
|
+
this.name = 'JsonRpcError';
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
const NewLine$3 = '\n';
|
|
66
|
+
const DomException = 'DOMException';
|
|
67
|
+
const ReferenceError$1 = 'ReferenceError';
|
|
68
|
+
const SyntaxError$1 = 'SyntaxError';
|
|
69
|
+
const TypeError$1 = 'TypeError';
|
|
70
|
+
const getErrorConstructor = (message, type) => {
|
|
71
|
+
if (type) {
|
|
72
|
+
switch (type) {
|
|
73
|
+
case DomException:
|
|
74
|
+
return DOMException;
|
|
75
|
+
case TypeError$1:
|
|
76
|
+
return TypeError;
|
|
77
|
+
case SyntaxError$1:
|
|
78
|
+
return SyntaxError;
|
|
79
|
+
case ReferenceError$1:
|
|
80
|
+
return ReferenceError;
|
|
81
|
+
default:
|
|
82
|
+
return Error;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
if (message.startsWith('TypeError: ')) {
|
|
86
|
+
return TypeError;
|
|
87
|
+
}
|
|
88
|
+
if (message.startsWith('SyntaxError: ')) {
|
|
89
|
+
return SyntaxError;
|
|
90
|
+
}
|
|
91
|
+
if (message.startsWith('ReferenceError: ')) {
|
|
92
|
+
return ReferenceError;
|
|
93
|
+
}
|
|
94
|
+
return Error;
|
|
95
|
+
};
|
|
96
|
+
const constructError = (message, type, name) => {
|
|
97
|
+
const ErrorConstructor = getErrorConstructor(message, type);
|
|
98
|
+
if (ErrorConstructor === DOMException && name) {
|
|
99
|
+
return new ErrorConstructor(message, name);
|
|
100
|
+
}
|
|
101
|
+
if (ErrorConstructor === Error) {
|
|
102
|
+
const error = new Error(message);
|
|
103
|
+
if (name && name !== 'VError') {
|
|
104
|
+
error.name = name;
|
|
105
|
+
}
|
|
106
|
+
return error;
|
|
107
|
+
}
|
|
108
|
+
return new ErrorConstructor(message);
|
|
109
|
+
};
|
|
110
|
+
const getNewLineIndex$2 = (string, startIndex = undefined) => {
|
|
111
|
+
return string.indexOf(NewLine$3, startIndex);
|
|
112
|
+
};
|
|
113
|
+
const getParentStack = error => {
|
|
114
|
+
let parentStack = error.stack || error.data || error.message || '';
|
|
115
|
+
if (parentStack.startsWith(' at')) {
|
|
116
|
+
parentStack = error.message + NewLine$3 + parentStack;
|
|
117
|
+
}
|
|
118
|
+
return parentStack;
|
|
119
|
+
};
|
|
120
|
+
const joinLines$1 = lines => {
|
|
121
|
+
return lines.join(NewLine$3);
|
|
122
|
+
};
|
|
123
|
+
const MethodNotFound = -32601;
|
|
124
|
+
const Custom = -32001;
|
|
125
|
+
const splitLines$1 = lines => {
|
|
126
|
+
return lines.split(NewLine$3);
|
|
127
|
+
};
|
|
128
|
+
const restoreJsonRpcError = error => {
|
|
129
|
+
if (error && error instanceof Error) {
|
|
130
|
+
return error;
|
|
131
|
+
}
|
|
132
|
+
const currentStack = joinLines$1(splitLines$1(new Error().stack || '').slice(1));
|
|
133
|
+
if (error && error.code && error.code === MethodNotFound) {
|
|
134
|
+
const restoredError = new JsonRpcError(error.message);
|
|
135
|
+
const parentStack = getParentStack(error);
|
|
136
|
+
restoredError.stack = parentStack + NewLine$3 + currentStack;
|
|
137
|
+
return restoredError;
|
|
138
|
+
}
|
|
139
|
+
if (error && error.message) {
|
|
140
|
+
const restoredError = constructError(error.message, error.type, error.name);
|
|
141
|
+
if (error.data) {
|
|
142
|
+
if (error.data.stack && error.data.type && error.message) {
|
|
143
|
+
restoredError.stack = error.data.type + ': ' + error.message + NewLine$3 + error.data.stack + NewLine$3 + currentStack;
|
|
144
|
+
} else if (error.data.stack) {
|
|
145
|
+
restoredError.stack = error.data.stack;
|
|
146
|
+
}
|
|
147
|
+
if (error.data.codeFrame) {
|
|
148
|
+
// @ts-ignore
|
|
149
|
+
restoredError.codeFrame = error.data.codeFrame;
|
|
150
|
+
}
|
|
151
|
+
if (error.data.code) {
|
|
152
|
+
// @ts-ignore
|
|
153
|
+
restoredError.code = error.data.code;
|
|
154
|
+
}
|
|
155
|
+
if (error.data.type) {
|
|
156
|
+
// @ts-ignore
|
|
157
|
+
restoredError.name = error.data.type;
|
|
158
|
+
}
|
|
159
|
+
} else {
|
|
160
|
+
if (error.stack) {
|
|
161
|
+
const lowerStack = restoredError.stack || '';
|
|
162
|
+
// @ts-ignore
|
|
163
|
+
const indexNewLine = getNewLineIndex$2(lowerStack);
|
|
164
|
+
const parentStack = getParentStack(error);
|
|
165
|
+
// @ts-ignore
|
|
166
|
+
restoredError.stack = parentStack + lowerStack.slice(indexNewLine);
|
|
167
|
+
}
|
|
168
|
+
if (error.codeFrame) {
|
|
169
|
+
// @ts-ignore
|
|
170
|
+
restoredError.codeFrame = error.codeFrame;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
return restoredError;
|
|
174
|
+
}
|
|
175
|
+
if (typeof error === 'string') {
|
|
176
|
+
return new Error(`JsonRpc Error: ${error}`);
|
|
177
|
+
}
|
|
178
|
+
return new Error(`JsonRpc Error: ${error}`);
|
|
179
|
+
};
|
|
180
|
+
const unwrapJsonRpcResult = responseMessage => {
|
|
181
|
+
if ('error' in responseMessage) {
|
|
182
|
+
const restoredError = restoreJsonRpcError(responseMessage.error);
|
|
183
|
+
throw restoredError;
|
|
184
|
+
}
|
|
185
|
+
if ('result' in responseMessage) {
|
|
186
|
+
return responseMessage.result;
|
|
187
|
+
}
|
|
188
|
+
throw new JsonRpcError('unexpected response message');
|
|
189
|
+
};
|
|
190
|
+
const E_COMMAND_NOT_FOUND = 'E_COMMAND_NOT_FOUND';
|
|
191
|
+
const getErrorType = prettyError => {
|
|
192
|
+
if (prettyError && prettyError.type) {
|
|
193
|
+
return prettyError.type;
|
|
194
|
+
}
|
|
195
|
+
if (prettyError && prettyError.constructor && prettyError.constructor.name) {
|
|
196
|
+
return prettyError.constructor.name;
|
|
197
|
+
}
|
|
198
|
+
return undefined;
|
|
199
|
+
};
|
|
200
|
+
const getErrorProperty = (error, prettyError) => {
|
|
201
|
+
if (error && error.code === E_COMMAND_NOT_FOUND) {
|
|
202
|
+
return {
|
|
203
|
+
code: MethodNotFound,
|
|
204
|
+
message: error.message,
|
|
205
|
+
data: error.stack
|
|
206
|
+
};
|
|
207
|
+
}
|
|
208
|
+
return {
|
|
209
|
+
code: Custom,
|
|
210
|
+
message: prettyError.message,
|
|
211
|
+
data: {
|
|
212
|
+
stack: prettyError.stack,
|
|
213
|
+
codeFrame: prettyError.codeFrame,
|
|
214
|
+
type: getErrorType(prettyError),
|
|
215
|
+
code: prettyError.code,
|
|
216
|
+
name: prettyError.name
|
|
217
|
+
}
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
const create$1$1 = (message, error) => {
|
|
221
|
+
return {
|
|
222
|
+
jsonrpc: Two,
|
|
223
|
+
id: message.id,
|
|
224
|
+
error
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
const getErrorResponse = (message, error, preparePrettyError, logError) => {
|
|
228
|
+
const prettyError = preparePrettyError(error);
|
|
229
|
+
logError(error, prettyError);
|
|
230
|
+
const errorProperty = getErrorProperty(error, prettyError);
|
|
231
|
+
return create$1$1(message, errorProperty);
|
|
232
|
+
};
|
|
233
|
+
const create$4 = (message, result) => {
|
|
234
|
+
return {
|
|
235
|
+
jsonrpc: Two,
|
|
236
|
+
id: message.id,
|
|
237
|
+
result: result ?? null
|
|
238
|
+
};
|
|
239
|
+
};
|
|
240
|
+
const getSuccessResponse = (message, result) => {
|
|
241
|
+
const resultProperty = result ?? null;
|
|
242
|
+
return create$4(message, resultProperty);
|
|
243
|
+
};
|
|
244
|
+
const getResponse = async (message, ipc, execute, preparePrettyError, logError, requiresSocket) => {
|
|
245
|
+
try {
|
|
246
|
+
const result = requiresSocket(message.method) ? await execute(message.method, ipc, ...message.params) : await execute(message.method, ...message.params);
|
|
247
|
+
return getSuccessResponse(message, result);
|
|
248
|
+
} catch (error) {
|
|
249
|
+
return getErrorResponse(message, error, preparePrettyError, logError);
|
|
250
|
+
}
|
|
251
|
+
};
|
|
252
|
+
const defaultPreparePrettyError = error => {
|
|
253
|
+
return error;
|
|
254
|
+
};
|
|
255
|
+
const defaultLogError = () => {
|
|
256
|
+
// ignore
|
|
257
|
+
};
|
|
258
|
+
const defaultRequiresSocket = () => {
|
|
259
|
+
return false;
|
|
260
|
+
};
|
|
261
|
+
const defaultResolve = resolve;
|
|
262
|
+
|
|
263
|
+
// TODO maybe remove this in v6 or v7, only accept options object to simplify the code
|
|
264
|
+
const normalizeParams = args => {
|
|
265
|
+
if (args.length === 1) {
|
|
266
|
+
const options = args[0];
|
|
267
|
+
return {
|
|
268
|
+
ipc: options.ipc,
|
|
269
|
+
message: options.message,
|
|
270
|
+
execute: options.execute,
|
|
271
|
+
resolve: options.resolve || defaultResolve,
|
|
272
|
+
preparePrettyError: options.preparePrettyError || defaultPreparePrettyError,
|
|
273
|
+
logError: options.logError || defaultLogError,
|
|
274
|
+
requiresSocket: options.requiresSocket || defaultRequiresSocket
|
|
275
|
+
};
|
|
276
|
+
}
|
|
277
|
+
return {
|
|
278
|
+
ipc: args[0],
|
|
279
|
+
message: args[1],
|
|
280
|
+
execute: args[2],
|
|
281
|
+
resolve: args[3],
|
|
282
|
+
preparePrettyError: args[4],
|
|
283
|
+
logError: args[5],
|
|
284
|
+
requiresSocket: args[6]
|
|
285
|
+
};
|
|
286
|
+
};
|
|
287
|
+
const handleJsonRpcMessage = async (...args) => {
|
|
288
|
+
const options = normalizeParams(args);
|
|
289
|
+
const {
|
|
290
|
+
message,
|
|
291
|
+
ipc,
|
|
292
|
+
execute,
|
|
293
|
+
resolve,
|
|
294
|
+
preparePrettyError,
|
|
295
|
+
logError,
|
|
296
|
+
requiresSocket
|
|
297
|
+
} = options;
|
|
298
|
+
if ('id' in message) {
|
|
299
|
+
if ('method' in message) {
|
|
300
|
+
const response = await getResponse(message, ipc, execute, preparePrettyError, logError, requiresSocket);
|
|
301
|
+
try {
|
|
302
|
+
ipc.send(response);
|
|
303
|
+
} catch (error) {
|
|
304
|
+
const errorResponse = getErrorResponse(message, error, preparePrettyError, logError);
|
|
305
|
+
ipc.send(errorResponse);
|
|
306
|
+
}
|
|
307
|
+
return;
|
|
308
|
+
}
|
|
309
|
+
resolve(message.id, message);
|
|
310
|
+
return;
|
|
311
|
+
}
|
|
312
|
+
if ('method' in message) {
|
|
313
|
+
await getResponse(message, ipc, execute, preparePrettyError, logError, requiresSocket);
|
|
314
|
+
return;
|
|
315
|
+
}
|
|
316
|
+
throw new JsonRpcError('unexpected message');
|
|
317
|
+
};
|
|
318
|
+
const invokeHelper = async (ipc, method, params, useSendAndTransfer) => {
|
|
319
|
+
const {
|
|
320
|
+
message,
|
|
321
|
+
promise
|
|
322
|
+
} = create$2(method, params);
|
|
323
|
+
if (useSendAndTransfer && ipc.sendAndTransfer) {
|
|
324
|
+
ipc.sendAndTransfer(message);
|
|
325
|
+
} else {
|
|
326
|
+
ipc.send(message);
|
|
327
|
+
}
|
|
328
|
+
const responseMessage = await promise;
|
|
329
|
+
return unwrapJsonRpcResult(responseMessage);
|
|
330
|
+
};
|
|
331
|
+
const invoke$1 = (ipc, method, ...params) => {
|
|
332
|
+
return invokeHelper(ipc, method, params, false);
|
|
333
|
+
};
|
|
334
|
+
const invokeAndTransfer$1 = (ipc, method, ...params) => {
|
|
335
|
+
return invokeHelper(ipc, method, params, true);
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
const commands = Object.create(null);
|
|
339
|
+
const register = commandMap => {
|
|
340
|
+
Object.assign(commands, commandMap);
|
|
341
|
+
};
|
|
342
|
+
const getCommand = key => {
|
|
343
|
+
return commands[key];
|
|
344
|
+
};
|
|
345
|
+
const execute$3 = (command, ...args) => {
|
|
346
|
+
const fn = getCommand(command);
|
|
347
|
+
if (!fn) {
|
|
348
|
+
throw new Error(`command not found ${command}`);
|
|
349
|
+
}
|
|
350
|
+
return fn(...args);
|
|
351
|
+
};
|
|
352
|
+
|
|
353
|
+
const getData$1 = event => {
|
|
354
|
+
return event.data;
|
|
355
|
+
};
|
|
356
|
+
const attachEvents = that => {
|
|
357
|
+
const handleMessage = (...args) => {
|
|
358
|
+
const data = that.getData(...args);
|
|
359
|
+
that.dispatchEvent(new MessageEvent('message', {
|
|
360
|
+
data
|
|
361
|
+
}));
|
|
362
|
+
};
|
|
363
|
+
that.onMessage(handleMessage);
|
|
364
|
+
const handleClose = event => {
|
|
365
|
+
that.dispatchEvent(new Event('close'));
|
|
366
|
+
};
|
|
367
|
+
that.onClose(handleClose);
|
|
368
|
+
};
|
|
369
|
+
class Ipc extends EventTarget {
|
|
370
|
+
constructor(rawIpc) {
|
|
371
|
+
super();
|
|
372
|
+
this._rawIpc = rawIpc;
|
|
373
|
+
attachEvents(this);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
const readyMessage = 'ready';
|
|
377
|
+
const walkValue = (value, transferrables, isTransferrable) => {
|
|
378
|
+
if (!value) {
|
|
379
|
+
return;
|
|
380
|
+
}
|
|
381
|
+
if (isTransferrable(value)) {
|
|
382
|
+
transferrables.push(value);
|
|
383
|
+
return;
|
|
384
|
+
}
|
|
385
|
+
if (Array.isArray(value)) {
|
|
386
|
+
for (const item of value) {
|
|
387
|
+
walkValue(item, transferrables, isTransferrable);
|
|
388
|
+
}
|
|
389
|
+
return;
|
|
390
|
+
}
|
|
391
|
+
if (typeof value === 'object') {
|
|
392
|
+
for (const property of Object.values(value)) {
|
|
393
|
+
walkValue(property, transferrables, isTransferrable);
|
|
394
|
+
}
|
|
395
|
+
return;
|
|
396
|
+
}
|
|
397
|
+
};
|
|
398
|
+
const isMessagePort = value => {
|
|
399
|
+
return value && value instanceof MessagePort;
|
|
400
|
+
};
|
|
401
|
+
const isMessagePortMain = value => {
|
|
402
|
+
return value && value.constructor && value.constructor.name === 'MessagePortMain';
|
|
403
|
+
};
|
|
404
|
+
const isOffscreenCanvas = value => {
|
|
405
|
+
return typeof OffscreenCanvas !== 'undefined' && value instanceof OffscreenCanvas;
|
|
406
|
+
};
|
|
407
|
+
const isInstanceOf = (value, constructorName) => {
|
|
408
|
+
return value?.constructor?.name === constructorName;
|
|
409
|
+
};
|
|
410
|
+
const isSocket = value => {
|
|
411
|
+
return isInstanceOf(value, 'Socket');
|
|
412
|
+
};
|
|
413
|
+
const transferrables = [isMessagePort, isMessagePortMain, isOffscreenCanvas, isSocket];
|
|
414
|
+
const isTransferrable = value => {
|
|
415
|
+
for (const fn of transferrables) {
|
|
416
|
+
if (fn(value)) {
|
|
417
|
+
return true;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
return false;
|
|
421
|
+
};
|
|
422
|
+
const getTransferrables = value => {
|
|
423
|
+
const transferrables = [];
|
|
424
|
+
walkValue(value, transferrables, isTransferrable);
|
|
425
|
+
return transferrables;
|
|
426
|
+
};
|
|
427
|
+
const listen$2$1 = () => {
|
|
428
|
+
// @ts-ignore
|
|
429
|
+
if (typeof WorkerGlobalScope === 'undefined') {
|
|
430
|
+
throw new TypeError('module is not in web worker scope');
|
|
431
|
+
}
|
|
432
|
+
return globalThis;
|
|
433
|
+
};
|
|
434
|
+
const signal$2 = global => {
|
|
435
|
+
global.postMessage(readyMessage);
|
|
436
|
+
};
|
|
437
|
+
class IpcChildWithModuleWorker extends Ipc {
|
|
438
|
+
getData(event) {
|
|
439
|
+
return getData$1(event);
|
|
440
|
+
}
|
|
441
|
+
send(message) {
|
|
442
|
+
// @ts-ignore
|
|
443
|
+
this._rawIpc.postMessage(message);
|
|
444
|
+
}
|
|
445
|
+
sendAndTransfer(message) {
|
|
446
|
+
const transfer = getTransferrables(message);
|
|
447
|
+
// @ts-ignore
|
|
448
|
+
this._rawIpc.postMessage(message, transfer);
|
|
449
|
+
}
|
|
450
|
+
dispose() {
|
|
451
|
+
// ignore
|
|
452
|
+
}
|
|
453
|
+
onClose(callback) {
|
|
454
|
+
// ignore
|
|
455
|
+
}
|
|
456
|
+
onMessage(callback) {
|
|
457
|
+
this._rawIpc.addEventListener('message', callback);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
const wrap$5 = global => {
|
|
461
|
+
return new IpcChildWithModuleWorker(global);
|
|
462
|
+
};
|
|
463
|
+
const E_INCOMPATIBLE_NATIVE_MODULE = 'E_INCOMPATIBLE_NATIVE_MODULE';
|
|
464
|
+
const E_MODULES_NOT_SUPPORTED_IN_ELECTRON = 'E_MODULES_NOT_SUPPORTED_IN_ELECTRON';
|
|
465
|
+
const ERR_MODULE_NOT_FOUND = 'ERR_MODULE_NOT_FOUND';
|
|
466
|
+
const NewLine$1 = '\n';
|
|
467
|
+
const joinLines = lines => {
|
|
468
|
+
return lines.join(NewLine$1);
|
|
469
|
+
};
|
|
470
|
+
const splitLines = lines => {
|
|
471
|
+
return lines.split(NewLine$1);
|
|
472
|
+
};
|
|
473
|
+
const isModuleNotFoundMessage = line => {
|
|
474
|
+
return line.includes('[ERR_MODULE_NOT_FOUND]');
|
|
475
|
+
};
|
|
476
|
+
const getModuleNotFoundError = stderr => {
|
|
477
|
+
const lines = splitLines(stderr);
|
|
478
|
+
const messageIndex = lines.findIndex(isModuleNotFoundMessage);
|
|
479
|
+
const message = lines[messageIndex];
|
|
480
|
+
return {
|
|
481
|
+
message,
|
|
482
|
+
code: ERR_MODULE_NOT_FOUND
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
const RE_NATIVE_MODULE_ERROR = /^innerError Error: Cannot find module '.*.node'/;
|
|
486
|
+
const RE_NATIVE_MODULE_ERROR_2 = /was compiled against a different Node.js version/;
|
|
487
|
+
const RE_MESSAGE_CODE_BLOCK_START = /^Error: The module '.*'$/;
|
|
488
|
+
const RE_MESSAGE_CODE_BLOCK_END = /^\s* at/;
|
|
489
|
+
const RE_AT = /^\s+at/;
|
|
490
|
+
const RE_AT_PROMISE_INDEX = /^\s*at async Promise.all \(index \d+\)$/;
|
|
491
|
+
const isUnhelpfulNativeModuleError = stderr => {
|
|
492
|
+
return RE_NATIVE_MODULE_ERROR.test(stderr) && RE_NATIVE_MODULE_ERROR_2.test(stderr);
|
|
493
|
+
};
|
|
494
|
+
const isMessageCodeBlockStartIndex = line => {
|
|
495
|
+
return RE_MESSAGE_CODE_BLOCK_START.test(line);
|
|
496
|
+
};
|
|
497
|
+
const isMessageCodeBlockEndIndex = line => {
|
|
498
|
+
return RE_MESSAGE_CODE_BLOCK_END.test(line);
|
|
499
|
+
};
|
|
500
|
+
const getMessageCodeBlock = stderr => {
|
|
501
|
+
const lines = splitLines(stderr);
|
|
502
|
+
const startIndex = lines.findIndex(isMessageCodeBlockStartIndex);
|
|
503
|
+
const endIndex = startIndex + lines.slice(startIndex).findIndex(isMessageCodeBlockEndIndex, startIndex);
|
|
504
|
+
const relevantLines = lines.slice(startIndex, endIndex);
|
|
505
|
+
const relevantMessage = relevantLines.join(' ').slice('Error: '.length);
|
|
506
|
+
return relevantMessage;
|
|
507
|
+
};
|
|
508
|
+
const getNativeModuleErrorMessage = stderr => {
|
|
509
|
+
const message = getMessageCodeBlock(stderr);
|
|
510
|
+
return {
|
|
511
|
+
message: `Incompatible native node module: ${message}`,
|
|
512
|
+
code: E_INCOMPATIBLE_NATIVE_MODULE
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
const isModulesSyntaxError = stderr => {
|
|
516
|
+
if (!stderr) {
|
|
517
|
+
return false;
|
|
518
|
+
}
|
|
519
|
+
return stderr.includes('SyntaxError: Cannot use import statement outside a module');
|
|
520
|
+
};
|
|
521
|
+
const getModuleSyntaxError = () => {
|
|
522
|
+
return {
|
|
523
|
+
message: `ES Modules are not supported in electron`,
|
|
524
|
+
code: E_MODULES_NOT_SUPPORTED_IN_ELECTRON
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
const isModuleNotFoundError = stderr => {
|
|
528
|
+
if (!stderr) {
|
|
529
|
+
return false;
|
|
530
|
+
}
|
|
531
|
+
return stderr.includes('ERR_MODULE_NOT_FOUND');
|
|
532
|
+
};
|
|
533
|
+
const isNormalStackLine = line => {
|
|
534
|
+
return RE_AT.test(line) && !RE_AT_PROMISE_INDEX.test(line);
|
|
535
|
+
};
|
|
536
|
+
const getDetails = lines => {
|
|
537
|
+
const index = lines.findIndex(isNormalStackLine);
|
|
538
|
+
if (index === -1) {
|
|
539
|
+
return {
|
|
540
|
+
actualMessage: joinLines(lines),
|
|
541
|
+
rest: []
|
|
542
|
+
};
|
|
543
|
+
}
|
|
544
|
+
let lastIndex = index - 1;
|
|
545
|
+
while (++lastIndex < lines.length) {
|
|
546
|
+
if (!isNormalStackLine(lines[lastIndex])) {
|
|
547
|
+
break;
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
return {
|
|
551
|
+
actualMessage: lines[index - 1],
|
|
552
|
+
rest: lines.slice(index, lastIndex)
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
const getHelpfulChildProcessError = (stdout, stderr) => {
|
|
556
|
+
if (isUnhelpfulNativeModuleError(stderr)) {
|
|
557
|
+
return getNativeModuleErrorMessage(stderr);
|
|
558
|
+
}
|
|
559
|
+
if (isModulesSyntaxError(stderr)) {
|
|
560
|
+
return getModuleSyntaxError();
|
|
561
|
+
}
|
|
562
|
+
if (isModuleNotFoundError(stderr)) {
|
|
563
|
+
return getModuleNotFoundError(stderr);
|
|
564
|
+
}
|
|
565
|
+
const lines = splitLines(stderr);
|
|
566
|
+
const {
|
|
567
|
+
actualMessage,
|
|
568
|
+
rest
|
|
569
|
+
} = getDetails(lines);
|
|
570
|
+
return {
|
|
571
|
+
message: `${actualMessage}`,
|
|
572
|
+
code: '',
|
|
573
|
+
stack: rest
|
|
574
|
+
};
|
|
575
|
+
};
|
|
576
|
+
const normalizeLine$1 = line => {
|
|
577
|
+
if (line.startsWith('Error: ')) {
|
|
578
|
+
return line.slice('Error: '.length);
|
|
579
|
+
}
|
|
580
|
+
if (line.startsWith('VError: ')) {
|
|
581
|
+
return line.slice('VError: '.length);
|
|
582
|
+
}
|
|
583
|
+
return line;
|
|
584
|
+
};
|
|
585
|
+
const getCombinedMessage$1 = (error, message) => {
|
|
586
|
+
const stringifiedError = normalizeLine$1(`${error}`);
|
|
587
|
+
if (message) {
|
|
588
|
+
return `${message}: ${stringifiedError}`;
|
|
589
|
+
}
|
|
590
|
+
return stringifiedError;
|
|
591
|
+
};
|
|
592
|
+
const NewLine$2 = '\n';
|
|
593
|
+
const getNewLineIndex$1 = (string, startIndex = undefined) => {
|
|
594
|
+
return string.indexOf(NewLine$2, startIndex);
|
|
595
|
+
};
|
|
596
|
+
const mergeStacks$1 = (parent, child) => {
|
|
597
|
+
if (!child) {
|
|
598
|
+
return parent;
|
|
599
|
+
}
|
|
600
|
+
const parentNewLineIndex = getNewLineIndex$1(parent);
|
|
601
|
+
const childNewLineIndex = getNewLineIndex$1(child);
|
|
602
|
+
if (childNewLineIndex === -1) {
|
|
603
|
+
return parent;
|
|
604
|
+
}
|
|
605
|
+
const parentFirstLine = parent.slice(0, parentNewLineIndex);
|
|
606
|
+
const childRest = child.slice(childNewLineIndex);
|
|
607
|
+
const childFirstLine = normalizeLine$1(child.slice(0, childNewLineIndex));
|
|
608
|
+
if (parentFirstLine.includes(childFirstLine)) {
|
|
609
|
+
return parentFirstLine + childRest;
|
|
610
|
+
}
|
|
611
|
+
return child;
|
|
612
|
+
};
|
|
613
|
+
let VError$1 = class VError extends Error {
|
|
614
|
+
constructor(error, message) {
|
|
615
|
+
const combinedMessage = getCombinedMessage$1(error, message);
|
|
616
|
+
super(combinedMessage);
|
|
617
|
+
this.name = 'VError';
|
|
618
|
+
if (error instanceof Error) {
|
|
619
|
+
this.stack = mergeStacks$1(this.stack, error.stack);
|
|
620
|
+
}
|
|
621
|
+
if (error.codeFrame) {
|
|
622
|
+
// @ts-ignore
|
|
623
|
+
this.codeFrame = error.codeFrame;
|
|
624
|
+
}
|
|
625
|
+
if (error.code) {
|
|
626
|
+
// @ts-ignore
|
|
627
|
+
this.code = error.code;
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
};
|
|
631
|
+
class IpcError extends VError$1 {
|
|
632
|
+
// @ts-ignore
|
|
633
|
+
constructor(betterMessage, stdout = '', stderr = '') {
|
|
634
|
+
if (stdout || stderr) {
|
|
635
|
+
// @ts-ignore
|
|
636
|
+
const {
|
|
637
|
+
message,
|
|
638
|
+
code,
|
|
639
|
+
stack
|
|
640
|
+
} = getHelpfulChildProcessError(stdout, stderr);
|
|
641
|
+
const cause = new Error(message);
|
|
642
|
+
// @ts-ignore
|
|
643
|
+
cause.code = code;
|
|
644
|
+
cause.stack = stack;
|
|
645
|
+
super(cause, betterMessage);
|
|
646
|
+
} else {
|
|
647
|
+
super(betterMessage);
|
|
648
|
+
}
|
|
649
|
+
// @ts-ignore
|
|
650
|
+
this.name = 'IpcError';
|
|
651
|
+
// @ts-ignore
|
|
652
|
+
this.stdout = stdout;
|
|
653
|
+
// @ts-ignore
|
|
654
|
+
this.stderr = stderr;
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
const withResolvers = () => {
|
|
658
|
+
let _resolve;
|
|
659
|
+
const promise = new Promise(resolve => {
|
|
660
|
+
_resolve = resolve;
|
|
661
|
+
});
|
|
662
|
+
return {
|
|
663
|
+
resolve: _resolve,
|
|
664
|
+
promise
|
|
665
|
+
};
|
|
666
|
+
};
|
|
667
|
+
const waitForFirstMessage = async port => {
|
|
668
|
+
const {
|
|
669
|
+
resolve,
|
|
670
|
+
promise
|
|
671
|
+
} = withResolvers();
|
|
672
|
+
port.addEventListener('message', resolve, {
|
|
673
|
+
once: true
|
|
674
|
+
});
|
|
675
|
+
const event = await promise;
|
|
676
|
+
// @ts-ignore
|
|
677
|
+
return event.data;
|
|
678
|
+
};
|
|
679
|
+
const listen$1$1 = async () => {
|
|
680
|
+
const parentIpcRaw = listen$2$1();
|
|
681
|
+
signal$2(parentIpcRaw);
|
|
682
|
+
const parentIpc = wrap$5(parentIpcRaw);
|
|
683
|
+
const firstMessage = await waitForFirstMessage(parentIpc);
|
|
684
|
+
if (firstMessage.method !== 'initialize') {
|
|
685
|
+
throw new IpcError('unexpected first message');
|
|
686
|
+
}
|
|
687
|
+
const type = firstMessage.params[0];
|
|
688
|
+
if (type === 'message-port') {
|
|
689
|
+
parentIpc.send({
|
|
690
|
+
jsonrpc: '2.0',
|
|
691
|
+
id: firstMessage.id,
|
|
692
|
+
result: null
|
|
693
|
+
});
|
|
694
|
+
parentIpc.dispose();
|
|
695
|
+
const port = firstMessage.params[1];
|
|
696
|
+
return port;
|
|
697
|
+
}
|
|
698
|
+
return globalThis;
|
|
699
|
+
};
|
|
700
|
+
class IpcChildWithModuleWorkerAndMessagePort extends Ipc {
|
|
701
|
+
constructor(port) {
|
|
702
|
+
super(port);
|
|
703
|
+
}
|
|
704
|
+
getData(event) {
|
|
705
|
+
return getData$1(event);
|
|
706
|
+
}
|
|
707
|
+
send(message) {
|
|
708
|
+
this._rawIpc.postMessage(message);
|
|
709
|
+
}
|
|
710
|
+
sendAndTransfer(message) {
|
|
711
|
+
const transfer = getTransferrables(message);
|
|
712
|
+
this._rawIpc.postMessage(message, transfer);
|
|
713
|
+
}
|
|
714
|
+
dispose() {
|
|
715
|
+
if (this._rawIpc.close) {
|
|
716
|
+
this._rawIpc.close();
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
onClose(callback) {
|
|
720
|
+
// ignore
|
|
721
|
+
}
|
|
722
|
+
onMessage(callback) {
|
|
723
|
+
this._rawIpc.addEventListener('message', callback);
|
|
724
|
+
this._rawIpc.start();
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
const wrap$4 = port => {
|
|
728
|
+
return new IpcChildWithModuleWorkerAndMessagePort(port);
|
|
729
|
+
};
|
|
730
|
+
const IpcChildWithModuleWorkerAndMessagePort$1 = {
|
|
731
|
+
__proto__: null,
|
|
732
|
+
listen: listen$1$1,
|
|
733
|
+
wrap: wrap$4
|
|
734
|
+
};
|
|
735
|
+
|
|
736
|
+
const createRpc = ipc => {
|
|
737
|
+
const rpc = {
|
|
738
|
+
invoke(method, ...params) {
|
|
739
|
+
return invoke$1(ipc, method, ...params);
|
|
740
|
+
},
|
|
741
|
+
invokeAndTransfer(method, ...params) {
|
|
742
|
+
return invokeAndTransfer$1(ipc, method, ...params);
|
|
743
|
+
}
|
|
744
|
+
};
|
|
745
|
+
return rpc;
|
|
746
|
+
};
|
|
747
|
+
const requiresSocket$1 = () => {
|
|
748
|
+
return false;
|
|
749
|
+
};
|
|
750
|
+
const preparePrettyError$1 = error => {
|
|
751
|
+
return error;
|
|
752
|
+
};
|
|
753
|
+
const logError$1 = () => {
|
|
754
|
+
// handled by renderer worker
|
|
755
|
+
};
|
|
756
|
+
const handleMessage = event => {
|
|
757
|
+
return handleJsonRpcMessage(event.target, event.data, execute$3, resolve, preparePrettyError$1, logError$1, requiresSocket$1);
|
|
758
|
+
};
|
|
759
|
+
const handleIpc = ipc => {
|
|
760
|
+
ipc.addEventListener('message', handleMessage);
|
|
761
|
+
};
|
|
762
|
+
|
|
763
|
+
// @ts-ignore
|
|
764
|
+
const listen$2 = async () => {
|
|
765
|
+
const module = IpcChildWithModuleWorkerAndMessagePort$1;
|
|
766
|
+
const rawIpc = await module.listen();
|
|
767
|
+
const ipc = module.wrap(rawIpc);
|
|
768
|
+
return ipc;
|
|
769
|
+
};
|
|
770
|
+
const create$1 = async ({
|
|
771
|
+
commandMap
|
|
772
|
+
}) => {
|
|
773
|
+
// TODO create a commandMap per rpc instance
|
|
774
|
+
register(commandMap);
|
|
775
|
+
const ipc = await listen$2();
|
|
776
|
+
handleIpc(ipc);
|
|
777
|
+
const rpc = createRpc(ipc);
|
|
778
|
+
return rpc;
|
|
779
|
+
};
|
|
780
|
+
const WebWorkerRpcClient = {
|
|
781
|
+
__proto__: null,
|
|
782
|
+
create: create$1
|
|
783
|
+
};
|
|
784
|
+
|
|
785
|
+
const state$1 = {
|
|
786
|
+
rpc: undefined
|
|
787
|
+
};
|
|
788
|
+
const invoke = (method, ...params) => {
|
|
789
|
+
const rpc = state$1.rpc;
|
|
790
|
+
// @ts-ignore
|
|
791
|
+
return rpc.invoke(method, ...params);
|
|
792
|
+
};
|
|
793
|
+
const invokeAndTransfer = (method, ...params) => {
|
|
794
|
+
const rpc = state$1.rpc;
|
|
795
|
+
// @ts-ignore
|
|
796
|
+
return rpc.invokeAndTransfer(method, ...params);
|
|
797
|
+
};
|
|
798
|
+
const listen$1 = ipc => {
|
|
799
|
+
};
|
|
800
|
+
const setRpc = rpc => {
|
|
801
|
+
state$1.rpc = rpc;
|
|
802
|
+
};
|
|
803
|
+
|
|
804
|
+
const Rpc = {
|
|
805
|
+
__proto__: null,
|
|
806
|
+
invoke,
|
|
807
|
+
invokeAndTransfer,
|
|
808
|
+
listen: listen$1,
|
|
809
|
+
setRpc
|
|
810
|
+
};
|
|
811
|
+
|
|
812
|
+
const Fail = 'fail';
|
|
813
|
+
const Pass = 'pass';
|
|
814
|
+
|
|
815
|
+
const now = () => {
|
|
816
|
+
return performance.now();
|
|
817
|
+
};
|
|
818
|
+
|
|
819
|
+
const normalizeLine = line => {
|
|
820
|
+
if (line.startsWith('Error: ')) {
|
|
821
|
+
return line.slice('Error: '.length);
|
|
822
|
+
}
|
|
823
|
+
if (line.startsWith('VError: ')) {
|
|
824
|
+
return line.slice('VError: '.length);
|
|
825
|
+
}
|
|
826
|
+
return line;
|
|
827
|
+
};
|
|
828
|
+
const getCombinedMessage = (error, message) => {
|
|
829
|
+
const stringifiedError = normalizeLine(`${error}`);
|
|
830
|
+
if (message) {
|
|
831
|
+
return `${message}: ${stringifiedError}`;
|
|
832
|
+
}
|
|
833
|
+
return stringifiedError;
|
|
834
|
+
};
|
|
835
|
+
const NewLine = '\n';
|
|
836
|
+
const getNewLineIndex = (string, startIndex = undefined) => {
|
|
837
|
+
return string.indexOf(NewLine, startIndex);
|
|
838
|
+
};
|
|
839
|
+
const mergeStacks = (parent, child) => {
|
|
840
|
+
if (!child) {
|
|
841
|
+
return parent;
|
|
842
|
+
}
|
|
843
|
+
const parentNewLineIndex = getNewLineIndex(parent);
|
|
844
|
+
const childNewLineIndex = getNewLineIndex(child);
|
|
845
|
+
if (childNewLineIndex === -1) {
|
|
846
|
+
return parent;
|
|
847
|
+
}
|
|
848
|
+
const parentFirstLine = parent.slice(0, parentNewLineIndex);
|
|
849
|
+
const childRest = child.slice(childNewLineIndex);
|
|
850
|
+
const childFirstLine = normalizeLine(child.slice(0, childNewLineIndex));
|
|
851
|
+
if (parentFirstLine.includes(childFirstLine)) {
|
|
852
|
+
return parentFirstLine + childRest;
|
|
853
|
+
}
|
|
854
|
+
return child;
|
|
855
|
+
};
|
|
856
|
+
class VError extends Error {
|
|
857
|
+
constructor(error, message) {
|
|
858
|
+
const combinedMessage = getCombinedMessage(error, message);
|
|
859
|
+
super(combinedMessage);
|
|
860
|
+
this.name = 'VError';
|
|
861
|
+
if (error instanceof Error) {
|
|
862
|
+
this.stack = mergeStacks(this.stack, error.stack);
|
|
863
|
+
}
|
|
864
|
+
if (error.codeFrame) {
|
|
865
|
+
// @ts-ignore
|
|
866
|
+
this.codeFrame = error.codeFrame;
|
|
867
|
+
}
|
|
868
|
+
if (error.code) {
|
|
869
|
+
// @ts-ignore
|
|
870
|
+
this.code = error.code;
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
const printError = error => {
|
|
876
|
+
if (error && error.constructor.name === 'AssertionError') {
|
|
877
|
+
console.error(error.message);
|
|
878
|
+
} else {
|
|
879
|
+
console.error(error);
|
|
880
|
+
}
|
|
881
|
+
};
|
|
882
|
+
const stringifyError = error => {
|
|
883
|
+
if (!error) {
|
|
884
|
+
return `${error}`;
|
|
885
|
+
}
|
|
886
|
+
if (error && error.message && error.constructor.name && error.constructor.name !== 'Error' && error.constructor.name !== 'VError') {
|
|
887
|
+
return `${error}`;
|
|
888
|
+
}
|
|
889
|
+
return `${error.message}`;
|
|
890
|
+
};
|
|
891
|
+
const formatDuration = duration => {
|
|
892
|
+
return duration.toFixed(2) + 'ms';
|
|
893
|
+
};
|
|
894
|
+
const executeTest = async (name, fn, globals = {}) => {
|
|
895
|
+
let _error;
|
|
896
|
+
let _start;
|
|
897
|
+
let _end;
|
|
898
|
+
let _duration;
|
|
899
|
+
let _formattedDuration;
|
|
900
|
+
try {
|
|
901
|
+
_start = now();
|
|
902
|
+
await fn(globals);
|
|
903
|
+
_end = now();
|
|
904
|
+
_duration = _end - _start;
|
|
905
|
+
_formattedDuration = formatDuration(_duration);
|
|
906
|
+
console.info(`PASS ${name} in ${_formattedDuration}`);
|
|
907
|
+
} catch (error) {
|
|
908
|
+
if (error &&
|
|
909
|
+
// @ts-ignore
|
|
910
|
+
error.message.startsWith('Failed to load command TestFrameWork.')) {
|
|
911
|
+
console.error(error);
|
|
912
|
+
return;
|
|
913
|
+
}
|
|
914
|
+
// @ts-ignore
|
|
915
|
+
_error = stringifyError(error);
|
|
916
|
+
if (!(error instanceof VError)) {
|
|
917
|
+
error = new VError(error, `Test failed: ${name}`);
|
|
918
|
+
}
|
|
919
|
+
// @ts-ignore
|
|
920
|
+
printError(error);
|
|
921
|
+
}
|
|
922
|
+
let state;
|
|
923
|
+
let background;
|
|
924
|
+
let text;
|
|
925
|
+
if (_error) {
|
|
926
|
+
state = Fail;
|
|
927
|
+
background = 'red';
|
|
928
|
+
text = `test failed: ${_error}`;
|
|
929
|
+
} else {
|
|
930
|
+
background = 'green';
|
|
931
|
+
text = `test passed in ${_formattedDuration}`;
|
|
932
|
+
state = Pass;
|
|
933
|
+
}
|
|
934
|
+
await invoke('TestFrameWork.showOverlay', state, background, text);
|
|
935
|
+
};
|
|
936
|
+
|
|
937
|
+
const importScript = async url => {
|
|
938
|
+
try {
|
|
939
|
+
return await import(url);
|
|
940
|
+
} catch (error) {
|
|
941
|
+
throw error;
|
|
942
|
+
// TODO
|
|
943
|
+
// const actualErrorMessage = await TryToGetactualImportErrorMessage.tryToGetActualImportErrorMessage(url, error)
|
|
944
|
+
// throw new Error(actualErrorMessage)
|
|
945
|
+
}
|
|
946
|
+
};
|
|
947
|
+
|
|
948
|
+
const importTest = async url => {
|
|
949
|
+
try {
|
|
950
|
+
return await importScript(url);
|
|
951
|
+
} catch (error) {
|
|
952
|
+
throw new VError(error, 'Failed to import test');
|
|
953
|
+
}
|
|
954
|
+
};
|
|
955
|
+
|
|
956
|
+
// @ts-nocheck
|
|
957
|
+
|
|
958
|
+
const Assert = {
|
|
959
|
+
string(value, message) {
|
|
960
|
+
if (typeof value !== 'string') {
|
|
961
|
+
throw new TypeError(message);
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
number(value, message) {
|
|
965
|
+
if (typeof value !== 'number' || isNaN(value)) {
|
|
966
|
+
throw new TypeError(message);
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
};
|
|
970
|
+
const expect$1 = locator => {
|
|
971
|
+
const {
|
|
972
|
+
invoke
|
|
973
|
+
} = locator.webView || Rpc;
|
|
974
|
+
return {
|
|
975
|
+
async checkSingleElementCondition(fnName, options) {
|
|
976
|
+
Assert.string(fnName);
|
|
977
|
+
// TODO add rpcId property to locator instead
|
|
978
|
+
return invoke('TestFrameWork.checkSingleElementCondition', locator, fnName, options);
|
|
979
|
+
},
|
|
980
|
+
async checkMultiElementCondition(fnName, options) {
|
|
981
|
+
return invoke('TestFrameWork.checkMultiElementCondition', locator, fnName, options);
|
|
982
|
+
},
|
|
983
|
+
async toBeVisible() {
|
|
984
|
+
if (this.negated) {
|
|
985
|
+
throw new Error('use toBeHidden instead of not.toBeVisible');
|
|
986
|
+
}
|
|
987
|
+
return this.checkSingleElementCondition('toBeVisible', {});
|
|
988
|
+
},
|
|
989
|
+
async toHaveText(text) {
|
|
990
|
+
Assert.string(text, 'text must be of type string');
|
|
991
|
+
return this.checkSingleElementCondition('toHaveText', {
|
|
992
|
+
text
|
|
993
|
+
});
|
|
994
|
+
},
|
|
995
|
+
async toHaveValue(value) {
|
|
996
|
+
Assert.string(value, 'value must be of type string');
|
|
997
|
+
return this.checkSingleElementCondition('toHaveValue', {
|
|
998
|
+
value
|
|
999
|
+
});
|
|
1000
|
+
},
|
|
1001
|
+
async toBeFocused() {
|
|
1002
|
+
return this.checkSingleElementCondition('toBeFocused');
|
|
1003
|
+
},
|
|
1004
|
+
async toHaveCSS(key, value) {
|
|
1005
|
+
return this.checkSingleElementCondition('toHaveCss', {
|
|
1006
|
+
key,
|
|
1007
|
+
value
|
|
1008
|
+
});
|
|
1009
|
+
},
|
|
1010
|
+
async toHaveAttribute(key, value) {
|
|
1011
|
+
Assert.string(key, 'key must be of type string');
|
|
1012
|
+
// Assert.string(value, 'value must be of type string')
|
|
1013
|
+
return this.checkSingleElementCondition('toHaveAttribute', {
|
|
1014
|
+
key,
|
|
1015
|
+
value
|
|
1016
|
+
});
|
|
1017
|
+
},
|
|
1018
|
+
async toHaveClass(className) {
|
|
1019
|
+
Assert.string(className, 'className must be of type string');
|
|
1020
|
+
return this.checkSingleElementCondition('toHaveClass', {
|
|
1021
|
+
className
|
|
1022
|
+
});
|
|
1023
|
+
},
|
|
1024
|
+
async toHaveId(id) {
|
|
1025
|
+
Assert.string(id, 'id must be of type string');
|
|
1026
|
+
return this.checkSingleElementCondition('toHaveId', {
|
|
1027
|
+
id
|
|
1028
|
+
});
|
|
1029
|
+
},
|
|
1030
|
+
async toHaveCount(count) {
|
|
1031
|
+
Assert.number(count, 'count must be of type string');
|
|
1032
|
+
return this.checkMultiElementCondition('toHaveCount', {
|
|
1033
|
+
count
|
|
1034
|
+
});
|
|
1035
|
+
},
|
|
1036
|
+
async toBeHidden() {
|
|
1037
|
+
return this.checkMultiElementCondition('toBeHidden', {});
|
|
1038
|
+
},
|
|
1039
|
+
get not() {
|
|
1040
|
+
this.negated = true;
|
|
1041
|
+
return this;
|
|
1042
|
+
}
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
|
|
1046
|
+
const nameAnonymousFunction = (fn, name) => {
|
|
1047
|
+
Object.defineProperty(fn, 'name', {
|
|
1048
|
+
value: name
|
|
1049
|
+
});
|
|
1050
|
+
};
|
|
1051
|
+
|
|
1052
|
+
class AssertionError extends Error {
|
|
1053
|
+
constructor(message) {
|
|
1054
|
+
super(message);
|
|
1055
|
+
this.name = 'AssertionError';
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
const getType = value => {
|
|
1059
|
+
switch (typeof value) {
|
|
1060
|
+
case 'number':
|
|
1061
|
+
return 'number';
|
|
1062
|
+
case 'function':
|
|
1063
|
+
return 'function';
|
|
1064
|
+
case 'string':
|
|
1065
|
+
return 'string';
|
|
1066
|
+
case 'object':
|
|
1067
|
+
if (value === null) {
|
|
1068
|
+
return 'null';
|
|
1069
|
+
}
|
|
1070
|
+
if (Array.isArray(value)) {
|
|
1071
|
+
return 'array';
|
|
1072
|
+
}
|
|
1073
|
+
return 'object';
|
|
1074
|
+
case 'boolean':
|
|
1075
|
+
return 'boolean';
|
|
1076
|
+
default:
|
|
1077
|
+
return 'unknown';
|
|
1078
|
+
}
|
|
1079
|
+
};
|
|
1080
|
+
const object = value => {
|
|
1081
|
+
const type = getType(value);
|
|
1082
|
+
if (type !== 'object') {
|
|
1083
|
+
throw new AssertionError('expected value to be of type object');
|
|
1084
|
+
}
|
|
1085
|
+
};
|
|
1086
|
+
const string = value => {
|
|
1087
|
+
const type = getType(value);
|
|
1088
|
+
if (type !== 'string') {
|
|
1089
|
+
throw new AssertionError('expected value to be of type string');
|
|
1090
|
+
}
|
|
1091
|
+
};
|
|
1092
|
+
|
|
1093
|
+
// @ts-nocheck
|
|
1094
|
+
|
|
1095
|
+
const state = {
|
|
1096
|
+
/**
|
|
1097
|
+
* @type {any[]}
|
|
1098
|
+
*/
|
|
1099
|
+
pendingTests: [],
|
|
1100
|
+
mockRpcs: Object.create(null)
|
|
1101
|
+
};
|
|
1102
|
+
const addTest = (name, fn) => {
|
|
1103
|
+
state.pendingTests.push({
|
|
1104
|
+
name,
|
|
1105
|
+
fn
|
|
1106
|
+
});
|
|
1107
|
+
};
|
|
1108
|
+
const getTests = () => {
|
|
1109
|
+
const tests = state.pendingTests;
|
|
1110
|
+
state.pendingTests = [];
|
|
1111
|
+
return tests;
|
|
1112
|
+
};
|
|
1113
|
+
const setMockRpc = mockRpc => {
|
|
1114
|
+
object(mockRpc);
|
|
1115
|
+
string(mockRpc.name);
|
|
1116
|
+
state.mockRpcs[mockRpc.name] = mockRpc;
|
|
1117
|
+
};
|
|
1118
|
+
|
|
1119
|
+
// @ts-nocheck
|
|
1120
|
+
|
|
1121
|
+
const create = (selector, options = {}) => {
|
|
1122
|
+
return new Locator(selector, options);
|
|
1123
|
+
};
|
|
1124
|
+
const Locator = function (selector, {
|
|
1125
|
+
nth = -1,
|
|
1126
|
+
hasText = ''
|
|
1127
|
+
} = {}) {
|
|
1128
|
+
this._selector = selector;
|
|
1129
|
+
this._nth = nth;
|
|
1130
|
+
this._hasText = hasText;
|
|
1131
|
+
};
|
|
1132
|
+
const performAction = async (locator, action, options) => {
|
|
1133
|
+
const {
|
|
1134
|
+
invoke
|
|
1135
|
+
} = locator.webView || Rpc;
|
|
1136
|
+
return invoke('TestFrameWork.performAction', locator, action, options);
|
|
1137
|
+
};
|
|
1138
|
+
const toButtonNumber = buttonType => {
|
|
1139
|
+
switch (buttonType) {
|
|
1140
|
+
case 'left':
|
|
1141
|
+
return 0;
|
|
1142
|
+
case 'middle':
|
|
1143
|
+
return 1;
|
|
1144
|
+
case 'right':
|
|
1145
|
+
return 2;
|
|
1146
|
+
default:
|
|
1147
|
+
throw new Error(`unsupported button type: ${buttonType}`);
|
|
1148
|
+
}
|
|
1149
|
+
};
|
|
1150
|
+
Locator.prototype.click = async function ({
|
|
1151
|
+
button = 'left'
|
|
1152
|
+
} = {}) {
|
|
1153
|
+
const options = {
|
|
1154
|
+
cancable: true,
|
|
1155
|
+
bubbles: true,
|
|
1156
|
+
button: toButtonNumber(button),
|
|
1157
|
+
detail: 1
|
|
1158
|
+
};
|
|
1159
|
+
return performAction(this, 'click', options);
|
|
1160
|
+
};
|
|
1161
|
+
Locator.prototype.hover = async function () {
|
|
1162
|
+
const options = {
|
|
1163
|
+
cancable: true,
|
|
1164
|
+
bubbles: true
|
|
1165
|
+
};
|
|
1166
|
+
return performAction(this, 'hover', options);
|
|
1167
|
+
};
|
|
1168
|
+
Locator.prototype.first = function () {
|
|
1169
|
+
return create(this._selector, {
|
|
1170
|
+
nth: 0
|
|
1171
|
+
});
|
|
1172
|
+
};
|
|
1173
|
+
Locator.prototype.locator = function (subSelector) {
|
|
1174
|
+
if (this._nth !== -1) {
|
|
1175
|
+
return create(`${this._selector}:nth-of-type(${this._nth + 1}) ${subSelector}`);
|
|
1176
|
+
}
|
|
1177
|
+
return create(`${this._selector} ${subSelector}`);
|
|
1178
|
+
};
|
|
1179
|
+
Locator.prototype.nth = function (nth) {
|
|
1180
|
+
return create(this._selector, {
|
|
1181
|
+
nth
|
|
1182
|
+
});
|
|
1183
|
+
};
|
|
1184
|
+
Locator.prototype.type = async function (text) {
|
|
1185
|
+
const options = {
|
|
1186
|
+
text
|
|
1187
|
+
};
|
|
1188
|
+
return performAction(this, 'type', options);
|
|
1189
|
+
};
|
|
1190
|
+
Locator.prototype.dispatchEvent = async function (type, init) {
|
|
1191
|
+
return performAction(this, 'dispatchEvent', {
|
|
1192
|
+
type,
|
|
1193
|
+
init
|
|
1194
|
+
});
|
|
1195
|
+
};
|
|
1196
|
+
|
|
1197
|
+
const getTmpDir$1 = async () => {
|
|
1198
|
+
return 'memfs://';
|
|
1199
|
+
};
|
|
1200
|
+
const test = async (name, fn) => {
|
|
1201
|
+
nameAnonymousFunction(fn, `test/${name}`);
|
|
1202
|
+
addTest(name, fn);
|
|
1203
|
+
};
|
|
1204
|
+
test.skip = async id => {
|
|
1205
|
+
const state = 'skip';
|
|
1206
|
+
const background = 'yellow';
|
|
1207
|
+
const text = `test skipped ${id}`;
|
|
1208
|
+
await invoke('TestFrameWork.showOverlay', state, background, text);
|
|
1209
|
+
};
|
|
1210
|
+
const expect = expect$1;
|
|
1211
|
+
|
|
1212
|
+
const TestFrameWork = {
|
|
1213
|
+
__proto__: null,
|
|
1214
|
+
Locator: create,
|
|
1215
|
+
expect,
|
|
1216
|
+
getTmpDir: getTmpDir$1,
|
|
1217
|
+
test
|
|
1218
|
+
};
|
|
1219
|
+
|
|
1220
|
+
const focus$2 = async () => {
|
|
1221
|
+
await invoke('ActivityBar.focus');
|
|
1222
|
+
};
|
|
1223
|
+
const focusFirst$2 = async () => {
|
|
1224
|
+
await invoke('ActivityBar.focusFirst');
|
|
1225
|
+
};
|
|
1226
|
+
const focusLast$2 = async () => {
|
|
1227
|
+
await invoke('ActivityBar.focusLast');
|
|
1228
|
+
};
|
|
1229
|
+
const focusNext$4 = async () => {
|
|
1230
|
+
await invoke('ActivityBar.focusNext');
|
|
1231
|
+
};
|
|
1232
|
+
const focusPrevious$2 = async () => {
|
|
1233
|
+
await invoke('ActivityBar.focusPrevious');
|
|
1234
|
+
};
|
|
1235
|
+
const handleClick$1 = async index => {
|
|
1236
|
+
await invoke('ActivityBar.handleClick', index);
|
|
1237
|
+
};
|
|
1238
|
+
const handleContextMenu = async () => {
|
|
1239
|
+
await invoke('ActivityBar.handleContextMenu');
|
|
1240
|
+
};
|
|
1241
|
+
const selectCurrent = async () => {
|
|
1242
|
+
await invoke('ActivityBar.selectCurrent');
|
|
1243
|
+
};
|
|
1244
|
+
|
|
1245
|
+
const TestFrameworkComponentActivityBar = {
|
|
1246
|
+
__proto__: null,
|
|
1247
|
+
focus: focus$2,
|
|
1248
|
+
focusFirst: focusFirst$2,
|
|
1249
|
+
focusLast: focusLast$2,
|
|
1250
|
+
focusNext: focusNext$4,
|
|
1251
|
+
focusPrevious: focusPrevious$2,
|
|
1252
|
+
handleClick: handleClick$1,
|
|
1253
|
+
handleContextMenu,
|
|
1254
|
+
selectCurrent
|
|
1255
|
+
};
|
|
1256
|
+
|
|
1257
|
+
const Electron = 'electron';
|
|
1258
|
+
const Remote = 'remote';
|
|
1259
|
+
|
|
1260
|
+
// @ts-nocheck
|
|
1261
|
+
|
|
1262
|
+
const getPlatform = () => {
|
|
1263
|
+
// @ts-expect-error
|
|
1264
|
+
if (typeof PLATFORM !== 'undefined') {
|
|
1265
|
+
// @ts-expect-error
|
|
1266
|
+
return PLATFORM;
|
|
1267
|
+
}
|
|
1268
|
+
if (typeof process !== 'undefined' && process.env.NODE_ENV === 'test') {
|
|
1269
|
+
return 'test';
|
|
1270
|
+
}
|
|
1271
|
+
// TODO find a better way to pass runtime environment
|
|
1272
|
+
if (typeof name !== 'undefined' && name.endsWith('(Electron)')) {
|
|
1273
|
+
return Electron;
|
|
1274
|
+
}
|
|
1275
|
+
return Remote;
|
|
1276
|
+
};
|
|
1277
|
+
const platform = getPlatform(); // TODO tree-shake this out in production
|
|
1278
|
+
|
|
1279
|
+
const getAssetDir = () => {
|
|
1280
|
+
// @ts-expect-error
|
|
1281
|
+
if (typeof ASSET_DIR !== 'undefined') {
|
|
1282
|
+
// @ts-expect-error
|
|
1283
|
+
return ASSET_DIR;
|
|
1284
|
+
}
|
|
1285
|
+
if (platform === Electron) {
|
|
1286
|
+
return '../../../../..';
|
|
1287
|
+
}
|
|
1288
|
+
return '';
|
|
1289
|
+
};
|
|
1290
|
+
const assetDir = getAssetDir();
|
|
1291
|
+
|
|
1292
|
+
const getBaseUrl = () => {
|
|
1293
|
+
return `${location.origin}/${assetDir}`;
|
|
1294
|
+
};
|
|
1295
|
+
|
|
1296
|
+
const TestFrameWorkComponentBaseUrl = {
|
|
1297
|
+
__proto__: null,
|
|
1298
|
+
getBaseUrl
|
|
1299
|
+
};
|
|
1300
|
+
|
|
1301
|
+
const execute$2 = async (id, ...args) => {
|
|
1302
|
+
return invoke(id, ...args);
|
|
1303
|
+
};
|
|
1304
|
+
|
|
1305
|
+
const TestFrameWorkComponentCommand = {
|
|
1306
|
+
__proto__: null,
|
|
1307
|
+
execute: execute$2
|
|
1308
|
+
};
|
|
1309
|
+
|
|
1310
|
+
const selectItem$1 = async text => {
|
|
1311
|
+
await invoke('Menu.selectItem', text);
|
|
1312
|
+
};
|
|
1313
|
+
|
|
1314
|
+
const TestFrameWorkComponentContextMenu = {
|
|
1315
|
+
__proto__: null,
|
|
1316
|
+
selectItem: selectItem$1
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
const setCursor = async (rowIndex, columnIndex) => {
|
|
1320
|
+
await invoke('Editor.cursorSet', rowIndex, columnIndex);
|
|
1321
|
+
};
|
|
1322
|
+
const openCompletion = async () => {
|
|
1323
|
+
await invoke('Editor.openCompletion');
|
|
1324
|
+
};
|
|
1325
|
+
const openEditorContextMenu = async () => {
|
|
1326
|
+
await invoke('Editor.handleContextMenu', 0, 0);
|
|
1327
|
+
};
|
|
1328
|
+
const invokeTabCompletion = async () => {
|
|
1329
|
+
await invoke('Editor.tabCompletion');
|
|
1330
|
+
};
|
|
1331
|
+
const executeTabCompletion = async () => {
|
|
1332
|
+
await invoke('Editor.tabCompletion');
|
|
1333
|
+
};
|
|
1334
|
+
const invokeBraceCompletion = async text => {
|
|
1335
|
+
await invoke('Editor.braceCompletion', text);
|
|
1336
|
+
};
|
|
1337
|
+
const cursorCharacterRight = async () => {
|
|
1338
|
+
await invoke('Editor.cursorCharacterRight');
|
|
1339
|
+
};
|
|
1340
|
+
const cursorCharacterLeft = async () => {
|
|
1341
|
+
await invoke('Editor.cursorCharacterLeft');
|
|
1342
|
+
};
|
|
1343
|
+
const copyLineDown = async () => {
|
|
1344
|
+
await invoke('Editor.copyLineDown');
|
|
1345
|
+
};
|
|
1346
|
+
const cursorDown = async () => {
|
|
1347
|
+
await invoke('Editor.cursorDown');
|
|
1348
|
+
};
|
|
1349
|
+
const cursorUp = async () => {
|
|
1350
|
+
await invoke('Editor.cursorUp');
|
|
1351
|
+
};
|
|
1352
|
+
const cursorWordLeft = async () => {
|
|
1353
|
+
await invoke('Editor.cursorWordLeft');
|
|
1354
|
+
};
|
|
1355
|
+
const cursorWordRight = async () => {
|
|
1356
|
+
await invoke('Editor.cursorWordRight');
|
|
1357
|
+
};
|
|
1358
|
+
const goToDefinition = async () => {
|
|
1359
|
+
await invoke('Editor.goToDefinition');
|
|
1360
|
+
};
|
|
1361
|
+
const openHover = async () => {
|
|
1362
|
+
await invoke('Editor.showHover2');
|
|
1363
|
+
};
|
|
1364
|
+
const goToTypeDefinition = async () => {
|
|
1365
|
+
await invoke('Editor.goToTypeDefinition');
|
|
1366
|
+
};
|
|
1367
|
+
const type = async text => {
|
|
1368
|
+
await invoke('Editor.type', text);
|
|
1369
|
+
};
|
|
1370
|
+
const findAllReferences = async () => {
|
|
1371
|
+
await invoke('SideBar.show', 'References', /* focus */true);
|
|
1372
|
+
};
|
|
1373
|
+
const findAllImplementations = async () => {
|
|
1374
|
+
await invoke('SideBar.show', 'Implementations', /* focus */true);
|
|
1375
|
+
};
|
|
1376
|
+
const setSelections = async selections => {
|
|
1377
|
+
await invoke('Editor.setSelections', selections);
|
|
1378
|
+
};
|
|
1379
|
+
const openFindWidget = async () => {
|
|
1380
|
+
await invoke('Editor.openFind');
|
|
1381
|
+
};
|
|
1382
|
+
const setDeltaY = async deltaY => {
|
|
1383
|
+
await invoke('Editor.setDeltaY', deltaY);
|
|
1384
|
+
};
|
|
1385
|
+
const format = async () => {
|
|
1386
|
+
await invoke('Editor.format');
|
|
1387
|
+
};
|
|
1388
|
+
const insertLineBreak = async () => {
|
|
1389
|
+
await invoke('Editor.insertLineBreak');
|
|
1390
|
+
};
|
|
1391
|
+
const openSourceActions = async () => {
|
|
1392
|
+
await invoke('Editor.showSourceActions2');
|
|
1393
|
+
};
|
|
1394
|
+
const sourceActionsSelectCurrent = async () => {
|
|
1395
|
+
await invoke('EditorSourceActions.selectCurrent');
|
|
1396
|
+
};
|
|
1397
|
+
const openCompletionDetails = async () => {
|
|
1398
|
+
await invoke('EditorCompletion.openDetails');
|
|
1399
|
+
};
|
|
1400
|
+
const closeCompletionDetails = async () => {
|
|
1401
|
+
await invoke('EditorCompletion.closeDetails');
|
|
1402
|
+
};
|
|
1403
|
+
const toggleCompletionDetails = async () => {
|
|
1404
|
+
await invoke('EditorCompletion.toggleDetails');
|
|
1405
|
+
};
|
|
1406
|
+
const organizeImports = async () => {
|
|
1407
|
+
await invoke('Editor.organizeImports');
|
|
1408
|
+
};
|
|
1409
|
+
const addAllMissingImports = async () => {
|
|
1410
|
+
await invoke('Editor.addAllMissingImports');
|
|
1411
|
+
};
|
|
1412
|
+
const sortImports = async () => {
|
|
1413
|
+
await invoke('Editor.sortImports');
|
|
1414
|
+
};
|
|
1415
|
+
const toggleLineComment = async () => {
|
|
1416
|
+
await invoke('Editor.toggleLineComment');
|
|
1417
|
+
};
|
|
1418
|
+
const toggleBlockComment = async () => {
|
|
1419
|
+
await invoke('Editor.toggleBlockComment');
|
|
1420
|
+
};
|
|
1421
|
+
const selectAll = async () => {
|
|
1422
|
+
await invoke('Editor.toggleBlockComment');
|
|
1423
|
+
};
|
|
1424
|
+
const openColorPicker = async () => {
|
|
1425
|
+
await invoke('Editor.openColorPicker');
|
|
1426
|
+
};
|
|
1427
|
+
const openFind = async () => {
|
|
1428
|
+
await invoke('Editor.openFind2');
|
|
1429
|
+
};
|
|
1430
|
+
const deleteAllLeft = async () => {
|
|
1431
|
+
await invoke('Editor.deleteAllLeft');
|
|
1432
|
+
};
|
|
1433
|
+
const deleteAllRight = async () => {
|
|
1434
|
+
await invoke('Editor.deleteAllRight');
|
|
1435
|
+
};
|
|
1436
|
+
const cursorWordPartLeft = async () => {
|
|
1437
|
+
await invoke('Editor.cursorWordPartLeft');
|
|
1438
|
+
};
|
|
1439
|
+
const cursorWordPartRight = async () => {
|
|
1440
|
+
await invoke('Editor.cursorWordPartRight');
|
|
1441
|
+
};
|
|
1442
|
+
const cursorEnd = async () => {
|
|
1443
|
+
await invoke('Editor.cursorEnd');
|
|
1444
|
+
};
|
|
1445
|
+
const cursorHome = async () => {
|
|
1446
|
+
await invoke('Editor.cursorHome');
|
|
1447
|
+
};
|
|
1448
|
+
const copyLineUp = async () => {
|
|
1449
|
+
await invoke('Editor.copyLineUp');
|
|
1450
|
+
};
|
|
1451
|
+
const copy = async () => {
|
|
1452
|
+
await invoke('Editor.copy');
|
|
1453
|
+
};
|
|
1454
|
+
const closeColorPicker = async () => {
|
|
1455
|
+
await invoke('Editor.closeColorPicker');
|
|
1456
|
+
};
|
|
1457
|
+
const openContextMenu$1 = async () => {
|
|
1458
|
+
await invoke('Editor.contextMenu');
|
|
1459
|
+
};
|
|
1460
|
+
const getText = async () => {
|
|
1461
|
+
return invoke('Editor.getText');
|
|
1462
|
+
};
|
|
1463
|
+
const rename$1 = async () => {
|
|
1464
|
+
await invoke('Editor.rename');
|
|
1465
|
+
};
|
|
1466
|
+
const showHover = async () => {
|
|
1467
|
+
await invoke('Editor.showHover2');
|
|
1468
|
+
};
|
|
1469
|
+
const openRename = async () => {
|
|
1470
|
+
await invoke('Editor.openRename');
|
|
1471
|
+
};
|
|
1472
|
+
|
|
1473
|
+
const TestFrameWorkComponentEditor = {
|
|
1474
|
+
__proto__: null,
|
|
1475
|
+
addAllMissingImports,
|
|
1476
|
+
closeColorPicker,
|
|
1477
|
+
closeCompletionDetails,
|
|
1478
|
+
copy,
|
|
1479
|
+
copyLineDown,
|
|
1480
|
+
copyLineUp,
|
|
1481
|
+
cursorCharacterLeft,
|
|
1482
|
+
cursorCharacterRight,
|
|
1483
|
+
cursorDown,
|
|
1484
|
+
cursorEnd,
|
|
1485
|
+
cursorHome,
|
|
1486
|
+
cursorUp,
|
|
1487
|
+
cursorWordLeft,
|
|
1488
|
+
cursorWordPartLeft,
|
|
1489
|
+
cursorWordPartRight,
|
|
1490
|
+
cursorWordRight,
|
|
1491
|
+
deleteAllLeft,
|
|
1492
|
+
deleteAllRight,
|
|
1493
|
+
executeTabCompletion,
|
|
1494
|
+
findAllImplementations,
|
|
1495
|
+
findAllReferences,
|
|
1496
|
+
format,
|
|
1497
|
+
getText,
|
|
1498
|
+
goToDefinition,
|
|
1499
|
+
goToTypeDefinition,
|
|
1500
|
+
insertLineBreak,
|
|
1501
|
+
invokeBraceCompletion,
|
|
1502
|
+
invokeTabCompletion,
|
|
1503
|
+
openColorPicker,
|
|
1504
|
+
openCompletion,
|
|
1505
|
+
openCompletionDetails,
|
|
1506
|
+
openContextMenu: openContextMenu$1,
|
|
1507
|
+
openEditorContextMenu,
|
|
1508
|
+
openFind,
|
|
1509
|
+
openFindWidget,
|
|
1510
|
+
openHover,
|
|
1511
|
+
openRename,
|
|
1512
|
+
openSourceActions,
|
|
1513
|
+
organizeImports,
|
|
1514
|
+
rename: rename$1,
|
|
1515
|
+
selectAll,
|
|
1516
|
+
setCursor,
|
|
1517
|
+
setDeltaY,
|
|
1518
|
+
setSelections,
|
|
1519
|
+
showHover,
|
|
1520
|
+
sortImports,
|
|
1521
|
+
sourceActionsSelectCurrent,
|
|
1522
|
+
toggleBlockComment,
|
|
1523
|
+
toggleCompletionDetails,
|
|
1524
|
+
toggleLineComment,
|
|
1525
|
+
type
|
|
1526
|
+
};
|
|
1527
|
+
|
|
1528
|
+
const openContextMenu = async index => {
|
|
1529
|
+
await invoke('Explorer.handleContextMenuKeyboard', index);
|
|
1530
|
+
};
|
|
1531
|
+
const focus$1 = async () => {
|
|
1532
|
+
await invoke('Explorer.focusIndex', -1);
|
|
1533
|
+
};
|
|
1534
|
+
const focusNext$3 = async () => {
|
|
1535
|
+
await invoke('Explorer.focusNext');
|
|
1536
|
+
};
|
|
1537
|
+
const focusIndex$2 = async index => {
|
|
1538
|
+
await invoke('Explorer.focusIndex', index);
|
|
1539
|
+
};
|
|
1540
|
+
const clickCurrent = async () => {
|
|
1541
|
+
await invoke('Explorer.handleClickCurrent');
|
|
1542
|
+
};
|
|
1543
|
+
const handleArrowLeft = async () => {
|
|
1544
|
+
await invoke('Explorer.handleArrowLeft');
|
|
1545
|
+
};
|
|
1546
|
+
const focusLast$1 = async () => {
|
|
1547
|
+
await invoke('Explorer.focusLast');
|
|
1548
|
+
};
|
|
1549
|
+
const focusFirst$1 = async () => {
|
|
1550
|
+
await invoke('Explorer.focusFirst');
|
|
1551
|
+
};
|
|
1552
|
+
const removeDirent = async () => {
|
|
1553
|
+
await invoke('Explorer.removeDirent');
|
|
1554
|
+
};
|
|
1555
|
+
const expandRecursively = async () => {
|
|
1556
|
+
await invoke('Explorer.expandRecursively');
|
|
1557
|
+
};
|
|
1558
|
+
const newFile = async () => {
|
|
1559
|
+
await invoke('Explorer.newFile');
|
|
1560
|
+
};
|
|
1561
|
+
const handleClick = async index => {
|
|
1562
|
+
await invoke('Explorer.handleClick', index);
|
|
1563
|
+
};
|
|
1564
|
+
const rename = async () => {
|
|
1565
|
+
await invoke('Explorer.rename');
|
|
1566
|
+
};
|
|
1567
|
+
const cancelEdit = async () => {
|
|
1568
|
+
await invoke('Explorer.cancelEdit');
|
|
1569
|
+
};
|
|
1570
|
+
const acceptEdit = async () => {
|
|
1571
|
+
await invoke('Explorer.acceptEdit');
|
|
1572
|
+
};
|
|
1573
|
+
const updateEditingValue = async value => {
|
|
1574
|
+
await invoke('Explorer.updateEditingValue', value);
|
|
1575
|
+
};
|
|
1576
|
+
const expandAll = async value => {
|
|
1577
|
+
await invoke('Explorer.expandAll', value);
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
const TestFrameWorkComponentExplorer = {
|
|
1581
|
+
__proto__: null,
|
|
1582
|
+
acceptEdit,
|
|
1583
|
+
cancelEdit,
|
|
1584
|
+
clickCurrent,
|
|
1585
|
+
expandAll,
|
|
1586
|
+
expandRecursively,
|
|
1587
|
+
focus: focus$1,
|
|
1588
|
+
focusFirst: focusFirst$1,
|
|
1589
|
+
focusIndex: focusIndex$2,
|
|
1590
|
+
focusLast: focusLast$1,
|
|
1591
|
+
focusNext: focusNext$3,
|
|
1592
|
+
handleArrowLeft,
|
|
1593
|
+
handleClick,
|
|
1594
|
+
newFile,
|
|
1595
|
+
openContextMenu,
|
|
1596
|
+
removeDirent,
|
|
1597
|
+
rename,
|
|
1598
|
+
updateEditingValue
|
|
1599
|
+
};
|
|
1600
|
+
|
|
1601
|
+
const addWebExtension = async relativePath => {
|
|
1602
|
+
// TODO compute absolutePath
|
|
1603
|
+
const absolutePath = relativePath;
|
|
1604
|
+
await invoke('ExtensionMeta.addWebExtension', absolutePath);
|
|
1605
|
+
};
|
|
1606
|
+
const addNodeExtension = async relativePath => {
|
|
1607
|
+
// TODO compute absolutePath
|
|
1608
|
+
const absolutePath = relativePath;
|
|
1609
|
+
await invoke('ExtensionMeta.addNodeExtension', absolutePath);
|
|
1610
|
+
};
|
|
1611
|
+
|
|
1612
|
+
const TestFrameWorkComponentExtension = {
|
|
1613
|
+
__proto__: null,
|
|
1614
|
+
addNodeExtension,
|
|
1615
|
+
addWebExtension
|
|
1616
|
+
};
|
|
1617
|
+
|
|
1618
|
+
const Memfs = 'memfs';
|
|
1619
|
+
|
|
1620
|
+
const Slash$1 = '/';
|
|
1621
|
+
|
|
1622
|
+
const Slash = Slash$1;
|
|
1623
|
+
|
|
1624
|
+
const writeFile = async (path, content) => {
|
|
1625
|
+
await invoke('FileSystem.writeFile', path, content);
|
|
1626
|
+
};
|
|
1627
|
+
const mkdir = async path => {
|
|
1628
|
+
await invoke('FileSystem.mkdir', path);
|
|
1629
|
+
};
|
|
1630
|
+
const getTmpDir = async ({
|
|
1631
|
+
scheme = Memfs
|
|
1632
|
+
} = {}) => {
|
|
1633
|
+
switch (scheme) {
|
|
1634
|
+
case Memfs:
|
|
1635
|
+
return 'memfs:///workspace';
|
|
1636
|
+
default:
|
|
1637
|
+
return invoke('PlatformPaths.getTmpDir');
|
|
1638
|
+
}
|
|
1639
|
+
};
|
|
1640
|
+
const chmod = async (uri, permissions) => {
|
|
1641
|
+
await invoke('FileSystem.chmod', uri, permissions);
|
|
1642
|
+
};
|
|
1643
|
+
const createExecutable = async content => {
|
|
1644
|
+
const tmpDir = await getTmpDir({
|
|
1645
|
+
scheme: 'file'
|
|
1646
|
+
});
|
|
1647
|
+
const nodePath = await invoke('PlatformPaths.getNodePath');
|
|
1648
|
+
const gitPath = `${tmpDir}/git`;
|
|
1649
|
+
await writeFile(gitPath, `#!${nodePath}
|
|
1650
|
+
${content}`);
|
|
1651
|
+
await chmod(gitPath, '755');
|
|
1652
|
+
return gitPath;
|
|
1653
|
+
};
|
|
1654
|
+
const createExecutableFrom = async path => {
|
|
1655
|
+
const testPath = await invoke('PlatformPaths.getTestPath');
|
|
1656
|
+
const absolutePath = testPath + Slash + path;
|
|
1657
|
+
const content = await invoke('Ajax.getText', absolutePath);
|
|
1658
|
+
return createExecutable(content);
|
|
1659
|
+
};
|
|
1660
|
+
|
|
1661
|
+
const TestFrameWorkComponentFileSystem = {
|
|
1662
|
+
__proto__: null,
|
|
1663
|
+
chmod,
|
|
1664
|
+
createExecutable,
|
|
1665
|
+
createExecutableFrom,
|
|
1666
|
+
getTmpDir,
|
|
1667
|
+
mkdir,
|
|
1668
|
+
writeFile
|
|
1669
|
+
};
|
|
1670
|
+
|
|
1671
|
+
const focusNext$2 = async () => {
|
|
1672
|
+
await invoke('FindWidget.focusNext');
|
|
1673
|
+
};
|
|
1674
|
+
const setValue$2 = async value => {
|
|
1675
|
+
await invoke('FindWidget.handleInput', value);
|
|
1676
|
+
};
|
|
1677
|
+
|
|
1678
|
+
const TestFrameWorkComponentFindWidget = {
|
|
1679
|
+
__proto__: null,
|
|
1680
|
+
focusNext: focusNext$2,
|
|
1681
|
+
setValue: setValue$2
|
|
1682
|
+
};
|
|
1683
|
+
|
|
1684
|
+
const setIconTheme = async id => {
|
|
1685
|
+
await invoke('IconTheme.setIconTheme', id);
|
|
1686
|
+
};
|
|
1687
|
+
|
|
1688
|
+
const TestFrameWorkComponentIconTheme = {
|
|
1689
|
+
__proto__: null,
|
|
1690
|
+
setIconTheme
|
|
1691
|
+
};
|
|
1692
|
+
|
|
1693
|
+
const getKeyOptions = rawKey => {
|
|
1694
|
+
if (rawKey.includes('+')) {
|
|
1695
|
+
const parts = rawKey.split('+');
|
|
1696
|
+
let ctrlKey = false;
|
|
1697
|
+
let altKey = false;
|
|
1698
|
+
let key = '';
|
|
1699
|
+
for (const part of parts) {
|
|
1700
|
+
switch (part) {
|
|
1701
|
+
case 'Control':
|
|
1702
|
+
ctrlKey = true;
|
|
1703
|
+
break;
|
|
1704
|
+
case 'Space':
|
|
1705
|
+
key = ' ';
|
|
1706
|
+
break;
|
|
1707
|
+
case 'Alt':
|
|
1708
|
+
altKey = true;
|
|
1709
|
+
break;
|
|
1710
|
+
default:
|
|
1711
|
+
key = part;
|
|
1712
|
+
break;
|
|
1713
|
+
}
|
|
1714
|
+
}
|
|
1715
|
+
return {
|
|
1716
|
+
key,
|
|
1717
|
+
ctrlKey,
|
|
1718
|
+
altKey
|
|
1719
|
+
};
|
|
1720
|
+
}
|
|
1721
|
+
return {
|
|
1722
|
+
key: rawKey,
|
|
1723
|
+
ctrlKey: false,
|
|
1724
|
+
altKey: false
|
|
1725
|
+
};
|
|
1726
|
+
};
|
|
1727
|
+
|
|
1728
|
+
const press = async key => {
|
|
1729
|
+
const keyOptions = getKeyOptions(key);
|
|
1730
|
+
const options = {
|
|
1731
|
+
cancelable: true,
|
|
1732
|
+
bubbles: true,
|
|
1733
|
+
...keyOptions
|
|
1734
|
+
};
|
|
1735
|
+
await invoke('TestFrameWork.performKeyBoardAction', 'press', options);
|
|
1736
|
+
};
|
|
1737
|
+
|
|
1738
|
+
const TestFrameWorkComponentKeyBoard = {
|
|
1739
|
+
__proto__: null,
|
|
1740
|
+
press
|
|
1741
|
+
};
|
|
1742
|
+
|
|
1743
|
+
const openUri = async uri => {
|
|
1744
|
+
await invoke('Main.openUri', uri);
|
|
1745
|
+
};
|
|
1746
|
+
const splitRight = async () => {
|
|
1747
|
+
await invoke('Main.splitRight');
|
|
1748
|
+
};
|
|
1749
|
+
|
|
1750
|
+
const TestFrameWorkComponentMain = {
|
|
1751
|
+
__proto__: null,
|
|
1752
|
+
openUri,
|
|
1753
|
+
splitRight
|
|
1754
|
+
};
|
|
1755
|
+
|
|
1756
|
+
const open$2 = async id => {
|
|
1757
|
+
await invoke('Layout.showPanel', id);
|
|
1758
|
+
};
|
|
1759
|
+
|
|
1760
|
+
const TestFrameWorkComponentPanel = {
|
|
1761
|
+
__proto__: null,
|
|
1762
|
+
open: open$2
|
|
1763
|
+
};
|
|
1764
|
+
|
|
1765
|
+
const getIsFirefox = () => {
|
|
1766
|
+
if (typeof navigator === 'undefined') {
|
|
1767
|
+
return false;
|
|
1768
|
+
}
|
|
1769
|
+
if (
|
|
1770
|
+
// @ts-expect-error
|
|
1771
|
+
navigator.userAgentData?.brands) {
|
|
1772
|
+
// @ts-expect-error
|
|
1773
|
+
return navigator.userAgentData.brands.includes('Firefox');
|
|
1774
|
+
}
|
|
1775
|
+
return navigator.userAgent.toLowerCase().includes('firefox');
|
|
1776
|
+
};
|
|
1777
|
+
|
|
1778
|
+
/**
|
|
1779
|
+
* @type {boolean}
|
|
1780
|
+
*/
|
|
1781
|
+
const isFirefox$1 = getIsFirefox();
|
|
1782
|
+
|
|
1783
|
+
const getNodePath$1 = () => {
|
|
1784
|
+
return invoke(/* Platform.getNodePath */'Platform.getNodePath');
|
|
1785
|
+
};
|
|
1786
|
+
|
|
1787
|
+
const getNodePath = () => {
|
|
1788
|
+
return getNodePath$1();
|
|
1789
|
+
};
|
|
1790
|
+
const isFirefox = () => {
|
|
1791
|
+
return isFirefox$1;
|
|
1792
|
+
};
|
|
1793
|
+
|
|
1794
|
+
const TestFrameWorkComponentPlatform = {
|
|
1795
|
+
__proto__: null,
|
|
1796
|
+
getNodePath,
|
|
1797
|
+
isFirefox
|
|
1798
|
+
};
|
|
1799
|
+
|
|
1800
|
+
const show = async () => {
|
|
1801
|
+
await invoke('Panel.selectIndex', 0);
|
|
1802
|
+
};
|
|
1803
|
+
|
|
1804
|
+
const TestFrameWorkComponentProblems = {
|
|
1805
|
+
__proto__: null,
|
|
1806
|
+
show
|
|
1807
|
+
};
|
|
1808
|
+
|
|
1809
|
+
const QuickPick = 'QuickPick';
|
|
1810
|
+
|
|
1811
|
+
const open$1 = async () => {
|
|
1812
|
+
await invoke('Viewlet.openWidget', QuickPick, 'everything');
|
|
1813
|
+
};
|
|
1814
|
+
const setValue$1 = async value => {
|
|
1815
|
+
await invoke('QuickPick.handleInput', value, 0);
|
|
1816
|
+
};
|
|
1817
|
+
const focusNext$1 = async () => {
|
|
1818
|
+
await invoke('QuickPick.focusNext');
|
|
1819
|
+
};
|
|
1820
|
+
const focusIndex$1 = async index => {
|
|
1821
|
+
await invoke('QuickPick.focusIndex', index);
|
|
1822
|
+
};
|
|
1823
|
+
const focusPrevious$1 = async () => {
|
|
1824
|
+
await invoke('QuickPick.focusPrevious');
|
|
1825
|
+
};
|
|
1826
|
+
const selectItem = async label => {
|
|
1827
|
+
await invoke('QuickPick.selectItem', label);
|
|
1828
|
+
};
|
|
1829
|
+
const executeCommand = async label => {
|
|
1830
|
+
await invoke('QuickPick.showCommands');
|
|
1831
|
+
await invoke('QuickPick.handleInput', label, 0);
|
|
1832
|
+
await invoke('QuickPick.selectItem', label);
|
|
1833
|
+
};
|
|
1834
|
+
|
|
1835
|
+
const TestFrameWorkComponentQuickPick = {
|
|
1836
|
+
__proto__: null,
|
|
1837
|
+
executeCommand,
|
|
1838
|
+
focusIndex: focusIndex$1,
|
|
1839
|
+
focusNext: focusNext$1,
|
|
1840
|
+
focusPrevious: focusPrevious$1,
|
|
1841
|
+
open: open$1,
|
|
1842
|
+
selectItem,
|
|
1843
|
+
setValue: setValue$1
|
|
1844
|
+
};
|
|
1845
|
+
|
|
1846
|
+
const setValue = async value => {
|
|
1847
|
+
await invoke('Search.handleInput', value);
|
|
1848
|
+
};
|
|
1849
|
+
|
|
1850
|
+
const TestFrameWorkComponentSearch = {
|
|
1851
|
+
__proto__: null,
|
|
1852
|
+
setValue
|
|
1853
|
+
};
|
|
1854
|
+
|
|
1855
|
+
const update$1 = settings => {
|
|
1856
|
+
return invoke('Preferences.update', settings);
|
|
1857
|
+
};
|
|
1858
|
+
|
|
1859
|
+
const TestFrameWorkComponentSettings = {
|
|
1860
|
+
__proto__: null,
|
|
1861
|
+
update: update$1
|
|
1862
|
+
};
|
|
1863
|
+
|
|
1864
|
+
const open = async id => {
|
|
1865
|
+
await invoke('SideBar.openViewlet', id);
|
|
1866
|
+
};
|
|
1867
|
+
const hide = async () => {
|
|
1868
|
+
await invoke('Layout.hideSideBar');
|
|
1869
|
+
};
|
|
1870
|
+
|
|
1871
|
+
const TestFrameWorkComponentSideBar = {
|
|
1872
|
+
__proto__: null,
|
|
1873
|
+
hide,
|
|
1874
|
+
open
|
|
1875
|
+
};
|
|
1876
|
+
|
|
1877
|
+
const acceptInput = async () => {
|
|
1878
|
+
await invoke('Source Control.acceptInput');
|
|
1879
|
+
};
|
|
1880
|
+
const handleInput = async text => {
|
|
1881
|
+
await invoke('Source Control.handleInput', text);
|
|
1882
|
+
};
|
|
1883
|
+
|
|
1884
|
+
const TestFrameWorkComponentSourceControl = {
|
|
1885
|
+
__proto__: null,
|
|
1886
|
+
acceptInput,
|
|
1887
|
+
handleInput
|
|
1888
|
+
};
|
|
1889
|
+
|
|
1890
|
+
const update = async () => {
|
|
1891
|
+
await invoke('StatusBar.updateStatusBarItems');
|
|
1892
|
+
};
|
|
1893
|
+
|
|
1894
|
+
const TestFrameWorkComponentStatusBar = {
|
|
1895
|
+
__proto__: null,
|
|
1896
|
+
update
|
|
1897
|
+
};
|
|
1898
|
+
|
|
1899
|
+
const closeMenu = async () => {
|
|
1900
|
+
await invoke('TitleBarMenuBar.closeMenu');
|
|
1901
|
+
};
|
|
1902
|
+
const focus = async () => {
|
|
1903
|
+
await invoke('TitleBarMenuBar.focus');
|
|
1904
|
+
};
|
|
1905
|
+
const focusFirst = async () => {
|
|
1906
|
+
await invoke('TitleBarMenuBar.focusFirst');
|
|
1907
|
+
};
|
|
1908
|
+
const focusIndex = async index => {
|
|
1909
|
+
await invoke('TitleBarMenuBar.focusIndex', index);
|
|
1910
|
+
};
|
|
1911
|
+
const focusLast = async () => {
|
|
1912
|
+
await invoke('TitleBarMenuBar.focusLast');
|
|
1913
|
+
};
|
|
1914
|
+
const focusNext = async () => {
|
|
1915
|
+
await invoke('TitleBarMenuBar.focusNext');
|
|
1916
|
+
};
|
|
1917
|
+
const focusPrevious = async () => {
|
|
1918
|
+
await invoke('TitleBarMenuBar.focusPrevious');
|
|
1919
|
+
};
|
|
1920
|
+
const handleKeyArrowDown = async () => {
|
|
1921
|
+
await invoke('TitleBarMenuBar.handleKeyArrowDown');
|
|
1922
|
+
};
|
|
1923
|
+
const handleKeyArrowLeft = async () => {
|
|
1924
|
+
await invoke('TitleBarMenuBar.handleKeyArrowLeft');
|
|
1925
|
+
};
|
|
1926
|
+
const handleKeyArrowRight = async () => {
|
|
1927
|
+
await invoke('TitleBarMenuBar.handleKeyArrowRight');
|
|
1928
|
+
};
|
|
1929
|
+
const handleKeyArrowUp = async () => {
|
|
1930
|
+
await invoke('TitleBarMenuBar.handleKeyArrowUp');
|
|
1931
|
+
};
|
|
1932
|
+
const handleKeyEnd = async () => {
|
|
1933
|
+
await invoke('TitleBarMenuBar.handleKeyEnd');
|
|
1934
|
+
};
|
|
1935
|
+
const handleKeyHome = async () => {
|
|
1936
|
+
await invoke('TitleBarMenuBar.handleKeyHome');
|
|
1937
|
+
};
|
|
1938
|
+
const handleKeySpace = async () => {
|
|
1939
|
+
await invoke('TitleBarMenuBar.handleKeySpace');
|
|
1940
|
+
};
|
|
1941
|
+
const handleKeyEscape = async () => {
|
|
1942
|
+
await invoke('TitleBarMenuBar.handleKeyEscape');
|
|
1943
|
+
};
|
|
1944
|
+
const toggleIndex = async index => {
|
|
1945
|
+
await invoke('TitleBarMenuBar.toggleIndex', index);
|
|
1946
|
+
};
|
|
1947
|
+
const toggleMenu = async () => {
|
|
1948
|
+
await invoke('TitleBarMenuBar.toggleMenu');
|
|
1949
|
+
};
|
|
1950
|
+
|
|
1951
|
+
const TestFrameWorkComponentTitleBarMenuBar = {
|
|
1952
|
+
__proto__: null,
|
|
1953
|
+
closeMenu,
|
|
1954
|
+
focus,
|
|
1955
|
+
focusFirst,
|
|
1956
|
+
focusIndex,
|
|
1957
|
+
focusLast,
|
|
1958
|
+
focusNext,
|
|
1959
|
+
focusPrevious,
|
|
1960
|
+
handleKeyArrowDown,
|
|
1961
|
+
handleKeyArrowLeft,
|
|
1962
|
+
handleKeyArrowRight,
|
|
1963
|
+
handleKeyArrowUp,
|
|
1964
|
+
handleKeyEnd,
|
|
1965
|
+
handleKeyEscape,
|
|
1966
|
+
handleKeyHome,
|
|
1967
|
+
handleKeySpace,
|
|
1968
|
+
toggleIndex,
|
|
1969
|
+
toggleMenu
|
|
1970
|
+
};
|
|
1971
|
+
|
|
1972
|
+
const getPortTuple = () => {
|
|
1973
|
+
const {
|
|
1974
|
+
port1,
|
|
1975
|
+
port2
|
|
1976
|
+
} = new MessageChannel();
|
|
1977
|
+
return {
|
|
1978
|
+
port1,
|
|
1979
|
+
port2
|
|
1980
|
+
};
|
|
1981
|
+
};
|
|
1982
|
+
|
|
1983
|
+
const sendPortToWebView = async (webviewId, port) => {
|
|
1984
|
+
await invokeAndTransfer('Transferrable.transferToRendererProcess', webviewId, port);
|
|
1985
|
+
console.log('did send port to renderer process');
|
|
1986
|
+
};
|
|
1987
|
+
|
|
1988
|
+
const waitForFirstEventEvent = async port => {
|
|
1989
|
+
const {
|
|
1990
|
+
resolve,
|
|
1991
|
+
promise
|
|
1992
|
+
} = Promise.withResolvers();
|
|
1993
|
+
port.onmessage = resolve;
|
|
1994
|
+
const firstEvent = await promise;
|
|
1995
|
+
return firstEvent;
|
|
1996
|
+
};
|
|
1997
|
+
|
|
1998
|
+
const preparePrettyError = error => {
|
|
1999
|
+
return error;
|
|
2000
|
+
};
|
|
2001
|
+
const logError = () => {
|
|
2002
|
+
// ignore
|
|
2003
|
+
};
|
|
2004
|
+
const execute$1 = () => {};
|
|
2005
|
+
const requiresSocket = () => {
|
|
2006
|
+
return false;
|
|
2007
|
+
};
|
|
2008
|
+
const createPortIpc = async webViewId => {
|
|
2009
|
+
const {
|
|
2010
|
+
port1,
|
|
2011
|
+
port2
|
|
2012
|
+
} = getPortTuple();
|
|
2013
|
+
const firstEventPromise = waitForFirstEventEvent(port1);
|
|
2014
|
+
await sendPortToWebView(webViewId, port2);
|
|
2015
|
+
const firstEvent = await firstEventPromise;
|
|
2016
|
+
if (firstEvent.data !== 'ready') {
|
|
2017
|
+
throw new Error('unexpected first message');
|
|
2018
|
+
}
|
|
2019
|
+
const handleOtherMessage = async event => {
|
|
2020
|
+
// @ts-ignore
|
|
2021
|
+
await handleJsonRpcMessage(ipc, event.data, resolve, preparePrettyError, execute$1, logError, requiresSocket);
|
|
2022
|
+
};
|
|
2023
|
+
port1.onmessage = handleOtherMessage;
|
|
2024
|
+
const ipc = {
|
|
2025
|
+
send(message) {
|
|
2026
|
+
port1.postMessage(message);
|
|
2027
|
+
}
|
|
2028
|
+
};
|
|
2029
|
+
return ipc;
|
|
2030
|
+
};
|
|
2031
|
+
|
|
2032
|
+
const fromId = async webViewId => {
|
|
2033
|
+
const ipc = await createPortIpc(webViewId);
|
|
2034
|
+
const webViewRpc = {
|
|
2035
|
+
invoke(method, ...params) {
|
|
2036
|
+
return invoke$1(ipc, method, ...params);
|
|
2037
|
+
}
|
|
2038
|
+
};
|
|
2039
|
+
return {
|
|
2040
|
+
locator(selector, options) {
|
|
2041
|
+
const baseLocator = create(selector, options);
|
|
2042
|
+
baseLocator.webView = webViewRpc;
|
|
2043
|
+
return baseLocator;
|
|
2044
|
+
},
|
|
2045
|
+
expect: expect$1
|
|
2046
|
+
};
|
|
2047
|
+
};
|
|
2048
|
+
|
|
2049
|
+
const TestFrameWorkComponentWebView = {
|
|
2050
|
+
__proto__: null,
|
|
2051
|
+
fromId
|
|
2052
|
+
};
|
|
2053
|
+
|
|
2054
|
+
const setPath = async path => {
|
|
2055
|
+
await invoke('Workspace.setPath', path);
|
|
2056
|
+
};
|
|
2057
|
+
|
|
2058
|
+
const TestFrameWorkComponentWorkspace = {
|
|
2059
|
+
__proto__: null,
|
|
2060
|
+
setPath
|
|
2061
|
+
};
|
|
2062
|
+
|
|
2063
|
+
const TestFrameWorkComponent = {
|
|
2064
|
+
__proto__: null,
|
|
2065
|
+
ActivityBar: TestFrameworkComponentActivityBar,
|
|
2066
|
+
BaseUrl: TestFrameWorkComponentBaseUrl,
|
|
2067
|
+
Command: TestFrameWorkComponentCommand,
|
|
2068
|
+
ContextMenu: TestFrameWorkComponentContextMenu,
|
|
2069
|
+
Editor: TestFrameWorkComponentEditor,
|
|
2070
|
+
Explorer: TestFrameWorkComponentExplorer,
|
|
2071
|
+
Extension: TestFrameWorkComponentExtension,
|
|
2072
|
+
FileSystem: TestFrameWorkComponentFileSystem,
|
|
2073
|
+
FindWidget: TestFrameWorkComponentFindWidget,
|
|
2074
|
+
IconTheme: TestFrameWorkComponentIconTheme,
|
|
2075
|
+
KeyBoard: TestFrameWorkComponentKeyBoard,
|
|
2076
|
+
Main: TestFrameWorkComponentMain,
|
|
2077
|
+
Panel: TestFrameWorkComponentPanel,
|
|
2078
|
+
Platform: TestFrameWorkComponentPlatform,
|
|
2079
|
+
Problems: TestFrameWorkComponentProblems,
|
|
2080
|
+
QuickPick: TestFrameWorkComponentQuickPick,
|
|
2081
|
+
Search: TestFrameWorkComponentSearch,
|
|
2082
|
+
Settings: TestFrameWorkComponentSettings,
|
|
2083
|
+
SideBar: TestFrameWorkComponentSideBar,
|
|
2084
|
+
SourceControl: TestFrameWorkComponentSourceControl,
|
|
2085
|
+
StatusBar: TestFrameWorkComponentStatusBar,
|
|
2086
|
+
TitleBarMenuBar: TestFrameWorkComponentTitleBarMenuBar,
|
|
2087
|
+
WebView: TestFrameWorkComponentWebView,
|
|
2088
|
+
Workspace: TestFrameWorkComponentWorkspace
|
|
2089
|
+
};
|
|
2090
|
+
|
|
2091
|
+
const execute = async href => {
|
|
2092
|
+
const globals = {
|
|
2093
|
+
...TestFrameWorkComponent,
|
|
2094
|
+
...TestFrameWork
|
|
2095
|
+
};
|
|
2096
|
+
// TODO
|
|
2097
|
+
// 0. wait for page to be ready
|
|
2098
|
+
// 1. get script to import from renderer process (url or from html)
|
|
2099
|
+
const scriptUrl = href;
|
|
2100
|
+
// 2. import that script
|
|
2101
|
+
const module = await importTest(scriptUrl);
|
|
2102
|
+
if (module.mockRpc) {
|
|
2103
|
+
setMockRpc(module.mockRpc);
|
|
2104
|
+
}
|
|
2105
|
+
if (module.test) {
|
|
2106
|
+
if (module.skip) {
|
|
2107
|
+
await test.skip(module.name);
|
|
2108
|
+
} else {
|
|
2109
|
+
await executeTest(module.name, module.test, globals);
|
|
2110
|
+
}
|
|
2111
|
+
} else {
|
|
2112
|
+
const tests = getTests();
|
|
2113
|
+
for (const test of tests) {
|
|
2114
|
+
// @ts-ignore
|
|
2115
|
+
await executeTest(test.name, test.fn);
|
|
2116
|
+
}
|
|
2117
|
+
}
|
|
2118
|
+
// 3. if import fails, display error message
|
|
2119
|
+
|
|
2120
|
+
// 4. run the test
|
|
2121
|
+
// 5. if test fails, display error message
|
|
2122
|
+
// 6. if test succeeds, display success message
|
|
2123
|
+
};
|
|
2124
|
+
|
|
2125
|
+
const commandMap = {
|
|
2126
|
+
'Test.execute': execute
|
|
2127
|
+
};
|
|
2128
|
+
|
|
2129
|
+
const listen = async () => {
|
|
2130
|
+
const rpc = await WebWorkerRpcClient.create({
|
|
2131
|
+
commandMap: commandMap
|
|
2132
|
+
});
|
|
2133
|
+
setRpc(rpc);
|
|
2134
|
+
};
|
|
2135
|
+
|
|
2136
|
+
const main = async () => {
|
|
2137
|
+
await listen();
|
|
2138
|
+
};
|
|
2139
|
+
|
|
2140
|
+
main();
|