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

Adding clean scripts #3191

Merged
merged 4 commits into from
Dec 7, 2024
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
3 changes: 2 additions & 1 deletion tee-worker/identity/client-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"build": "pnpm --filter parachain-api run build && pnpm --filter sidechain-api run build",
"update-build": "pnpm run update && pnpm run build",
"format": "pnpm run --recursive format",
"check-format": "pnpm run --recursive check-format"
"check-format": "pnpm run --recursive check-format",
"clean": "pnpm --filter parachain-api run clean && pnpm --filter sidechain-api run clean"
},
"packageManager": "[email protected]"
}
2 changes: 2 additions & 0 deletions tee-worker/identity/ts-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ See client-api [README.md](https://github.com/litentry/litentry-parachain/blob/d

## Installation

Note: Whenever the `client-api` is updated, it must be reinstalled, and it's best to clean node_modules(`pnpm run clean`) to prevent caching issues.

```
cd tee-worker/ts-tests
nvm use
Expand Down
3 changes: 2 additions & 1 deletion tee-worker/identity/ts-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"license": "ISC",
"scripts": {
"format": "pnpm run --recursive format",
"check-format": "pnpm run --recursive check-format"
"check-format": "pnpm run --recursive check-format",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"packageManager": "[email protected]"
}
Loading