angular-front-mock-center

To install this library, run:

Usage no npm install needed!

<script type="module">
  import angularFrontMockCenter from 'https://cdn.skypack.dev/angular-front-mock-center';
</script>

README

angular-front-mock-center

Installation

To install this library, run:

$ npm install @valur/angular-front-mock-center --save

Consuming your library

Once you have published your library to npm, you can import your library in any Angular application by running:

$ npm install angular-front-mock-center

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { EscolherSaborComponent, EscolherTamanhoComponent, ResumeComponent } from '@valur/angular-front-mock-center';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    EscolherSaborComponent,
    EscolherTamanhoComponent,
    ResumeComponent
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

MIT © Roberto Marinho Fernandes