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