Skip to content

Commit d065b7d

Browse files
authored
Merge pull request #2 from NillAppSL/NillAppSL-patch-1
Feature: update version and change readme
2 parents 79d35d4 + c592ac4 commit d065b7d

File tree

7 files changed

+1727
-11
lines changed

7 files changed

+1727
-11
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ Docs and guides at [https://docs.nillapp.com/kitrtc](https://docs.nillapp.com/ki
4646

4747
[Slack](https://join.slack.com/t/kitrtc-webrtc/shared_invite/zt-279e5jjbm-yFxQZl~ymHsZM8vXUXXBzg)
4848

49+
[Github Official / Support](https://github.com/NillAppSL/kitrtc)
50+
4951
## Installation
5052

5153

@@ -61,7 +63,7 @@ Import service and components from the package in app.module.ts:
6163

6264
```typescript
6365
//Import service and module
64-
import { KitRtc, KitRtcModule } from 'KitRtcJs';
66+
import { KitRtc, KitRtcModule } from 'kitrtcjs';
6567

6668
@NgModule({
6769
...
@@ -84,7 +86,7 @@ import { KitRtc, KitRtcModule } from 'KitRtcJs';
8486
Examples below are in TypeScript, if using JS/CommonJS imports replace import with:
8587

8688
```typescript
87-
import { KitRtc } from 'KitRtcJs';
89+
import { KitRtc } from 'kitrtcjs';
8890

8991
...
9092
//For test purposes in development environment

esm2022/kitrtcjs.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/**
2+
* Generated bundle index. Do not edit.
3+
*/
4+
export * from './public-api';
5+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0cnRjanMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9wcm9qZWN0cy9tZWRpYWtpdGFwcGpzL3NyYy9raXRydGNqcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19

fesm2022/kitrtcjs.mjs

Lines changed: 1703 additions & 0 deletions
Large diffs are not rendered by default.

fesm2022/kitrtcjs.mjs.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
22
* Generated bundle index. Do not edit.
33
*/
4-
/// <amd-module name="KitRtcJs" />
4+
/// <amd-module name="kitrtcjs" />
55
export * from './public-api';

lib/components/participants/local-participant/local-participant.component.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export declare class LocalParticipantComponent {
44
kitRtc: KitRtc;
55
_kitRtc: KitRtc;
66
constructor(kitRtc: KitRtc);
7-
get localParticipant(): import("KitRtcJs").Participant;
7+
get localParticipant(): import("kitrtcjs").Participant;
88
static ɵfac: i0.ɵɵFactoryDeclaration<LocalParticipantComponent, never>;
99
static ɵcmp: i0.ɵɵComponentDeclaration<LocalParticipantComponent, "kitrtc-local-participant", never, {}, {}, never, never, false, never>;
1010
}

package.json

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
{
2-
"name": "KitRtcJs",
3-
"description": "KitRtc JS Client SDK - 0.0.1",
4-
"version": "0.0.1",
2+
"name": "kitrtcjs",
3+
"description": "KitRTC JS Client SDK - 0.0.4",
4+
"version": "0.0.4",
55
"author": {
66
"name": "Nill App Envolved, S.L",
77
"email": "contacto@nillapp.com",
88
"url": "https://www.nillapp.com"
99
},
1010
"license": "Apache-2.0",
11+
"homepage": "https://www.nillapp.com",
12+
"repository": {
13+
"type": "git",
14+
"url": "https://github.com/NillAppSL/kitrtc"
15+
},
1116
"keywords": [
1217
"kitrtc",
1318
"webrtc",
@@ -23,17 +28,17 @@
2328
"tslib": "^2.3.0"
2429
},
2530
"sideEffects": false,
26-
"module": "fesm2022/KitRtcJs.mjs",
31+
"module": "fesm2022/kitrtcjs.mjs",
2732
"typings": "index.d.ts",
2833
"exports": {
2934
"./package.json": {
3035
"default": "./package.json"
3136
},
3237
".": {
3338
"types": "./index.d.ts",
34-
"esm2022": "./esm2022/KitRtcJs.mjs",
35-
"esm": "./esm2022/KitRtcJs.mjs",
36-
"default": "./fesm2022/KitRtcJs.mjs"
39+
"esm2022": "./esm2022/kitrtcjs.mjs",
40+
"esm": "./esm2022/kitrtcjs.mjs",
41+
"default": "./fesm2022/kitrtcjs.mjs"
3742
}
3843
}
3944
}

0 commit comments

Comments
 (0)