Skip to content

Commit

Permalink
chore: Replace del-cli with rm -rf
Browse files Browse the repository at this point in the history
we dont need a separate package for everything
  • Loading branch information
mrousavy committed Oct 8, 2024
1 parent 96062c2 commit 2e2e67f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"clean": "del-cli android/build node_modules/**/android/build lib",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"typescript": "tsc --noEmit false",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
Expand All @@ -30,7 +30,6 @@
"@react-native/typescript-config": "^0.75.2",
"@types/deep-equal": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.2",
"del-cli": "^5.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down
3 changes: 1 addition & 2 deletions packages/react-native-nitro-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"postinstall": "tsc || exit 0;",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "del-cli android/build node_modules/**/android/build lib",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"typescript": "tsc --noEmit false",
Expand Down Expand Up @@ -56,7 +56,6 @@
"@react-native/eslint-config": "^0.75.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"del-cli": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down
3 changes: 1 addition & 2 deletions packages/react-native-nitro-modules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"postinstall": "tsc || exit 0;",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "del-cli android/build node_modules/**/android/build lib",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"release": "bob build && release-it",
Expand Down Expand Up @@ -67,7 +67,6 @@
"@react-native/eslint-config": "^0.75.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"del-cli": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down
3 changes: 1 addition & 2 deletions packages/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"scripts": {
"postinstall": "tsc || exit 0;",
"typecheck": "tsc --noEmit",
"clean": "del-cli android/build node_modules/**/android/build lib",
"clean": "rm -rf android/build node_modules/**/android/build lib",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"lint-ci": "eslint \"**/*.{js,ts,tsx}\" -f @jamesacarr/github-actions",
"typescript": "tsc --noEmit false",
Expand All @@ -54,7 +54,6 @@
"@react-native/eslint-config": "^0.75.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
Expand Down

0 comments on commit 2e2e67f

Please sign in to comment.