Package Exports
- @raphy/ngx-equalizer
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@raphy/ngx-equalizer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ngx-equalizer
A library to equalize height and width of elements with Angular4+
Table of contents
Installation
npm install --save ngx-equalizerOnce installed you need to import our main module:
import { EqualizerModule } from 'ngx-equalizer';The only remaining part is to list the imported module in your application module.
@NgModule({
declarations: [AppComponent, ...],
imports: [EqualizerModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}Contributing
- Before adding any new feature or a fix make sure to open an issue first!
Make sure you have angular-cli & karma installed globally.
$ npm install -g angular-cli karmaClone the project, and install dependencies.
$ git clone https://github.com/raphy/ngx-equalizer.git
$ npm installCreate a new branch
$ git checkout -b feat/someFeatureAdd tests & make sure everything is running properly
$ npm testCommit & push, and make a pull request!