-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from infinitered/remove-vars
Fix URLs in packages
- Loading branch information
Showing
11 changed files
with
47 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@infinitered/react-native-mlkit-object-detection": minor | ||
"@infinitered/react-native-mlkit-face-detection": minor | ||
"@infinitered/react-native-mlkit-image-labeling": minor | ||
"@infinitered/react-native-mlkit-core": minor | ||
--- | ||
|
||
Fix URLs in package.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,21 +16,22 @@ | |
"ci:test": "echo \"Fake testing....\"", | ||
"expo-module": "expo-module", | ||
"open:ios": "open -a \"Xcode\" example/ios", | ||
"open:android": "open -a \"Android Studio\" example/android" | ||
"open:android": "open -a \"Android Studio\" example/android", | ||
"release": "npm publish" | ||
}, | ||
"keywords": [ | ||
"react-native", | ||
"expo", | ||
"react-native-mlkit-core", | ||
"ExpoMLkitCore" | ||
], | ||
"repository": "https://github.com/infinitered/react-native-mlkit-core", | ||
"repository": "https://github.com/infinitered/react-native-mlkit", | ||
"bugs": { | ||
"url": "https://github.com/infinitered/react-native-mlkit-core/issues" | ||
"url": "https://github.com/infinitered/react-native-mlkit/issues" | ||
}, | ||
"author": "Trevor Coleman <[email protected]> (https://github.com/trevor-coleman)", | ||
"license": "MIT", | ||
"homepage": "https://github.com/infinitered/react-native-mlkit#readme", | ||
"homepage": "https://infinitered.github.io/react-native-mlkit", | ||
"devDependencies": { | ||
"@testing-library/react-native": "^12.3.0", | ||
"expo-module-scripts": "^3.0.11", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
"ci:test": "echo \"Fake testing....\"", | ||
"expo-module": "expo-module", | ||
"open:ios": "open -a \"Xcode\" example/ios", | ||
"open:android": "open -a \"Android Studio\" example/android" | ||
"open:android": "open -a \"Android Studio\" example/android", | ||
"release": "npm publish" | ||
}, | ||
"keywords": [ | ||
"react-native", | ||
|
@@ -30,7 +31,7 @@ | |
}, | ||
"author": "Trevor Coleman <[email protected]> (https://www.github.com/trevor-coleman)", | ||
"license": "MIT", | ||
"homepage": "https://www.github.com/infinitered/react-native-mlkit#readme", | ||
"homepage": "https://infinitered.github.io/react-native-mlkit/", | ||
"dependencies": { | ||
"@infinitered/react-native-mlkit-core": "*" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"description": "Expo module for MLKit Object Detection", | ||
"main": "build/index.js", | ||
"types": "build/index.d.ts", | ||
"private": false, | ||
"scripts": { | ||
"build": "expo-module build", | ||
"clean": "expo-module clean", | ||
|
@@ -16,21 +17,22 @@ | |
"ci:test": "echo \"Fake testing....\"", | ||
"expo-module": "expo-module", | ||
"open:ios": "open -a \"Xcode\" example/ios", | ||
"open:android": "open -a \"Android Studio\" example/android" | ||
"open:android": "open -a \"Android Studio\" example/android", | ||
"release": "npm publish" | ||
}, | ||
"keywords": [ | ||
"react-native", | ||
"expo", | ||
"react-native-mlkit-object-detection", | ||
"RNMLKitObjectDetection" | ||
], | ||
"repository": "https://github.com/infinitered/react-native-mlkit-object-detection", | ||
"repository": "https://github.com/infinitered/react-native-mlkit", | ||
"bugs": { | ||
"url": "https://github.com/infinitered/react-native-mlkit-object-detection/issues" | ||
"url": "https://github.com/infinitered/react-native-mlkit/issues" | ||
}, | ||
"author": "Trevor Coleman <[email protected]> (https://github.com/trevor-coleman)", | ||
"license": "MIT", | ||
"homepage": "https://github.com/infinitered/react-native-mlkit#readme", | ||
"homepage": "https://infinitered.github.io/react-native-mlkit/", | ||
"dependencies": { | ||
"@infinitered/react-native-mlkit-core": "*", | ||
"expo-modules-core": "^1.5.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters