@kvell007/embed-labs-cli 0.1.0-alpha.32 → 0.1.0-alpha.33
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/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/dist/local-toolchain.js +98 -16
- package/dist/local-toolchain.js.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -7007,8 +7007,10 @@ function localToolchainComponentGroups(components) {
|
|
|
7007
7007
|
const groups = new Set();
|
|
7008
7008
|
for (const component of components) {
|
|
7009
7009
|
const text = `${component.id} ${component.role ?? ""}`.toLowerCase();
|
|
7010
|
-
if (text.includes("
|
|
7011
|
-
groups.add("compiler
|
|
7010
|
+
if (text.includes("arm-none-eabi") || text.includes("bare-metal") || text.includes("compiler"))
|
|
7011
|
+
groups.add("compiler/ARM 裸机编译器");
|
|
7012
|
+
if (text.includes("pico-sdk") || text.includes("sdk-core"))
|
|
7013
|
+
groups.add("pico-sdk/C/C++ SDK");
|
|
7012
7014
|
if (text.includes("sysroot") || text.includes("cross"))
|
|
7013
7015
|
groups.add("sysroot/交叉运行库");
|
|
7014
7016
|
if (text.includes("qt"))
|
|
@@ -7017,8 +7019,10 @@ function localToolchainComponentGroups(components) {
|
|
|
7017
7019
|
groups.add("boot-flash/启动与烧写工具");
|
|
7018
7020
|
if (text.includes("image") || text.includes("rootfs"))
|
|
7019
7021
|
groups.add("images/镜像资源");
|
|
7020
|
-
if (text.includes("
|
|
7021
|
-
groups.add("
|
|
7022
|
+
if (text.includes("initial-firmware"))
|
|
7023
|
+
groups.add("initial-firmware/初始化镜像");
|
|
7024
|
+
if (text.includes("rp2350-monitor"))
|
|
7025
|
+
groups.add("rp2350-monitor/可选硬件监控镜像");
|
|
7022
7026
|
if (text.includes("meta"))
|
|
7023
7027
|
groups.add("metadata/知识与脚本元数据");
|
|
7024
7028
|
}
|