Skip to content

Commit

Permalink
fix: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
dimninik committed Sep 28, 2023
1 parent 88801bc commit 997fcf0
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"overrides": [
{
"files": ["src/**", "integration-tests/**"],
"files": ["src/**", "__tests__/**", "integration-tests/**"],
"parser": "hermes-eslint",
"extends": [
"plugin:react/recommended",
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.md
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,23 @@ for the old instructions or [migration guide](./docs/MIGRATION_V1.md).

| React Native | 2.0.0 |
| ------------ | ------------------ |
| 0.63.3 | :white_check_mark: |
| 0.62.2 | :white_check_mark: |
| 0.61.5 | :white_check_mark: |
| 0.72.4 | :white_check_mark: |
| 0.71.13 | :white_check_mark: |
| 0.70.13 | :white_check_mark: |
| 0.60.6 | :white_check_mark: |

## Recent Changes

**2.0.3**
**3.0.0**

- Updated MultiplatformBleAdapter to version 0.1.9
- Added Example project
- Updated MultiplatformBleAdapter to version 0.2.0.
- Updated RN bridge config
- Changed CI flow
- Updated CI to RN 0.72.x
- Updated docs
- Updated dependencies
- Fixed iOS 16 bugs

[Current version changes](CHANGELOG.md)
[All previous changes](CHANGELOG-pre-03.md)
Expand All @@ -69,8 +76,6 @@ Interested in React Native project involving Bluetooth Low Energy? [We can help

Contact us at [intent](https://withintent.com/contact-us/?utm_source=github&utm_medium=github&utm_campaign=external_traffic).

Contact us at [Gitter](https://gitter.im/RxBLELibraries/react-native-ble) if you have any questions, feedback or want to help!

## Configuration & Installation

### Expo SDK 43+
Expand Down
1 change: 1 addition & 0 deletions __tests__/BleManager.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-import-assign */
import { BleManager, Device, Service, Characteristic } from '../src'
import { BleErrorCode, BleErrorCodeMessage } from '../src/BleError'
import * as Native from '../src/BleModule'
Expand Down
2 changes: 1 addition & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pre-commit:
commands:
lint:
files: git diff --name-only @{push}
glob: "*.{js,ts,jsx,tsx}"
glob: '*.{js,ts,jsx,tsx}'
run: yarn lint
commit-msg:
parallel: true
Expand Down
9 changes: 0 additions & 9 deletions scripts/copyExampleProjectFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,6 @@ const copyExampleProjectJsFiles = () => {
fs.cpSync(jsSourceDirectory, jsSourceDestinationDirectory, { recursive: true })
}

const androidManifestPath = path.join(
__dirname,
EXAMPLE_PROJECT_DIR_NAME,
'android',
'app',
'src',
'main',
'AndroidManifest.xml'
)
const androidManifestDestinationPath = path.join(
__dirname,
TEST_PROJECT_DIR_NAME,
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@
"strict": true,
"target": "esnext",
"verbatimModuleSyntax": true
}
},
"exclude": ["src/**", "__tests__/**", "integration-tests/**"]
}

0 comments on commit 997fcf0

Please sign in to comment.