0.1.1 • Published 7 years ago

@skill-lock/ngx.core v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

@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.core

Register 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 install

Building the code

gulp build

In order to view all other tasks invoke gulp or check the gulp tasks directly.

Running the tests

gulp test

Development utils

Trigger gulp watch

Handles compiling of changes.

gulp watch

Running Continuous Tests

Spawns test runner and keep watching for changes.

gulp tdd

Preparation for Release

gulp prepare-release --bump major|minor|patch|prerelease (default: patch) --version-suffix beta (default: rc - only applies to prerelease)