speccrew 0.6.65 → 0.6.66
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.
|
@@ -93,8 +93,8 @@ For each platform, generates:
|
|
|
93
93
|
|
|
94
94
|
<!-- Step 1: Read Directory Tree -->
|
|
95
95
|
<block type="task" id="B1" action="run-script" desc="Read each platform's sourcePath directory structure (3 levels deep)">
|
|
96
|
-
<field name="command">
|
|
97
|
-
<field name="
|
|
96
|
+
<field name="command">Get-ChildItem -Path "${platform.sourcePath}" -Recurse -Directory -Depth 2 | Select-Object -ExpandProperty FullName</field>
|
|
97
|
+
<field name="note">MUST use Get-ChildItem (NOT tree command). MUST use ${platform.sourcePath} absolute path (NOT relative path). Scan depth follows module_scan.depth configuration from tech-stack-mappings.json.</field>
|
|
98
98
|
<field name="output" var="directory_tree"/>
|
|
99
99
|
</block>
|
|
100
100
|
|
package/package.json
CHANGED
|
@@ -12,6 +12,29 @@
|
|
|
12
12
|
".next", ".nuxt", ".output",
|
|
13
13
|
"docs", "scripts", "public", "assets", "mock", "fixtures"
|
|
14
14
|
],
|
|
15
|
+
"tech_aliases": {
|
|
16
|
+
"vue3": "vue",
|
|
17
|
+
"vue2": "vue",
|
|
18
|
+
"react18": "react",
|
|
19
|
+
"react17": "react",
|
|
20
|
+
"next": "nextjs",
|
|
21
|
+
"nuxt3": "nuxt",
|
|
22
|
+
"nuxt2": "nuxt",
|
|
23
|
+
"svelte-kit": "svelte",
|
|
24
|
+
"spring-boot": "spring",
|
|
25
|
+
"springboot": "spring",
|
|
26
|
+
"nest": "nestjs",
|
|
27
|
+
"fast-api": "fastapi",
|
|
28
|
+
"python-fastapi": "fastapi",
|
|
29
|
+
"gin": "go",
|
|
30
|
+
"echo": "go",
|
|
31
|
+
"actix": "rust",
|
|
32
|
+
"axum": "rust",
|
|
33
|
+
"uni-app": "uniapp",
|
|
34
|
+
"weapp": "miniprogram",
|
|
35
|
+
"wechat-miniprogram": "miniprogram",
|
|
36
|
+
"rn": "react-native"
|
|
37
|
+
},
|
|
15
38
|
"tech_stacks": {
|
|
16
39
|
"web": {
|
|
17
40
|
"react": {
|