@placetime/corptime-conference 0.0.1 → 0.0.2
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.
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
## Installation
|
|
5
5
|
Inside your project, run;
|
|
6
6
|
```console
|
|
7
|
-
npm i @
|
|
7
|
+
npm i @placetime/corptime-conference
|
|
8
8
|
```
|
|
9
9
|
If there are conflicts, you can use ```--force```
|
|
10
10
|
<br/>Additionally, if not already installed, some dependencies will need to be added.
|
package/jitsi-meet-rnsdk.podspec
CHANGED
|
@@ -3,7 +3,7 @@ require 'json'
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
4
|
|
|
5
5
|
Pod::Spec.new do |s|
|
|
6
|
-
s.name =
|
|
6
|
+
s.name = package["name"]
|
|
7
7
|
s.version = package['version']
|
|
8
8
|
s.summary = package['description']
|
|
9
9
|
s.description = package['description']
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@ import { AbstractApp, IProps as AbstractAppProps } from './AbstractApp';
|
|
|
23
23
|
import '../middlewares.native';
|
|
24
24
|
import '../reducers.native';
|
|
25
25
|
|
|
26
|
-
import { setRoomNameGlobal } from '
|
|
26
|
+
import { setRoomNameGlobal } from '../../app/actions.native';
|
|
27
27
|
|
|
28
28
|
declare let __DEV__: any;
|
|
29
29
|
|