Skip to content

Commit fba134f

Browse files
committed
common files update across projects
1 parent 7548fc0 commit fba134f

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

.bithoundrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"ignore": [
3+
"test/**/*.js",
4+
"build/**/*.js"
5+
]
6+
}

.codeclimate.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ engines:
33
enabled: true
44
fixme:
55
enabled: true
6-
duplication:
7-
enabled: true
8-
config:
9-
languages:
10-
javascript:
11-
mass_threshold: 200
126
ratings:
137
paths:
148
- angular-web-notification.js

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.idea
2-
bower_components
2+
target
3+
.temp
34
node_modules
45
npm-debug.log
5-
target
6+
bower_components

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ See full docs at: [API Docs](docs/api.md)
9797

9898
| Date | Version | Description |
9999
| ----------- | ------- | ----------- |
100-
| 2015-12-13 | v0.0.50 | Maintenance |
100+
| 2015-12-13 | v0.0.51 | Maintenance |
101101
| 2015-09-26 | v0.0.31 | Update bower dependencies |
102102
| 2015-09-26 | v0.0.30 | Added 'onClick' option to enable adding onclick event handler for the notification |
103103
| 2015-09-02 | v0.0.29 | Maintenance |

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-web-notification",
3-
"version": "0.0.50",
3+
"version": "0.0.51",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <[email protected]>"

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"lint": "grunt lint",
3333
"docs": "grunt docs",
3434
"build": "grunt build",
35-
"prepush": "npm run build"
35+
"prepush": "npm run build",
36+
"synclibs": "npm install && npm update"
3637
},
3738
"devDependencies": {
3839
"grunt": "latest",

0 commit comments

Comments
 (0)