@lvce-editor/shared-process 0.12.0 → 0.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. package/config/defaultKeyBindings.json +5 -0
  2. package/config/defaultSettings.json +4 -0
  3. package/extensions/builtin.language-basics-graphql/extension.json +1 -1
  4. package/extensions/builtin.language-basics-graphql/src/tokenizeGraphql.js +408 -4
  5. package/extensions/builtin.language-basics-html/src/tokenizeHtml.js +91 -3
  6. package/extensions/builtin.language-basics-javascript/src/tokenizeJavaScript.js +7 -0
  7. package/extensions/builtin.language-basics-json/extension.json +3 -1
  8. package/extensions/builtin.language-basics-jsx/README.md +14 -0
  9. package/extensions/builtin.language-basics-jsx/extension.json +13 -0
  10. package/extensions/builtin.language-basics-jsx/src/tokenizeJsx.js +648 -0
  11. package/extensions/builtin.language-basics-julia/src/tokenizeJulia.js +52 -1
  12. package/extensions/builtin.language-basics-markdown/src/tokenizeMarkdown.js +82 -2
  13. package/extensions/builtin.language-basics-mdx/README.md +14 -0
  14. package/extensions/builtin.language-basics-mdx/extension.json +12 -0
  15. package/extensions/builtin.language-basics-mdx/src/tokenizeMdx.js +395 -0
  16. package/extensions/builtin.language-basics-shellscript/src/tokenizeShellScript.js +22 -1
  17. package/extensions/builtin.language-basics-toml/src/tokenizeToml.js +29 -1
  18. package/extensions/builtin.language-basics-typescript/extension.json +1 -1
  19. package/extensions/builtin.language-basics-typescript/src/tokenizeTypeScript.js +128 -12
  20. package/extensions/builtin.language-basics-xml/extension.json +3 -2
  21. package/extensions/builtin.language-basics-xml/src/tokenizeXml.js +26 -3
  22. package/extensions/builtin.language-basics-yaml/src/tokenizeYaml.js +7 -1
  23. package/extensions/builtin.theme-atom-one-dark/color-theme.json +4 -0
  24. package/extensions/builtin.theme-cobalt2/color-theme.json +4 -0
  25. package/extensions/builtin.theme-gruvbox/color-theme.json +4 -0
  26. package/extensions/builtin.vscode-icons/icon-theme.json +40 -2
  27. package/extensions/builtin.vscode-icons/icons/file_type_bazel_ignore.svg +1 -0
  28. package/extensions/builtin.vscode-icons/icons/file_type_bazel_version.svg +1 -0
  29. package/extensions/builtin.vscode-icons/icons/file_type_eleventy.svg +1 -0
  30. package/extensions/builtin.vscode-icons/icons/file_type_eleventy2.svg +1 -0
  31. package/extensions/builtin.vscode-icons/icons/file_type_light_eleventy.svg +1 -0
  32. package/extensions/builtin.vscode-icons/icons/file_type_light_eleventy2.svg +1 -0
  33. package/extensions/builtin.vscode-icons/icons/file_type_light_rome.svg +1 -0
  34. package/extensions/builtin.vscode-icons/icons/file_type_light_tree.svg +1 -0
  35. package/extensions/builtin.vscode-icons/icons/file_type_mondoo.svg +1 -0
  36. package/extensions/builtin.vscode-icons/icons/file_type_nuxt.svg +1 -1
  37. package/extensions/builtin.vscode-icons/icons/file_type_rome.svg +1 -0
  38. package/extensions/builtin.vscode-icons/icons/file_type_sapphire_framework_cli.svg +1 -0
  39. package/extensions/builtin.vscode-icons/icons/file_type_shellcheck.svg +91 -0
  40. package/extensions/builtin.vscode-icons/icons/file_type_shuttle.svg +1 -0
  41. package/extensions/builtin.vscode-icons/icons/file_type_tree.svg +1 -0
  42. package/extensions/builtin.vscode-icons/icons/folder_type_nuxt.svg +1 -1
  43. package/extensions/builtin.vscode-icons/icons/folder_type_nuxt_opened.svg +1 -1
  44. package/package.json +7 -6
  45. package/src/parts/CleanStack/CleanStack.js +5 -0
  46. package/src/parts/Cli/Cli.js +5 -4
  47. package/src/parts/CliCommandType/CliCommandType.js +10 -0
  48. package/src/parts/CliInstall/CliInstall.js +3 -2
  49. package/src/parts/CliLink/CliLink.js +3 -2
  50. package/src/parts/CliList/CliList.js +3 -1
  51. package/src/parts/ClipBoard/ClipBoard.js +3 -2
  52. package/src/parts/ClipBoard/ClipBoardGnome.js +15 -31
  53. package/src/parts/CommandNotFoundError/CommandNotFoundError.js +9 -0
  54. package/src/parts/DesktopType/DesktopType.js +3 -0
  55. package/src/parts/Download/Download.js +1 -1
  56. package/src/parts/DownloadAndExtract/DownloadAndExtract.js +2 -2
  57. package/src/parts/Error/FileSystemError.js +1 -1
  58. package/src/parts/ErrorCodes/ErrorCodes.js +2 -0
  59. package/src/parts/ErrorHandling/ErrorHandling.js +4 -3
  60. package/src/parts/ExecCommand/ExecCommand.js +25 -0
  61. package/src/parts/ExecPromise/ExecPromise.js +4 -0
  62. package/src/parts/ExitCode/ExitCode.js +5 -0
  63. package/src/parts/ExportStatic/ExportStatic.js +2 -2
  64. package/src/parts/ExtensionHost/ExtensionHost.ipc.js +0 -1
  65. package/src/parts/ExtensionHost/ExtensionHost.js +1 -1
  66. package/src/parts/ExtensionHostIpc/ExtensionHostIpcWithChildProcess.js +3 -8
  67. package/src/parts/ExtensionHostIpc/ExtensionHostIpcWithWorker.js +3 -7
  68. package/src/parts/ExtensionInstallFromFile/ExtensionInstallFromFile.js +2 -5
  69. package/src/parts/ExtensionInstallFromGitHub/ExtensionInstallFromGitHub.js +1 -1
  70. package/src/parts/ExtensionInstallFromUrl/ExtensionInstallFromUrl.js +3 -3
  71. package/src/parts/ExtensionLink/ExtensionLink.js +19 -0
  72. package/src/parts/ExtensionManagement/ExtensionManagement.ipc.js +1 -1
  73. package/src/parts/ExtensionManagement/ExtensionManagementColorTheme.js +3 -2
  74. package/src/parts/ExtensionManagement/ExtensionManagementLanguages.js +7 -14
  75. package/src/parts/ExtensionManifest/ExtensionManifest.js +14 -4
  76. package/src/parts/ExtractZip/ExtractZip.js +1 -1
  77. package/src/parts/GetResponse/GetResponse.js +2 -1
  78. package/src/parts/GitLsFiles/GitLsFiles.ipc.js +2 -0
  79. package/src/parts/GitLsFiles/GitLsFiles.js +21 -5
  80. package/src/parts/Hash/Hash.js +7 -0
  81. package/src/parts/IpcChild/IpcChild.js +6 -0
  82. package/src/parts/IpcChildModule/IpcChildModule.js +12 -0
  83. package/src/parts/IpcChildType/IpcChildType.js +13 -0
  84. package/src/parts/IpcChildWithNodeForkedProcess/IpcChildWithNodeForkedProcess.js +19 -0
  85. package/src/parts/IpcChildWithNodeWorker/IpcChildWithNodeWorker.js +27 -0
  86. package/src/parts/MergeStacks/MergeStacks.js +19 -0
  87. package/src/parts/ModuleMap/ModuleMap.js +4 -1
  88. package/src/parts/NormalizeErrorLine/NormalizeErrorLine.js +9 -0
  89. package/src/parts/OutputChannel/OutputChannel.ipc.js +1 -1
  90. package/src/parts/ParentIpc/ParentIpc.js +6 -10
  91. package/src/parts/ParseInt/ParseInt.js +3 -0
  92. package/src/parts/Platform/Platform.js +16 -21
  93. package/src/parts/Preferences/Preferences.js +2 -1
  94. package/src/parts/PrettyError/PrettyError.js +12 -23
  95. package/src/parts/PrintPrettyError/PrintPrettyError.js +3 -0
  96. package/src/parts/Process/Process.js +2 -2
  97. package/src/parts/ProtocolType/ProtocolType.js +3 -0
  98. package/src/parts/RecentlyOpened/RecentlyOpened.js +1 -1
  99. package/src/parts/Stats/Stats.js +8 -11
  100. package/src/parts/SymLink/SymLink.js +2 -14
  101. package/src/parts/TextDocument/TextDocument.js +3 -1
  102. package/src/parts/VError/VError.js +5 -22
@@ -352,6 +352,8 @@
352
352
  "_f_bats": "/icons/file_type_bats.svg",
353
353
  "_f_bazaar": "/icons/file_type_bazaar.svg",
354
354
  "_f_bazel": "/icons/file_type_bazel.svg",
355
+ "_f_bazel_ignore": "/icons/file_type_bazel_ignore.svg",
356
+ "_f_bazel_version": "/icons/file_type_bazel_version.svg",
355
357
  "_f_befunge": "/icons/file_type_befunge.svg",
356
358
  "_f_bicep": "/icons/file_type_bicep.svg",
357
359
  "_f_biml": "/icons/file_type_biml.svg",
@@ -480,6 +482,8 @@
480
482
  "_f_ejs": "/icons/file_type_ejs.svg",
481
483
  "_f_elastic": "/icons/file_type_elastic.svg",
482
484
  "_f_elasticbeanstalk": "/icons/file_type_elasticbeanstalk.svg",
485
+ "_f_eleventy": "/icons/file_type_eleventy.svg",
486
+ "_f_light_eleventy": "/icons/file_type_light_eleventy.svg",
483
487
  "_f_elixir": "/icons/file_type_elixir.svg",
484
488
  "_f_elm": "/icons/file_type_elm.svg",
485
489
  "_f_emacs": "/icons/file_type_emacs.svg",
@@ -696,6 +700,7 @@
696
700
  "_f_modernizr": "/icons/file_type_modernizr.svg",
697
701
  "_f_mojolicious": "/icons/file_type_mojolicious.svg",
698
702
  "_f_moleculer": "/icons/file_type_moleculer.svg",
703
+ "_f_mondoo": "/icons/file_type_mondoo.svg",
699
704
  "_f_mongo": "/icons/file_type_mongo.svg",
700
705
  "_f_monotone": "/icons/file_type_monotone.svg",
701
706
  "_f_motif": "/icons/file_type_motif.svg",
@@ -852,6 +857,8 @@
852
857
  "_f_robotframework": "/icons/file_type_robotframework.svg",
853
858
  "_f_robots": "/icons/file_type_robots.svg",
854
859
  "_f_rollup": "/icons/file_type_rollup.svg",
860
+ "_f_rome": "/icons/file_type_rome.svg",
861
+ "_f_light_rome": "/icons/file_type_light_rome.svg",
855
862
  "_f_ron": "/icons/file_type_ron.svg",
856
863
  "_f_rproj": "/icons/file_type_rproj.svg",
857
864
  "_f_rspec": "/icons/file_type_rspec.svg",
@@ -865,6 +872,7 @@
865
872
  "_f_sails": "/icons/file_type_sails.svg",
866
873
  "_f_saltstack": "/icons/file_type_saltstack.svg",
867
874
  "_f_san": "/icons/file_type_san.svg",
875
+ "_f_sapphire_framework_cli": "/icons/file_type_sapphire_framework_cli.svg",
868
876
  "_f_sas": "/icons/file_type_sas.svg",
869
877
  "_f_sass": "/icons/file_type_sass.svg",
870
878
  "_f_sbt": "/icons/file_type_sbt.svg",
@@ -879,6 +887,8 @@
879
887
  "_f_shaderlab": "/icons/file_type_shaderlab.svg",
880
888
  "_f_light_shaderlab": "/icons/file_type_light_shaderlab.svg",
881
889
  "_f_shell": "/icons/file_type_shell.svg",
890
+ "_f_shellcheck": "/icons/file_type_shellcheck.svg",
891
+ "_f_shuttle": "/icons/file_type_shuttle.svg",
882
892
  "_f_silverstripe": "/icons/file_type_silverstripe.svg",
883
893
  "_f_siyuan": "/icons/file_type_siyuan.svg",
884
894
  "_f_sketch": "/icons/file_type_sketch.svg",
@@ -956,6 +966,8 @@
956
966
  "_f_light_toml": "/icons/file_type_light_toml.svg",
957
967
  "_f_tox": "/icons/file_type_tox.svg",
958
968
  "_f_travis": "/icons/file_type_travis.svg",
969
+ "_f_tree": "/icons/file_type_tree.svg",
970
+ "_f_light_tree": "/icons/file_type_light_tree.svg",
959
971
  "_f_tres": "/icons/file_type_tres.svg",
960
972
  "_f_truffle": "/icons/file_type_truffle.svg",
961
973
  "_f_trunk": "/icons/file_type_trunk.svg",
@@ -1077,6 +1089,8 @@
1077
1089
  ".bazelrc": "_f_bazel",
1078
1090
  "bazel.rc": "_f_bazel",
1079
1091
  "bazel.bazelrc": "_f_bazel",
1092
+ ".bazelignore": "_f_bazel_ignore",
1093
+ ".bazelversion": "_f_bazel_version",
1080
1094
  "bitbucket-pipelines.yml": "_f_bitbucketpipeline",
1081
1095
  ".bithoundrc": "_f_bithound",
1082
1096
  ".bowerrc": "_f_bower",
@@ -1161,6 +1175,7 @@
1161
1175
  "datadog-ci.json": "_f_datadog",
1162
1176
  "deno.json": "_f_deno",
1163
1177
  "deno.jsonc": "_f_deno",
1178
+ "deno.lock": "_f_deno",
1164
1179
  "dependabot.yml": "_f_dependabot",
1165
1180
  "dependabot.yaml": "_f_dependabot",
1166
1181
  "dependencies.yml": "_f_dependencies",
@@ -1263,14 +1278,17 @@
1263
1278
  "gatsby-ssr.tsx": "_f_gatsby",
1264
1279
  "gatsby-config.js": "_f_gatsby",
1265
1280
  "gatsby-config.ts": "_f_gatsby",
1281
+ "gatsby-config.mjs": "_f_gatsby",
1266
1282
  "gatsby-node.js": "_f_gatsby",
1267
1283
  "gatsby-node.ts": "_f_gatsby",
1284
+ "gatsby-node.mjs": "_f_gatsby",
1268
1285
  ".gcloudignore": "_f_gcloud",
1269
1286
  ".gitattributes": "_f_git",
1270
1287
  ".gitconfig": "_f_git",
1271
1288
  ".gitignore": "_f_git",
1272
1289
  ".gitmodules": "_f_git",
1273
1290
  ".gitkeep": "_f_git",
1291
+ ".git-blame-ignore-revs": "_f_git",
1274
1292
  ".mailmap": "_f_git",
1275
1293
  ".issuetracker": "_f_git",
1276
1294
  ".gitlab-ci.yml": "_f_gitlab",
@@ -1295,9 +1313,11 @@
1295
1313
  "gridsome.client.js": "_f_gridsome",
1296
1314
  "gridsome.client.ts": "_f_gridsome",
1297
1315
  "gruntfile.js": "_f_grunt",
1316
+ "gruntfile.cjs": "_f_grunt",
1298
1317
  "gruntfile.coffee": "_f_grunt",
1299
1318
  "gruntfile.ts": "_f_grunt",
1300
1319
  "gruntfile.babel.js": "_f_grunt",
1320
+ "gruntfile.babel.cjs": "_f_grunt",
1301
1321
  "gruntfile.babel.coffee": "_f_grunt",
1302
1322
  "gruntfile.babel.ts": "_f_grunt",
1303
1323
  "gulpfile.js": "_f_gulp",
@@ -1479,6 +1499,7 @@
1479
1499
  ".nestconfig.json": "_f_nestjs",
1480
1500
  "netlify.toml": "_f_netlify",
1481
1501
  "next.config.js": "_f_next",
1502
+ "next.config.cjs": "_f_next",
1482
1503
  "next.config.mjs": "_f_next",
1483
1504
  "ng-tailwind.js": "_f_ng_tailwind",
1484
1505
  "nginx.conf": "_f_nginx",
@@ -1605,8 +1626,9 @@
1605
1626
  ".remarkrc.yml": "_f_remark",
1606
1627
  ".remarkrc.yaml": "_f_remark",
1607
1628
  ".renovaterc": "_f_renovate",
1608
- "renovate.json": "_f_renovate",
1609
1629
  ".renovaterc.json": "_f_renovate",
1630
+ "renovate.json": "_f_renovate",
1631
+ "renovate.json5": "_f_renovate",
1610
1632
  ".replit": "_f_replit",
1611
1633
  "replit.nix": "_f_replit",
1612
1634
  ".retextrc": "_f_retext",
@@ -1638,11 +1660,15 @@
1638
1660
  "rollup.config.prod.mjs": "_f_rollup",
1639
1661
  "rollup.config.prod.coffee": "_f_rollup",
1640
1662
  "rollup.config.prod.ts": "_f_rollup",
1663
+ "rome.json": "_f_rome",
1641
1664
  ".rspec": "_f_rspec",
1642
1665
  ".rubocop.yml": "_f_rubocop",
1643
1666
  ".rubocop_todo.yml": "_f_rubocop",
1644
1667
  "rust-toolchain": "_f_rust_toolchain",
1645
1668
  ".sailsrc": "_f_sails",
1669
+ ".sapphirerc.json": "_f_sapphire_framework_cli",
1670
+ ".sapphirerc.yml": "_f_sapphire_framework_cli",
1671
+ ".sapphirerc": "_f_sapphire_framework_cli",
1646
1672
  ".sentryclirc": "_f_sentry",
1647
1673
  ".sequelizerc": "_f_sequelize",
1648
1674
  ".sequelizerc.js": "_f_sequelize",
@@ -1651,6 +1677,8 @@
1651
1677
  "serverless.json": "_f_serverless",
1652
1678
  "serverless.js": "_f_serverless",
1653
1679
  "serverless.ts": "_f_serverless",
1680
+ ".shellcheckrc": "_f_shellcheck",
1681
+ "Shuttle.toml": "_f_shuttle",
1654
1682
  "slash-up.config.js": "_f_slashup",
1655
1683
  "snapcraft.yaml": "_f_snapcraft",
1656
1684
  ".snyk": "_f_snyk",
@@ -2040,6 +2068,7 @@
2040
2068
  "components": "_fd_component",
2041
2069
  ".components": "_fd_component",
2042
2070
  "gui": "_fd_component",
2071
+ "src-ui": "_fd_component",
2043
2072
  "ui": "_fd_component",
2044
2073
  "widgets": "_fd_component",
2045
2074
  "composer": "_fd_composer",
@@ -2437,6 +2466,7 @@
2437
2466
  "components": "_fd_component_open",
2438
2467
  ".components": "_fd_component_open",
2439
2468
  "gui": "_fd_component_open",
2469
+ "src-ui": "_fd_component_open",
2440
2470
  "ui": "_fd_component_open",
2441
2471
  "widgets": "_fd_component_open",
2442
2472
  "composer": "_fd_composer_open",
@@ -2910,6 +2940,7 @@
2910
2940
  "dio.png": "_f_drawio",
2911
2941
  "dio.svg": "_f_drawio",
2912
2942
  "ejs": "_f_ejs",
2943
+ "eleventy.js": "_f_eleventy",
2913
2944
  "el": "_f_emacs",
2914
2945
  "elc": "_f_emacs",
2915
2946
  "ensime": "_f_ensime",
@@ -2957,6 +2988,7 @@
2957
2988
  "bmp": "_f_image",
2958
2989
  "tiff": "_f_image",
2959
2990
  "ico": "_f_image",
2991
+ "icns": "_f_image",
2960
2992
  "webp": "_f_image",
2961
2993
  "imba": "_f_imba",
2962
2994
  "imba2": "_f_imba",
@@ -3017,6 +3049,8 @@
3017
3049
  "slddc": "_f_matlab",
3018
3050
  "smv": "_f_matlab",
3019
3051
  "xvc": "_f_matlab",
3052
+ "mql.yaml": "_f_mondoo",
3053
+ "mql.yml": "_f_mondoo",
3020
3054
  "mustache": "_f_mustache",
3021
3055
  "mst": "_f_mustache",
3022
3056
  "ndst.yaml": "_f_ndst",
@@ -3162,6 +3196,7 @@
3162
3196
  "csv": "_f_text",
3163
3197
  "tsv": "_f_text",
3164
3198
  "todo": "_f_todo",
3199
+ "tree": "_f_tree",
3165
3200
  "tres": "_f_tres",
3166
3201
  "tscn": "_f_tscn",
3167
3202
  "tt2": "_f_tt",
@@ -3497,6 +3532,7 @@
3497
3532
  "platformio-debug.asm": "_f_platformio",
3498
3533
  "plsql": "_f_plsql",
3499
3534
  "oracle": "_f_plsql",
3535
+ "oraclesql": "_f_plsql",
3500
3536
  "polymer": "_f_polymer",
3501
3537
  "pony": "_f_pony",
3502
3538
  "postcss": "_f_postcss",
@@ -3617,6 +3653,8 @@
3617
3653
  "yaml-tmlanguage": "_f_yaml",
3618
3654
  "spring-boot-properties-yaml": "_f_yaml",
3619
3655
  "yang": "_f_yang",
3620
- "zig": "_f_zig"
3656
+ "zig": "_f_zig",
3657
+ "jsx": "_f_reactjs",
3658
+ "tsx": "_f_reactts"
3621
3659
  }
3622
3660
  }
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_bazel_ignore</title><g><path d="m9 2 7 7-7 7-7-7z" fill="#76d275" style="mix-blend-mode:color-dodge"/><path d="m2 9v7l7 7v-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m23 2 7 7-7 7-7-7z" fill="#76d275" style="mix-blend-mode:color-dodge"/><path d="m30 9v7l-7 7v-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m16 9 7 7-7 7-7-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m16 23v7l-7-7v-7z" fill="#00701a" style="mix-blend-mode:color-dodge"/><path d="m16 23 7-7v7l-7 7z" fill="#004300" style="mix-blend-mode:color-dodge"/><path d="m9 2-7 7v7l14 14 14-14v-7l-7-7-7 7z" fill="#ff0027" style="mix-blend-mode:color"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_bazel_version</title><g><path d="m9 2 7 7-7 7-7-7z" fill="#76d275" style="mix-blend-mode:color-dodge"/><path d="m2 9v7l7 7v-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m23 2 7 7-7 7-7-7z" fill="#76d275" style="mix-blend-mode:color-dodge"/><path d="m30 9v7l-7 7v-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m16 9 7 7-7 7-7-7z" fill="#43a047" style="mix-blend-mode:color-dodge"/><path d="m16 23v7l-7-7v-7z" fill="#00701a" style="mix-blend-mode:color-dodge"/><path d="m16 23 7-7v7l-7 7z" fill="#004300" style="mix-blend-mode:color-dodge"/></g><g style="mix-blend-mode:screen"><path d="m9 2-7 7v7l14 14 14-14v-7l-7-7-7 7z" fill="#f60" style="mix-blend-mode:screen"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_eleventy</title><path class="prefix__st0" d="m10.611 24.027c-0.22172 0-0.33261-0.29562-0.33261-0.8893v-14.66c0-0.28328-0.0566-0.41632-0.17239-0.39907-0.6996 0.17735-1.0519 0.26609-1.0617 0.26609-0.19466 0.017248-0.29072-0.17735-0.29072-0.58381v-1.2735c0-0.35228 0.10593-0.55185 0.31778-0.59622l3.5029-0.90159c0.02712-0.00733 0.06659-0.012312 0.11827-0.012312 0.1946 0 0.29066 0.20689 0.29066 0.62321v17.539c0 0.59368-0.1158 0.88924-0.34484 0.88924zm9.0726 0.02712c-0.3547 0-0.66013-0.02471-0.92126-0.07391-0.26113-0.04928-0.53212-0.1601-0.81533-0.33261-0.28334-0.17238-0.51493-0.40888-0.69718-0.7094-0.18231-0.30053-0.33013-0.72182-0.44344-1.2613-0.1133-0.5395-0.17245-1.18-0.17245-1.9239v-6.8038c0-0.17735-0.04927-0.26609-0.14527-0.26609h-0.82284c-0.22166 0-0.33255-0.21185-0.33255-0.63556v-0.71672c0-0.43357 0.11088-0.65039 0.33255-0.65039h0.82278c0.09606 0 0.14533-0.11821 0.14533-0.35712l0.23897-5.1607c0.02707-0.46813 0.14043-0.70214 0.3449-0.70214h1.3277c0.22172 0 0.33261 0.23401 0.33261 0.70214v5.1607c0 0.23891 0.05169 0.35712 0.1601 0.35712h1.6923c0.22166 0 0.33255 0.21682 0.33255 0.65039v0.71685c0 0.4237-0.1109 0.63556-0.33255 0.63556h-1.6972c-0.06161 0-0.1035 0.01475-0.12566 0.04678-0.02222 0.02953-0.03208 0.10352-0.03208 0.21924v6.8457c0 0.51238 0.03208 0.94099 0.0986 1.281 0.06653 0.33993 0.16258 0.59119 0.29066 0.74887 0.12808 0.15762 0.25616 0.26602 0.3843 0.31778 0.12808 0.05418 0.2857 0.0788 0.4705 0.0788h0.94099c0.23897 0 0.35718 0.16507 0.35718 0.49023v0.79566c0 0.36208-0.12808 0.5444-0.38424 0.5444zm5.0919 1.5913c0.20198 0 0.37933-0.16506 0.52963-0.49755 0.15023-0.33261 0.22662-0.80311 0.22662-1.414 0-0.14285-0.08867-0.63314-0.26609-1.4731l-2.6013-10.812c-0.01725-0.12318-0.02712-0.22172-0.02712-0.29314 0-0.31778 0.06658-0.47788 0.19956-0.47788h1.6061c0.12318 0 0.2242 0.04188 0.30549 0.1256 0.08129 0.08377 0.14285 0.25374 0.18474 0.50996l1.7244 9.1268c0.03449 0.10592 0.05666 0.1601 0.06653 0.1601 0.03449 0 0.05417-0.04928 0.05417-0.14533l1.3524-9.1022c0.03449-0.26602 0.09117-0.44338 0.16506-0.53702 0.07384-0.09358 0.16997-0.14043 0.2857-0.14043h1.1135c0.15024 0 0.22662 0.17245 0.22662 0.51734 0 0.0788-0.0098 0.18225-0.02712 0.30543l-2.3624 12.3c-0.1848 1.0174-0.3892 1.7958-0.61092 2.3353-0.22172 0.5395-0.46807 0.90655-0.74391 1.1011-0.27347 0.1946-0.63556 0.29557-1.0889 0.30543h-0.13298c-0.71691 0-1.2021-0.18964-1.4583-0.57146-0.07142-0.07886-0.10592-0.28328-0.10592-0.61098 0-0.65523 0.10592-0.98288 0.31778-0.98288 0.01726 0 0.17735 0.04437 0.47788 0.13304 0.30543 0.09358 0.50003 0.13795 0.58877 0.13795zm-20.84-1.5939c-0.22172 0-0.33261-0.29563-0.33261-0.8893v-14.66c0-0.28328-0.056661-0.41626-0.17239-0.39901-0.6996 0.17735-1.0519 0.26603-1.0617 0.26603-0.19466 0.01725-0.29072-0.17735-0.29072-0.5838v-1.2735c0-0.35228 0.10593-0.55185 0.31778-0.59622l3.5054-0.90401c0.027112-0.00747 0.066524-0.012313 0.11821-0.012313 0.19466 0 0.29072 0.20695 0.29072 0.62321v17.539c0 0.59367-0.1158 0.8893-0.3449 0.8893h-2.0298z" fill="#d2d2d2" stroke-width=".060529"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="m13.9 5.1908v21.597h-5.8085v-14.152q-1.4092 1.1001-2.7269 1.7825-1.3177 0.67986-3.3054 1.3029v-4.8381q2.9321-0.97035 4.5526-2.3325 1.6205-1.361 2.5377-3.3598zm16.041 0.019778v21.599h-5.8073v-14.153q-1.4092 1.1001-2.7281 1.7825-1.3177 0.67986-3.3054 1.3029v-4.8369q2.9321-0.97035 4.5538-2.3313 1.6205-1.3622 2.5365-3.3622z" fill="#d2d2d2" stroke-width="1.2361" style="white-space:pre"/></svg>
@@ -0,0 +1 @@
1
+ <svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_light_eleventy</title><path class="prefix__st0" d="m10.611 24.027c-0.22172 0-0.33261-0.29562-0.33261-0.8893v-14.66c0-0.28328-0.0566-0.41632-0.17239-0.39907-0.6996 0.17735-1.0519 0.26609-1.0617 0.26609-0.19466 0.017248-0.29072-0.17735-0.29072-0.58381v-1.2735c0-0.35228 0.10593-0.55185 0.31778-0.59622l3.5029-0.90159c0.02712-0.00733 0.06659-0.012312 0.11827-0.012312 0.1946 0 0.29066 0.20689 0.29066 0.62321v17.539c0 0.59368-0.1158 0.88924-0.34484 0.88924zm9.0726 0.02712c-0.3547 0-0.66013-0.02471-0.92126-0.07391-0.26113-0.04928-0.53212-0.1601-0.81533-0.33261-0.28334-0.17238-0.51493-0.40888-0.69718-0.7094-0.18231-0.30053-0.33013-0.72182-0.44344-1.2613-0.1133-0.5395-0.17245-1.18-0.17245-1.9239v-6.8038c0-0.17735-0.04927-0.26609-0.14527-0.26609h-0.82284c-0.22166 0-0.33255-0.21185-0.33255-0.63556v-0.71672c0-0.43357 0.11088-0.65039 0.33255-0.65039h0.82278c0.09606 0 0.14533-0.11821 0.14533-0.35712l0.23897-5.1607c0.02707-0.46813 0.14043-0.70214 0.3449-0.70214h1.3277c0.22172 0 0.33261 0.23401 0.33261 0.70214v5.1607c0 0.23891 0.05169 0.35712 0.1601 0.35712h1.6923c0.22166 0 0.33255 0.21682 0.33255 0.65039v0.71685c0 0.4237-0.1109 0.63556-0.33255 0.63556h-1.6972c-0.06161 0-0.1035 0.01475-0.12566 0.04678-0.02222 0.02953-0.03208 0.10352-0.03208 0.21924v6.8457c0 0.51238 0.03208 0.94099 0.0986 1.281 0.06653 0.33993 0.16258 0.59119 0.29066 0.74887 0.12808 0.15762 0.25616 0.26602 0.3843 0.31778 0.12808 0.05418 0.2857 0.0788 0.4705 0.0788h0.94099c0.23897 0 0.35718 0.16507 0.35718 0.49023v0.79566c0 0.36208-0.12808 0.5444-0.38424 0.5444zm5.0919 1.5913c0.20198 0 0.37933-0.16506 0.52963-0.49755 0.15023-0.33261 0.22662-0.80311 0.22662-1.414 0-0.14285-0.08867-0.63314-0.26609-1.4731l-2.6013-10.812c-0.01725-0.12318-0.02712-0.22172-0.02712-0.29314 0-0.31778 0.06658-0.47788 0.19956-0.47788h1.6061c0.12318 0 0.2242 0.04188 0.30549 0.1256 0.08129 0.08377 0.14285 0.25374 0.18474 0.50996l1.7244 9.1268c0.03449 0.10592 0.05666 0.1601 0.06653 0.1601 0.03449 0 0.05417-0.04928 0.05417-0.14533l1.3524-9.1022c0.03449-0.26602 0.09117-0.44338 0.16506-0.53702 0.07384-0.09358 0.16997-0.14043 0.2857-0.14043h1.1135c0.15024 0 0.22662 0.17245 0.22662 0.51734 0 0.0788-0.0098 0.18225-0.02712 0.30543l-2.3624 12.3c-0.1848 1.0174-0.3892 1.7958-0.61092 2.3353-0.22172 0.5395-0.46807 0.90655-0.74391 1.1011-0.27347 0.1946-0.63556 0.29557-1.0889 0.30543h-0.13298c-0.71691 0-1.2021-0.18964-1.4583-0.57146-0.07142-0.07886-0.10592-0.28328-0.10592-0.61098 0-0.65523 0.10592-0.98288 0.31778-0.98288 0.01726 0 0.17735 0.04437 0.47788 0.13304 0.30543 0.09358 0.50003 0.13795 0.58877 0.13795zm-20.84-1.5939c-0.22172 0-0.33261-0.29563-0.33261-0.8893v-14.66c0-0.28328-0.056661-0.41626-0.17239-0.39901-0.6996 0.17735-1.0519 0.26603-1.0617 0.26603-0.19466 0.01725-0.29072-0.17735-0.29072-0.5838v-1.2735c0-0.35228 0.10593-0.55185 0.31778-0.59622l3.5054-0.90401c0.027112-0.00747 0.066524-0.012313 0.11821-0.012313 0.19466 0 0.29072 0.20695 0.29072 0.62321v17.539c0 0.59367-0.1158 0.8893-0.3449 0.8893h-2.0298z" fill="#1a0e0e" stroke-width=".060529"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><path d="m13.9 5.1908v21.597h-5.8085v-14.152q-1.4092 1.1001-2.7269 1.7825-1.3177 0.67986-3.3054 1.3029v-4.8381q2.9321-0.97035 4.5526-2.3325 1.6205-1.361 2.5377-3.3598zm16.041 0.019778v21.599h-5.8073v-14.153q-1.4092 1.1001-2.7281 1.7825-1.3177 0.67986-3.3054 1.3029v-4.8369q2.9321-0.97035 4.5538-2.3313 1.6205-1.3622 2.5365-3.3622z" fill="#0d0303" stroke-width="1.2361" style="white-space:pre"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_light_rome</title><g fill="#27272a"><path class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m215.35 135.15a9.43 9.43 0 0 1-5.35 12.95c-47.87 17-82 60.94-82 112.47v9.43h-54v-9.43c0-73 47.88-135.3 115.35-160a9.43 9.43 0 0 1 11.76 4.79z"/><rect class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" x="74" y="288" width="54" height="144"/><path class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m434 260.57v9.43h-54v-9.43c0-51.53-34.1-95.46-82-112.47a9.43 9.43 0 0 1-5.38-12.95l14.24-29.82a9.43 9.43 0 0 1 11.76-4.79c67.5 24.73 115.38 87.06 115.38 160.03z"/><rect class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" x="380" y="288" width="54" height="144"/></g><path class="cls-2" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m288.26 74.32a9.45 9.45 0 0 1 7.26 13.42l-2.59 5.42-20.06 42a9.48 9.48 0 0 1-9.11 5.35q-4.85-0.27-9.76-0.27t-9.76 0.27a9.49 9.49 0 0 1-9.11-5.35l-20.06-42-2.59-5.42a9.45 9.45 0 0 1 7.26-13.42 254.12 254.12 0 0 1 68.52 0z" fill="#ffc905"/><path class="cls-2" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m362 260.57v171.43h-54v-171.43c0-28.41-24.18-51.43-54-51.43s-54 23-54 51.43v171.43h-54v-171.43c0-56.81 48.36-102.86 108-102.86s108 46.05 108 102.86z" fill="#ffc905"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_light_tree</title><path d="m1.916 1.9727v6.9883h-0.0058594v0.93164h0.0058594v5.7344h-0.0058594v0.93164h0.0058594v5.7363h-0.0058594v0.92969h0.0058594v5.7363h-0.0058594v0.93164h0.0058594v0.00586h0.93164v-0.00586h26.988v-0.93164h-26.988v-5.7363h13.77v-0.92969h-13.77v-5.7363h13.77v-0.93164h-13.77v-5.7344h7.8711v-0.93164h-7.8711v-6.9883h-0.93164z" fill="#172621" stroke-width="1.2"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_mondoo</title><path transform="matrix(.072028 0 0 .072028 2.0601 9.0298)" d="m96.757-0.0076182c-53.45 0-96.751 43.328-96.751 96.778 0 53.44 43.301 96.778 96.751 96.778v-96.778-96.778zm0 96.778a96.77 96.77 0 0 0 96.778 96.778 96.77 96.77 0 0 0 96.778-96.778 96.77 96.77 0 0 0-96.778-96.778 96.77 96.77 0 0 0-96.778 96.778zm193.56 0v96.75c53.44 0 96.75-43.301 96.75-96.75 0-53.45-43.311-96.778-96.75-96.778v96.778z" fill="#6e45e2"/></svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill-rule="evenodd" clip-rule="evenodd" fill="#80EEC0" d="M14.4,7.6c-0.8-1.3-2.7-1.3-3.5,0L2.3,22.3c-0.8,1.3,0.2,3,1.8,3h6.7c-0.7-0.6-0.9-1.6-0.4-2.5l6.5-11.1L14.4,7.6z"/><path fill="#00DC82" d="M19.8,10.9c0.6-1.1,2.3-1.1,2.9,0l7.1,12c0.6,1.1-0.2,2.5-1.5,2.5H14.2c-1.3,0-2.1-1.4-1.5-2.5L19.8,10.9z"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#00DC82" d="M17.7082 25H28.117c.3306 0 .6554-.0877.9417-.2545.2864-.1668.5241-.4067.6893-.6956.1652-.2888.2521-.6165.252-.95-.0001-.3335-.0873-.6611-.2528-.9498L22.7569 9.9358c-.1652-.2888-.4029-.52863-.6891-.69538-.2863-.16674-.611-.25453-.9415-.25453-.3306 0-.6553.08779-.9415.25453-.2863.16675-.524.40658-.6892.69538l-1.7874 3.1252-3.4946-6.11123c-.1653-.28878-.4031-.52857-.6894-.69529C13.2378 6.08777 12.9131 6 12.5825 6s-.6554.08777-.9417.25448c-.2864.16672-.5241.40651-.6895.69529L2.25282 22.1501c-.16548.2887-.25268.6163-.25282.9498-.00014.3335.08677.6612.252.95.16524.2889.40296.5288.68927.6956.2863.1668.61109.2545.9417.2545h6.53373c2.5888 0 4.4979-1.1471 5.8116-3.3852l3.1892-5.5719 1.7083-2.9819 5.1268 8.957h-6.8351L17.7082 25Zm-7.398-2.985-4.55972-.0011 6.83502-11.942 3.4104 5.971-2.2834 3.9909c-.8724 1.4521-1.8634 1.9812-3.4023 1.9812Z"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_rome</title><g fill="#cacad2"><path class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m215.35 135.15a9.43 9.43 0 0 1-5.35 12.95c-47.87 17-82 60.94-82 112.47v9.43h-54v-9.43c0-73 47.88-135.3 115.35-160a9.43 9.43 0 0 1 11.76 4.79z"/><rect class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" x="74" y="288" width="54" height="144"/><path class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m434 260.57v9.43h-54v-9.43c0-51.53-34.1-95.46-82-112.47a9.43 9.43 0 0 1-5.38-12.95l14.24-29.82a9.43 9.43 0 0 1 11.76-4.79c67.5 24.73 115.38 87.06 115.38 160.03z"/><rect class="cls-1" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" x="380" y="288" width="54" height="144"/></g><path class="cls-2" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m288.26 74.32a9.45 9.45 0 0 1 7.26 13.42l-2.59 5.42-20.06 42a9.48 9.48 0 0 1-9.11 5.35q-4.85-0.27-9.76-0.27t-9.76 0.27a9.49 9.49 0 0 1-9.11-5.35l-20.06-42-2.59-5.42a9.45 9.45 0 0 1 7.26-13.42 254.12 254.12 0 0 1 68.52 0z" fill="#ffc905"/><path class="cls-2" transform="matrix(.077144 0 0 .077144 -3.7733 -3.5592)" d="m362 260.57v171.43h-54v-171.43c0-28.41-24.18-51.43-54-51.43s-54 23-54 51.43v171.43h-54v-171.43c0-56.81 48.36-102.86 108-102.86s108 46.05 108 102.86z" fill="#ffc905"/></svg>
@@ -0,0 +1 @@
1
+ <svg version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>file_type_sapphire_framework_cli</title><g class="layer" transform="matrix(.87088 0 0 .92937 2.0626 1.129)"><title>file-type-sapphire-framework</title><g transform="matrix(.031321 0 0 .029852 8.9441 1.1228)"><path transform="translate(-286.6,-13.65)" d="m320.9 290.4-34.25 34.25v460.4l191.1 191.15 16.55-16.5v-0.05l-173.4-208.85v-460.4m382.2 0v460.5l-0.25 0.3 34.5-34.5v-477.7l-182.55-182.55-25 25 173.3 208.9z" fill="#95e8e8"/><polygon points="34.3 737.15 225.4 967.35 416.25 737.5 416.5 574.9 34.3 713.1" fill="#254fb9"/><path transform="translate(-286.6,-13.65)" d="m529.75 81.5 25-25-42.75-42.85-225.35 225.35v85.65l62.15-62.15-0.05-0.05-27.85 27.9 191.1-230.2 17.75 21.35m207.6 703.6v-68.45l-34.5 34.5-190.85 229.85-17.7-21.3-16.55 16.5 34.25 34.25 225.35-225.35m-34.5-34 0.25-0.3-48.4 48.4z" fill="#5280dd"/><path transform="translate(-286.6,-13.65)" d="m703.1 588.55v-270.9l-382.2 202.9v206.2z" fill="#729ef4"/><path transform="translate(-286.6,-13.65)" d="m320.9 290.35 191.1-230.2 191.1 230.2v27.3l-382.2 202.9z" fill="#254fb9"/></g></g></svg>