Skip to content

Commit

Permalink
feat
Browse files Browse the repository at this point in the history
  • Loading branch information
HadiKhai committed Mar 23, 2024
1 parent 5e364dc commit 38ae11b
Show file tree
Hide file tree
Showing 28 changed files with 87 additions and 1,028 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- run: yarn workspaces foreach --all --parallel install --immutable
- run: yarn install --immutable
- run: nx run-many --target=install --all -parallel
- run: npx nx affected -t lint
- run: npx nx affected -t test --configuration=ci
- run: npx nx affected -t build
Binary file modified .yarn/install-state.gz
Binary file not shown.
18 changes: 15 additions & 3 deletions examples/backend/express/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,24 @@
"projectType": "application",
"targets": {
"serve": {
"command": "cd ./examples/backend/express && yarn && yarn serve"
"executor": "nx:run-commands",
"options": {
"command": "yarn serve",
"cwd": "examples/backend/express"
}
},
"lint": {
"executor": "@nx/eslint:lint",
"executor": "nx:run-commands",
"options": {
"command": "yarn lint",
"cwd": "examples/backend/express"
}
},
"install": {
"executor": "nx:run-commands",
"options": {
"lintFilePatterns": ["examples/backend/express/src/main.ts"]
"command": "yarn",
"cwd": "examples/backend/express"
}
}
},
Expand Down
6 changes: 0 additions & 6 deletions examples/frontend/expo/.babelrc.js

This file was deleted.

18 changes: 0 additions & 18 deletions examples/frontend/expo/.eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion examples/frontend/expo/.gitignore

This file was deleted.

32 changes: 0 additions & 32 deletions examples/frontend/expo/app.json

This file was deleted.

Binary file removed examples/frontend/expo/assets/adaptive-icon.png
Binary file not shown.
Binary file removed examples/frontend/expo/assets/favicon.png
Binary file not shown.
Binary file removed examples/frontend/expo/assets/icon.png
Binary file not shown.
Binary file removed examples/frontend/expo/assets/splash.png
Binary file not shown.
25 changes: 0 additions & 25 deletions examples/frontend/expo/eas.json

This file was deleted.

8 changes: 0 additions & 8 deletions examples/frontend/expo/index.js

This file was deleted.

20 changes: 0 additions & 20 deletions examples/frontend/expo/jest.config.ts

This file was deleted.

32 changes: 0 additions & 32 deletions examples/frontend/expo/metro.config.js

This file was deleted.

18 changes: 0 additions & 18 deletions examples/frontend/expo/package.json

This file was deleted.

8 changes: 0 additions & 8 deletions examples/frontend/expo/project.json

This file was deleted.

9 changes: 0 additions & 9 deletions examples/frontend/expo/src/app/App.spec.tsx

This file was deleted.

Loading

0 comments on commit 38ae11b

Please sign in to comment.