Skip to content

Commit

Permalink
Revert unintended changes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee committed Jan 10, 2024
1 parent 1cf7860 commit 8aea5f2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 18 deletions.
11 changes: 1 addition & 10 deletions packages/rn-tester/RNTester/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,7 @@
#import <RNTMyNativeViewComponentView.h>
#endif

// FB-internal imports
#ifdef RN_DISABLE_OSS_PLUGIN_HEADER
#import <RCTFBAppInit/RCTFBAppInit.h>
#endif

#if BUNDLE_PATH
NSString *kBundlePath = @"xplat/js/RKJSModules/EntryPoints/RNTesterTestBundle.js";
#else
NSString *kBundlePath = @"js/RNTesterApp.ios";
#endif
static NSString *kBundlePath = @"js/RNTesterApp.ios";

@implementation AppDelegate

Expand Down
2 changes: 1 addition & 1 deletion packages/rn-tester/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const config = {
'react-native': path.resolve(__dirname, '../react-native'),
},
resolveRequest: getPlatformResolver({
platformNameMap: {visionos: '@callstack/react-native-vision'},
platformNameMap: {visionos: '@callstack/react-native-visionos'},
}),
sourceExts: getDefaultConfig(__dirname).resolver.sourceExts?.flatMap(
ext => [`visionos.${ext}`, ext],
Expand Down
13 changes: 6 additions & 7 deletions scripts/test-e2e-local.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,17 @@
* and to make it more accessible for other devs to play around with.
*/

const {exec, pushd, popd, pwd, cd, sed} = require('shelljs');
const updateTemplatePackage = require('./update-template-package');
const yargs = require('yargs');
const path = require('path');

const {
checkPackagerRunning,
maybeLaunchAndroidEmulator,
launchPackagerInSeparateWindow,
setupCircleCIArtifacts,
maybeLaunchAndroidEmulator,
prepareArtifacts,
setupCircleCIArtifacts,
} = require('./testing-utils');
const updateTemplatePackage = require('./update-template-package');
const path = require('path');
const {cd, exec, popd, pushd, pwd, sed} = require('shelljs');
const yargs = require('yargs');

const argv = yargs
.option('t', {
Expand Down

0 comments on commit 8aea5f2

Please sign in to comment.