0.0.2 • Published 8 years ago

bf-ng-redux v0.0.2

Weekly downloads
3
License
ISC
Repository
gitlab
Last release
8 years ago

bf-ng-redux

An angular wrapper for Redux.

Getting started

Prerequisites

Your project and its dependencies require:

Change to Betfair's own internal npm repository

npm config set registry http://registry.npm.dev.betfair

Installation

  1. Go to the project's root directory:
cd bf-ng-redux/
  1. Install project dependencies:
npm install
  1. Install gulp globally (if not yet installed):
npm install -g gulp

Development

Create a dist version of the bundle, placed on the ./dist/ folder:

gulp dist

Release a new version of the module

  • Major release:
gulp release --type major
  • Minor release:
gulp release --type minor
  • Patch release:
gulp release --type patch

Using the module in your application

  1. Set the module as an application dependency by adding running this command:
npm install --save bf-ng-redux
  1. Add the module to the list of modules your application depends on:
angular.module('myApp', ['BF.Redux'])