Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Introduced dependency cruiser for the pkgs #2586

Merged
merged 1 commit into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ coverage/

apps/test/

#e2e
# e2e
artifacts/
html-report/
html-report/

# dependency cruiser
dependency-graph.svg
5 changes: 4 additions & 1 deletion apps/wallet-mobile/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,12 @@ coverage-ts
# Logs/tmp
*.log

#Test's data
# Test's data
tests/app
tests/artifacts

coverage/
.jest/

# Dependency cruiser
dependency-graph.svg
761 changes: 0 additions & 761 deletions apps/wallet-mobile/dependency-graph.svg

This file was deleted.

3 changes: 2 additions & 1 deletion apps/wallet-mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"scripts": {
"android-bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"build": "yarn lint && yarn tsc && yarn test",
"dgraph": "depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph.svg",
"e2e:build:android:dev:debug": "detox build --configuration android.emu.dev.debug",
"e2e:build:android:nightly:debug": "detox build --configuration android.emu.nightly.debug",
"e2e:build:android:nightly:release": "detox build --configuration android.emu.nightly.release",
Expand Down Expand Up @@ -240,7 +241,7 @@
"babel-plugin-react-intl": "^3.0.1",
"babel-plugin-require-context-hook": "^1.0.0",
"chai": "^4.3.7",
"dependency-cruiser": "^12.10.0",
"dependency-cruiser": "^13.1.1",
"detox": "^20.11.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "8.3.0",
Expand Down
Loading