Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove realm/react-native "sub-package" / ListView component #4114

Merged
merged 8 commits into from
Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ x.x.x Release notes (yyyy-MM-dd)
* Updated Docker URL to new canonical URL of `ghcr.io`
* Excluding the `react-native/android/build` directory from the NPM package.
* Removed the `examples/ReactExample` app. See [FindOurDevices](https://github.com/realm/FindOurDevices) for a modern example app.
* Removed undocumented, outdated and unused `ListView` component exported via `realm/react-native`. See [@realm.io/react](https://www.npmjs.com/package/@realm.io/react) for a modern integration with React.
* <Either mention core version or upgrade>
* <Using Realm Core vX.Y.Z>
* <Upgraded Realm Core from vX.Y.Z to vA.B.C>
Expand Down
6 changes: 0 additions & 6 deletions react-native/.eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion react-native/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ apply from: 'analytics.gradle'
import groovy.json.JsonSlurper

def getPackageVersion() {
def inputFile = new File(buildscript.sourceFile.getParent() + "/../package.json")
def inputFile = new File(buildscript.sourceFile.getParent() + "/../../package.json")
def packageJson = new JsonSlurper().parseText(inputFile.text)
return packageJson["version"]
}
Expand Down
21 changes: 0 additions & 21 deletions react-native/index.js

This file was deleted.

200 changes: 0 additions & 200 deletions react-native/listview.js

This file was deleted.

10 changes: 0 additions & 10 deletions react-native/package.json

This file was deleted.

5 changes: 0 additions & 5 deletions tests/ReactTestApp/tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@

import {NativeEventEmitter, NativeModules} from 'react-native';
import * as RealmTests from 'realm-tests';
import ListViewTest from './listview-test';

RealmTests.registerTests({
ListViewTest,
});

const realmTestEmitter = new NativeEventEmitter(
NativeModules.RealmTestEventEmitter,
Expand Down
96 changes: 0 additions & 96 deletions tests/ReactTestApp/tests/listview-test.js

This file was deleted.