Skip to content

Commit

Permalink
Contributing
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Dec 1, 2016
1 parent 8febdf2 commit 8fb8e9e
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
## Table of contents

- [Installation](#installation)
- [Contributing](#contributing)
- [String](#String)
- [repeat](#repeat)
- [scan](#scan)
Expand Down Expand Up @@ -764,3 +765,35 @@ API: `number | isNotIdenticalTo: otherNumber`
<p>{{ 1 | isNotIdenticalTo: 2 }}</p> <!-- Output: "true" -->
<p>{{ 2 | isNotIdenticalTo: 1 }}</p> <!-- Output: "true" -->
```

## Contributing

* before adding any new feature or a fix make sure to open a ticket !

* Make sure you have `angular-cli` & `karma` installed globally.

```bash
$ npm install -g angular-cli
```

* Clone the project, and install dependencies.

```bash
$ git clone https://github.com/danrevah/ng2-pipes.git
$ npm install
```

* Create a new branch

```bash
$ git checkout -b feat/someFeature
```

* Add tests & make sure everything is running properly
```bash
$ npm test
```

* Commit & push, and make a pull request!


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-pipes",
"version": "0.4.17",
"version": "0.4.18",
"author": "Dan Revah",
"description": "Useful angular2 pipes",
"license": "MIT",
Expand Down

0 comments on commit 8fb8e9e

Please sign in to comment.