diff options
| author | CyberRex <hspwinx86@gmail.com> | 2023-01-16 06:08:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-16 06:08:42 +0900 |
| commit | 6e2d7e9792cbf12cda849d52c34a2caddd5717bc (patch) | |
| tree | 0f479003665bd8be25dd8e27a8dfd389013d0b49 /scripts/clean-all.js | |
| parent | enhance(client): プロフィールが長い場合は折りたたむ (diff) | |
| download | misskey-6e2d7e9792cbf12cda849d52c34a2caddd5717bc.tar.gz misskey-6e2d7e9792cbf12cda849d52c34a2caddd5717bc.tar.bz2 misskey-6e2d7e9792cbf12cda849d52c34a2caddd5717bc.zip | |
Use pnpm for package manager (#9531)
* Use pnpm for package manager
* Fix
* Change github workflow
* use pnpm in workflow
* fix
* Fix test (e2e/jest)
* Update Dockerfile for pnpm
* Exclude node_modules from file search on VSCode
* Update pnpm-lock.yaml
* Update pnpm-lock.yaml
* Move typescript from devDependencies to dependencies
* Fix Dockerfile
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'scripts/clean-all.js')
| -rw-r--r-- | scripts/clean-all.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clean-all.js b/scripts/clean-all.js index 563b6bc922..2d7fe99ae4 100644 --- a/scripts/clean-all.js +++ b/scripts/clean-all.js @@ -14,7 +14,7 @@ const fs = require('fs'); fs.rmSync(__dirname + '/../built', { recursive: true, force: true }); fs.rmSync(__dirname + '/../node_modules', { recursive: true, force: true }); - execSync('yarn cache clean --all', { + execSync('pnpm store prune', { cwd: __dirname + '/../', stdio: 'inherit', }); |