Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 0897da2

Browse files
committed
Exclude src from bower, update readme
1 parent f8b1727 commit 0897da2

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@ var myApp = angular.module('myApp', ['ngNumeraljs']);
2626
</p>
2727
```
2828

29+
## Bower
30+
31+
This filter can be installed via Bower with the following dependency in the `bower.json` file.
32+
33+
"dependencies": {
34+
"angular-numeraljs": "^1.0"
35+
}
36+
2937
## Building
3038

3139
1. Install [Grunt CLI](http://gruntjs.com/getting-started) and [Node.js](http://nodejs.org/)

bower.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-numeraljs",
33
"author": "Dave Bauman",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"license": "MIT",
66
"main": ["./dist/angular-numeraljs.js"],
77
"repository": {
@@ -18,6 +18,7 @@
1818
"angularjs"
1919
],
2020
"ignore": [
21+
"src",
2122
"test",
2223
"bower_components",
2324
"bower.json",

dist/angular-numeraljs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* AngularJS filter for Numeral.js: number formatting as a filter
3-
* @version v1.0.0 - 2014-08-21
3+
* @version v1.0.1 - 2014-08-21
44
* @link https://github.com/baumandm/angular-numeraljs
55
* @author Dave Bauman <baumandm@gmail.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT

dist/angular-numeraljs.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* AngularJS filter for Numeral.js: number formatting as a filter
3-
* @version v1.0.0 - 2014-08-21
3+
* @version v1.0.1 - 2014-08-21
44
* @link https://github.com/baumandm/angular-numeraljs
55
* @author Dave Bauman <baumandm@gmail.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-numeraljs",
33
"description": "AngularJS filter for Numeral.js: number formatting as a filter",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://github.com/baumandm/angular-numeraljs",
66
"author": "Dave Bauman <baumandm@gmail.com>",
77
"repository": {

0 commit comments

Comments
 (0)