Skip to content

Commit

Permalink
chore(dependencies): delete expo dependencies from root package.json
Browse files Browse the repository at this point in the history
delete expo
  • Loading branch information
aliberski committed Dec 19, 2024
1 parent 9682522 commit 90a77c1
Show file tree
Hide file tree
Showing 4 changed files with 409 additions and 2,252 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
"import/no-default-export": 0,
"@typescript-eslint/no-shadow": 0,
"global-require": 0,
"@typescript-eslint/no-var-requires": 0
"@typescript-eslint/no-var-requires": 0,
"import/no-extraneous-dependencies": "off"
}
}
]
Expand Down
9 changes: 3 additions & 6 deletions example-expo/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1351,7 +1351,7 @@
node-forge "^1.2.1"
nullthrows "^1.1.1"

"@expo/[email protected]", "@expo/config-plugins@^7.2.5 || ^8.0.0", "@expo/config-plugins@~8.0.0", "@expo/config-plugins@~8.0.0-beta.0":
"@expo/[email protected]", "@expo/config-plugins@~8.0.0", "@expo/config-plugins@~8.0.0-beta.0":
version "8.0.5"
resolved "https://registry.yarnpkg.com/@expo/config-plugins/-/config-plugins-8.0.5.tgz#fc165e59786e399dd4694aae2a7cd716ab8a496c"
integrity sha512-VGseKX1dYvaf2qHUDGzIQwSOJrO5fomH0gE5cKSQyi6wn+Q6rcV2Dj2E5aga+9aKNPL6FxZ0dqRFC3t2sbhaSA==
Expand Down Expand Up @@ -3956,7 +3956,7 @@ expo-status-bar@~1.12.1:
resolved "https://registry.yarnpkg.com/expo-status-bar/-/expo-status-bar-1.12.1.tgz#52ce594aab5064a0511d14375364d718ab78aa66"
integrity sha512-/t3xdbS8KB0prj5KG5w7z+wZPFlPtkgs95BsmrP/E7Q0xHXTcDcQ6Cu2FkFuRM+PKTb17cJDnLkawyS5vDLxMA==

expo@^51.0.14, expo@~51.0.14:
expo@~51.0.14:
version "51.0.14"
resolved "https://registry.yarnpkg.com/expo/-/expo-51.0.14.tgz#98769b090a0b5c7d7c7028fdb9c21904f56cd9fa"
integrity sha512-99BAMSYBH1aq1TIEJqM03kRpsZjN8OqZXDqYHRq9/PXT67axRUOvRjwMMLprnCmqkAVM7m7FpiECNWN4U0gvLQ==
Expand Down Expand Up @@ -6416,10 +6416,7 @@ react-native-base64@^0.2.1:
integrity sha512-eHgt/MA8y5ZF0aHfZ1aTPcIkDWxza9AaEk4GcpIX+ZYfZ04RcaNahO+527KR7J44/mD3efYfM23O2C1N44ByWA==

react-native-ble-plx@../:
version "3.2.0"
dependencies:
"@expo/config-plugins" "^7.2.5 || ^8.0.0"
expo "^51.0.14"
version "3.2.1"

react-native-safe-area-context@^4.10.1:
version "4.10.5"
Expand Down
10 changes: 3 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
],
"scripts": {
"build": "babel src/ -d lib/",
"test": "yarn test:package ; yarn test:example ; yarn test:plugin",
"test": "yarn test:package ; yarn test:example",
"test:package": "jest --config jest.config.js --passWithNoTests",
"test:example": "jest --config example/jest.config.js",
"test:example": "jest --config example/jest.config.js --passWithNoTests",
"docs": "documentation build src/index.js -o docs --config documentation.yml -f html",
"typecheck": "tsc --noEmit",
"lint": "flow && eslint \"**/*.{js,ts,tsx}\" && documentation lint index.js && yarn typecheck",
Expand All @@ -44,7 +44,7 @@
"test:android": "cd example/android && ./gradlew assembleDebug --no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a",
"build:ios": "cd example/ios && xcodebuild -workspace BlePlxExample.xcworkspace -scheme BlePlxExample -configuration Debug -sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO",
"test:ios": "cd example/ios && xcodebuild -workspace BlePlxExample.xcworkspace -scheme BlePlxExample -configuration Debug -sdk iphonesimulator ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO",
"test:expo": "cd example-expo && npx expo prebuild",
"test:expo": "cd example-expo && yarn install && npx expo prebuild",
"bootstrap": "yarn example && yarn install && yarn example pods",
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build plugin/build lib",
"build:plugin": "tsc --build plugin",
Expand Down Expand Up @@ -124,10 +124,6 @@
"resolutions": {
"@types/react": "^18.2.44"
},
"dependencies": {
"@expo/config-plugins": "^7.2.5 || ^8.0.0",
"expo": "^51.0.14"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
Expand Down
Loading

0 comments on commit 90a77c1

Please sign in to comment.