openvidu-library-angular updated to Angular 9
This commit is contained in:
parent
7eaa2ef1b2
commit
bf31086641
@ -13,6 +13,7 @@
|
||||
"build": {
|
||||
"builder": "@angular-devkit/build-angular:browser",
|
||||
"options": {
|
||||
"aot": true,
|
||||
"outputPath": "dist/openvidu-angular-library",
|
||||
"index": "src/index.html",
|
||||
"main": "src/main.ts",
|
||||
@ -29,6 +30,12 @@
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"budgets": [
|
||||
{
|
||||
"type": "anyComponentStyle",
|
||||
"maximumWarning": "6kb"
|
||||
}
|
||||
],
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "src/environments/environment.ts",
|
||||
|
||||
3552
openvidu-library-angular/package-lock.json
generated
3552
openvidu-library-angular/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -11,39 +11,39 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "8.2.14",
|
||||
"@angular/common": "8.2.14",
|
||||
"@angular/compiler": "8.2.14",
|
||||
"@angular/core": "8.2.14",
|
||||
"@angular/forms": "8.2.14",
|
||||
"@angular/platform-browser": "8.2.14",
|
||||
"@angular/platform-browser-dynamic": "8.2.14",
|
||||
"@angular/router": "8.2.14",
|
||||
"core-js": "3.3.2",
|
||||
"@angular/animations": "9.0.6",
|
||||
"@angular/common": "9.0.6",
|
||||
"@angular/compiler": "9.0.6",
|
||||
"@angular/core": "9.0.6",
|
||||
"@angular/forms": "9.0.6",
|
||||
"@angular/platform-browser": "9.0.6",
|
||||
"@angular/platform-browser-dynamic": "9.0.6",
|
||||
"@angular/router": "9.0.6",
|
||||
"core-js": "3.6.4",
|
||||
"openvidu-angular": "2.12.0",
|
||||
"rxjs": "6.5.3",
|
||||
"tslib": "1.10.0",
|
||||
"rxjs": "6.5.4",
|
||||
"tslib": "1.11.1",
|
||||
"zone.js": "0.10.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "0.803.25",
|
||||
"@angular/cli": "8.3.25",
|
||||
"@angular/compiler-cli": "8.2.14",
|
||||
"@angular/language-service": "8.2.14",
|
||||
"@types/node": "12.11.1",
|
||||
"@types/jasmine": "3.4.4",
|
||||
"@angular-devkit/build-angular": "0.900.6",
|
||||
"@angular/cli": "9.0.6",
|
||||
"@angular/compiler-cli": "9.0.6",
|
||||
"@angular/language-service": "9.0.6",
|
||||
"@types/node": "13.9.1",
|
||||
"@types/jasmine": "3.5.9",
|
||||
"@types/jasminewd2": "2.0.8",
|
||||
"codelyzer": "5.1.2",
|
||||
"codelyzer": "5.2.1",
|
||||
"jasmine-core": "3.5.0",
|
||||
"jasmine-spec-reporter": "4.2.1",
|
||||
"karma": "4.4.0",
|
||||
"karma": "4.4.1",
|
||||
"karma-chrome-launcher": "3.1.0",
|
||||
"karma-coverage-istanbul-reporter": "2.1.0",
|
||||
"karma-jasmine": "2.0.1",
|
||||
"karma-jasmine-html-reporter": "1.4.2",
|
||||
"protractor": "5.4.2",
|
||||
"ts-node": "8.4.1",
|
||||
"tslint": "5.20.0",
|
||||
"typescript": "3.5.3"
|
||||
"karma-coverage-istanbul-reporter": "2.1.1",
|
||||
"karma-jasmine": "3.1.1",
|
||||
"karma-jasmine-html-reporter": "1.5.2",
|
||||
"protractor": "5.4.3",
|
||||
"ts-node": "8.6.2",
|
||||
"tslint": "6.1.0",
|
||||
"typescript": "3.7.5"
|
||||
}
|
||||
}
|
||||
|
||||
@ -24,7 +24,7 @@ export class AppComponent {
|
||||
ovLayout: OpenViduLayout;
|
||||
ovLayoutOptions: OpenViduLayoutOptions;
|
||||
|
||||
@ViewChild('ovSessionComponent', { static: false })
|
||||
@ViewChild('ovSessionComponent')
|
||||
public ovSessionComponent: OpenviduSessionComponent;
|
||||
|
||||
constructor(private httpClient: HttpClient) { }
|
||||
|
||||
@ -2,11 +2,13 @@
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/app",
|
||||
"module": "es2015",
|
||||
"types": []
|
||||
},
|
||||
"exclude": [
|
||||
"src/test.ts",
|
||||
"**/*.spec.ts"
|
||||
"files": [
|
||||
"main.ts",
|
||||
"polyfills.ts"
|
||||
],
|
||||
"include": [
|
||||
"src/**/*.d.ts"
|
||||
]
|
||||
}
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/spec",
|
||||
"module": "commonjs",
|
||||
"types": [
|
||||
"jasmine",
|
||||
"node"
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"module": "esnext",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user