File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
introduction-to-codebase-interface Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -239,9 +239,9 @@ graph TD
239239 CLI["⚙️ Abstracted CLI<br/><small>Taskfile/Make/Just</small>"]
240240
241241 %% Common Commands
242- INSTALL ["📦 task install "]
243- TEST["🧪 task test"]
244- BUILD["🔨 task build"]
242+ SETUP ["📦 setup "]
243+ TEST["🧪 test"]
244+ BUILD["🔨 build"]
245245
246246 %% Language-Specific Tools
247247 NODE["🟨 Node.js<br/><small>npm install<br/>npm test<br/>npm run build</small>"]
@@ -253,14 +253,14 @@ graph TD
253253 CONTRIBUTOR ==> CLI
254254 BUILD_AGENT ==> CLI
255255
256- CLI --> INSTALL
256+ CLI --> SETUP
257257 CLI --> TEST
258258 CLI --> BUILD
259259
260- INSTALL -.-> NODE
261- INSTALL -.-> PYTHON
262- INSTALL -.-> GO
263- INSTALL -.-> RUST
260+ SETUP -.-> NODE
261+ SETUP -.-> PYTHON
262+ SETUP -.-> GO
263+ SETUP -.-> RUST
264264
265265 TEST -.-> NODE
266266 TEST -.-> PYTHON
@@ -280,7 +280,7 @@ graph TD
280280
281281 class CONTRIBUTOR,BUILD_AGENT audience
282282 class CLI abstraction
283- class INSTALL ,TEST,BUILD command
283+ class SETUP ,TEST,BUILD command
284284 class NODE,PYTHON,GO,RUST language
285285```
286286
You can’t perform that action at this time.
0 commit comments