@planningcenter/chat-react-native 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ export declare function MyView(): React.JSX.Element;
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,wBAAgB,MAAM,sBAErB"}
package/build/index.js ADDED
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ // @ts-ignore
3
+ import { Text } from 'react-native';
4
+ export function MyView() {
5
+ return <Text>Hello from the first package changes more change!</Text>;
6
+ }
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,aAAa;AACb,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AAEpC,MAAM,UAAU,MAAM;IACpB,OAAO,CAAC,IAAI,CAAC,iDAAiD,EAAE,IAAI,CAAC,CAAC;AACxE,CAAC","sourcesContent":["import * as React from 'react';\n// @ts-ignore\nimport { Text } from 'react-native';\n\nexport function MyView() {\n return <Text>Hello from the first package changes more change!</Text>;\n}\n"]}
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@planningcenter/chat-react-native",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "build/index.js",
6
+ "types": "build/index.d.ts",
7
+ "sideEffects": false,
8
+ "scripts": {
9
+ "build": "expo-module build",
10
+ "clean": "expo-module clean",
11
+ "lint": "expo-module lint",
12
+ "test": "expo-module test",
13
+ "prepublishOnly": "expo-module prepublishOnly",
14
+ "postinstall": "yarn run build"
15
+ },
16
+ "dependencies": {},
17
+ "devDependencies": {
18
+ "expo-module-scripts": "^3.4.0"
19
+ }
20
+ }
package/src/index.tsx ADDED
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ // @ts-ignore
3
+ import { Text } from 'react-native';
4
+
5
+ export function MyView() {
6
+ return <Text>Hello from the first package changes more change!</Text>;
7
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ // @generated by expo-module-scripts
2
+ {
3
+ "extends": "expo-module-scripts/tsconfig.base",
4
+ "compilerOptions": {
5
+ "outDir": "./build"
6
+ },
7
+ "include": ["./src"],
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*"]
9
+ }