Skip to content

Commit 8196fa8

Browse files
committed
chore: add missing meta to package.json
1 parent 89b61a8 commit 8196fa8

5 files changed

Lines changed: 19 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="./docs/logo.svg" width="30%" />
33
</p>
44

5-
# react-native-sandbox
5+
# @callstack/react-native-sandbox
66

77
[![check](https://github.com/callstackincubator/react-native-sandbox/actions/workflows/check.yml/badge.svg)](https://github.com/callstackincubator/react-native-sandbox/actions/workflows/check.yml)
88
![platform: iOS](https://img.shields.io/badge/platform-iOS-blue.svg)

packages/react-native-sandbox/ios/SandboxReactNativeDelegate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#import <React-RCTAppDelegate/RCTDefaultReactNativeFactoryDelegate.h>
1111
#import <React/RCTComponent.h>
12-
#import <react/renderer/components/RNMultInstanceSpec/EventEmitters.h>
12+
#import <react/renderer/components/RNSandboxSpec/EventEmitters.h>
1313

1414
NS_ASSUME_NONNULL_BEGIN
1515

packages/react-native-sandbox/ios/SandboxReactNativeViewComponentDescriptor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <React/RCTComponentViewDescriptor.h>
44
#include <react/renderer/core/ConcreteComponentDescriptor.h>
5-
#include "RNMultInstanceSpec.h"
5+
#include "RNSandboxSpec.h"
66

77
namespace facebook {
88
namespace react {

packages/react-native-sandbox/ios/SandboxReactNativeViewComponentView.mm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#import "SandboxReactNativeViewComponentView.h"
22

3-
#import <react/renderer/components/RNMultInstanceSpec/ComponentDescriptors.h>
4-
#import <react/renderer/components/RNMultInstanceSpec/EventEmitters.h>
5-
#import <react/renderer/components/RNMultInstanceSpec/Props.h>
6-
#import <react/renderer/components/RNMultInstanceSpec/RCTComponentViewHelpers.h>
3+
#import <react/renderer/components/RNSandboxSpec/ComponentDescriptors.h>
4+
#import <react/renderer/components/RNSandboxSpec/EventEmitters.h>
5+
#import <react/renderer/components/RNSandboxSpec/Props.h>
6+
#import <react/renderer/components/RNSandboxSpec/RCTComponentViewHelpers.h>
77

88
#import <React-RCTAppDelegate/RCTReactNativeFactory.h>
99
#import <React/RCTConversions.h>

packages/react-native-sandbox/package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
{
2-
"name": "react-native-sandbox",
2+
"name": "@callstack/react-native-sandbox",
33
"version": "0.0.1",
44
"description": "A component to run multiple React Native instances side-by-side.",
55
"main": "src/index.tsx",
6-
"files": ["src", "ios", "android", "specs", "react-native-sandbox.podspec"],
6+
"author": "Aliaksandr Babrykovich <aliaksandr.babrykovich@callstack.com>",
7+
"license": "MIT",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/callstackincubator/react-native-sandbox"
11+
},
12+
"homepage": "https://github.com/callstackincubator/react-native-sandbox#readme",
13+
"keywords": ["react-native", "security", "sandbox", "isolation"],
14+
"files": ["src", "ios", "android", "specs", "React-Sandbox.podspec"],
715
"scripts": {
816
"lint": "clang-format --dry-run --Werror ios/*.{h,mm}",
917
"format": "clang-format -i ios/*.{h,mm}"
@@ -13,11 +21,11 @@
1321
"react-native": "*"
1422
},
1523
"codegenConfig": {
16-
"name": "RNMultInstanceSpec",
24+
"name": "RNSandboxSpec",
1725
"type": "components",
1826
"jsSrcsDir": "specs",
1927
"android": {
20-
"javaPackageName": "ios.callstack.reactnativemultinstance"
28+
"javaPackageName": "io.callstack.rnsandbox"
2129
},
2230
"ios": {
2331
"componentProvider": {

0 commit comments

Comments
 (0)