Fix: name typo in package.json

This commit is contained in:
Lorenzo Iovino 2019-02-05 02:01:20 +01:00
parent f099d59838
commit e006cbbe4c
5 changed files with 171 additions and 101 deletions

View file

@ -6478,6 +6478,11 @@
"integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==",
"dev": true
},
"ng2-fittext": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/ng2-fittext/-/ng2-fittext-1.2.0.tgz",
"integrity": "sha512-4QB+R1rYVZGTYcHCLDcaI6Lbtva7ZNiBlWvYUmAMQN3K6u7VmPrfJcErKuZiMrkTRPa99kVshnx3Sv/SyA6qMQ=="
},
"nice-try": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",

View file

@ -21,6 +21,7 @@
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/router": "^6.0.0",
"core-js": "^2.5.4",
"ng2-fittext": "^1.2.0",
"zone.js": "^0.8.26"
},
"devDependencies": {

View file

@ -1,15 +1,15 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {Ng2FittextDirective} from './ng2-fittext.directive';
import {Ng2FittextModule} from 'ng2-fittext';
@NgModule({
declarations: [
AppComponent,
Ng2FittextDirective
AppComponent
],
imports: [
BrowserModule
BrowserModule,
Ng2FittextModule
],
providers: [],
bootstrap: [AppComponent]