Skip to content

Commit

Permalink
Fix incomplete clean commands
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbouchenoire committed Sep 14, 2021
1 parent 61dfed0 commit b6431d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test": "lerna run test --stream",
"prepare": "lerna run prepare --stream",
"release": "lerna publish",
"clean": "lerna run clean"
"clean": "lerna run clean && rimraf node_modules"
},
"devDependencies": {
"@bouchenoiremarc/eslint-config": "^1.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ios-symbols/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"scripts": {
"precommit": "lint-staged",
"build": "microbundle --tsconfig tsconfig.build.json",
"clean": "jest --clearCache && rimraf node_modules",
"clean": "jest --clearCache && rimraf dist node_modules",
"lint": "yarn lint:eslint && yarn lint:tsc && yarn lint:prettier",
"lint:eslint": "eslint '**/*.{ts,tsx}' --fix",
"lint:prettier": "prettier --write '**/*.{ts,tsx}' --loglevel silent",
Expand Down

0 comments on commit b6431d3

Please sign in to comment.