Skip to content

Commit c95920d

Browse files
author
Mark Lagendijk
committed
Publish to npm
1 parent 5ce7d0f commit c95920d

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A service which makes it easy possible to have recursive Angular directives.
66
When an Angular directive calls itself, Angular gets into an endless loop. This service provides the logic needed to work around this.
77

88
## Installation
9-
1. `bower install angular-recursion`.
9+
1. `bower install angular-recursion --save` or `npm install angular-recursion --save`.
1010
2. Include `bower_components/angular-recursion/angular-recursion.min.js`.
1111
3. Add the `RecursionHelper` module as a dependency.
1212
4. Inject the `RecursionHelper` service and use it.

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "angular-recursion",
3+
"version": "1.0.5",
4+
"description": "An Angular service which helps with creating recursive directives.",
35
"main": "angular-recursion.js",
4-
"version": "1.0.4",
56
"homepage": "https://github.com/marklagendijk/angular-recursion",
67
"authors": [
78
"Mark Lagendijk <[email protected]>"
89
],
9-
"description": "An Angular service which helps with creating recursive directives.",
1010
"keywords": [
1111
"angular",
1212
"angular-service",

package.json

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2+
"name": "angular-recursion",
3+
"version": "1.0.5",
4+
"description": "An Angular service which helps with creating recursive directives.",
5+
"main": "angular-recursion.js",
26
"directories": {
37
"test": "test"
48
},
@@ -19,5 +23,23 @@
1923
"scripts": {
2024
"test": "gulp test",
2125
"minify": "gulp minify"
22-
}
26+
},
27+
"repository": {
28+
"type": "git",
29+
"url": "https://[email protected]/marklagendijk/angular-recursion.git"
30+
},
31+
"keywords": [
32+
"angular",
33+
"angular-service",
34+
"angular-recursion",
35+
"angular-recursion-helper",
36+
"recursion",
37+
"recursive"
38+
],
39+
"author": "Mark Lagendijk <[email protected]>",
40+
"license": "MIT",
41+
"bugs": {
42+
"url": "https://github.com/marklagendijk/angular-recursion/issues"
43+
},
44+
"homepage": "https://github.com/marklagendijk/angular-recursion"
2345
}

0 commit comments

Comments
 (0)