Fix: name typo in package.json

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

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]