downgrade types/node

This commit is contained in:
piotrpekala7 2020-06-30 13:41:43 +02:00
parent 38941c209b
commit 9215ab8e87
4 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@
"@sentry/electron": "^0.17.4",
"@types/jasmine": "^3.5.11",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.0.14",
"@types/node": "12.12.6",
"codelyzer": "^5.2.2",
"electron": "^7.1.2",
"electron-builder": "21.2.0",

View File

@ -1,7 +1,7 @@
<h1 mat-dialog-title>Add new template</h1>
<mat-horizontal-stepper [linear]="false" #stepper>
<mat-step [stepControl]="firstFormGroup">
<mat-step>
<ng-template matStepLabel>Please select how you want to create new template</ng-template>
<mat-radio-group class="radio-group">
@ -15,7 +15,7 @@
</div>
</mat-step>
<mat-step [stepControl]="secondFormGroup">
<mat-step>
<ng-template matStepLabel>{{actionTitle}}</ng-template>
<mat-card [hidden]="!(action==='install')">

View File

@ -5,6 +5,7 @@ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { enableDebugTools } from '@angular/platform-browser';
import '@angular/compiler';
if (environment.production) {
enableProdMode();

View File

@ -29,7 +29,6 @@
"./src/**/*",
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}