-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f682a27
commit 08d156d
Showing
15 changed files
with
1,425 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"fontSize": "10px", | ||
"tsconfig": "tsconfig.json", | ||
"fileExtensions": ["ts", "tsx", "js", "jsx"], | ||
"backgroundColor": "#FFFFFF", | ||
"textColor": "#FFFFFF", | ||
"nodeColor": "black", | ||
"noDependencyColor": "green", | ||
"cyclicNodeColor": "red", | ||
"edgeColor": "green", | ||
"graphVizOptions": { | ||
"G": { | ||
"rankdir": "TB", | ||
"layout": "neato", | ||
"splines": "curved" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/bin/bash | ||
rm -rf build/ node_modules/ coverage/ playwright-report/ | ||
rm -rf build/ node_modules/ coverage/ playwright-report/ | ||
rm src.svg test.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
PATH="$(yarn bin):$PATH" | ||
export PATH | ||
printf "Generate dependency graph for code" | ||
|
||
madge --image src.svg src | ||
madge --image test.svg test | ||
#eval madge --image src.svg "$TS_CONFIG" "$EXTENSIONS" src | ||
#madge --image test.svg --ts-config tsconfig.json --extensions ts,tsx test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/bin/bash | ||
rm -rf build node_modules coverage dist | ||
rm -rf build node_modules coverage dist | ||
rm src.svg test.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
PATH="$(yarn bin):$PATH" | ||
export PATH | ||
printf "Generate graph for source code" | ||
madge --image src.svg --ts-config tsconfig.json --extensions ts,tsx src | ||
madge --image test.svg --ts-config tsconfig.json --extensions ts,tsx test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
#!/bin/bash | ||
rm -rf build node_modules coverage dist | ||
rm -rf build node_modules coverage dist | ||
rm src.svg test.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
PATH="$(yarn bin):$PATH" | ||
export PATH | ||
printf "Generate graph for source code" | ||
madge --image src.svg --ts-config tsconfig.json --extensions ts,tsx src | ||
madge --image test.svg --ts-config tsconfig.json --extensions ts,tsx test |