From 1bf6b9c548e3abea1d5a46c918e0c67f0da27104 Mon Sep 17 00:00:00 2001 From: Overtorment Date: Wed, 5 May 2021 17:36:01 +0100 Subject: [PATCH] OPS: remove npx (closes #3078) --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 5918f1b10..b17661842 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "eslint-plugin-react": "^7.20.3", "flow-bin": "^0.134.0", "jest": "^26.1.0", - "jetifier": "^1.6.3", "react-test-renderer": "16.13.1" }, "engines": { @@ -40,14 +39,14 @@ "android": "react-native run-android", "android:clean": "cd android; ./gradlew clean ; cd .. ; npm run android", "ios": "react-native run-ios", - "postinstall": "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack; npm run releasenotes2json; npm run podinstall; npx jetify", + "postinstall": "rn-nodeify --install buffer,events,process,stream,util,inherits,fs,path,assert,crypto --hack; npm run releasenotes2json; npm run podinstall", "test": "npm run lint && npm run unit && npm run jest", "jest": "jest -b -w 1 tests/integration/*", "maccatalystpatches": "./scripts/maccatalystpatches/applypatchesformaccatalyst.sh", "e2e:debug-build": "detox build -c android.emu.debug", "e2e:debug-test": "detox test -c android.emu.debug", "e2e:debug": "(test -f android/app/build/outputs/apk/debug/app-debug.apk && test -f android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk) || npm run e2e:debug-build; npm run e2e:debug-test", - "e2e:release-build": "npx detox build -c android.emu.release", + "e2e:release-build": "detox build -c android.emu.release", "e2e:release-test": "detox test -c android.emu.release --record-videos all --take-screenshots all --headless --loglevel trace", "lint": "eslint *.js screen/**/*.js blue_modules/*.js class/**/*.js models/ loc/ tests/**/*.js components/**/*.js", "lint:fix": "npm run lint -- --fix",