@skill-lock/ngx.core
v0.1.1
Published
Skill Lock NGX Core
Readme
@skill-lock/ngx.core
A library that consists of pipes, utilities and services to help you with development
Getting Started
Installation
npm install @skill-lock/ngx.coreRegister module
import { CoreModule } from "@skill-lock/ngx.core";
@NgModule({
imports: [
CoreModule
]
})
export class AppModule {
}Contributing to the project
Install Dependencies
The following process need to be executed in order to get started.
npm installBuilding the code
gulp buildIn order to view all other tasks invoke gulp or check the gulp tasks directly.
Running the tests
gulp testDevelopment utils
Trigger gulp watch
Handles compiling of changes.
gulp watchRunning Continuous Tests
Spawns test runner and keep watching for changes.
gulp tddPreparation for Release
gulp prepare-release --bump major|minor|patch|prerelease (default: patch) --version-suffix beta (default: rc - only applies to prerelease)