Skip to content

Commit 1fe6597

Browse files
committed
update build
1 parent 5025091 commit 1fe6597

File tree

7 files changed

+14
-5
lines changed

7 files changed

+14
-5
lines changed

.bithoundrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
},
1010
"ignore": [
1111
"Gruntfile.js",
12+
".eslintrc.js",
13+
"stylelint.config.js",
1214
"test/**/*.js",
1315
"project/**/*.js",
1416
"example/**/*.js",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
108108

109109
| Date | Version | Description |
110110
| ----------- | ------- | ----------- |
111-
| 2016-12-14 | v1.0.22 | Maintenance |
111+
| 2016-12-16 | v1.0.23 | Maintenance |
112112
| 2016-11-23 | v1.0.19 | Use forked version of html5-desktop-notifications in order to resolve few issues |
113113
| 2016-11-19 | v1.0.18 | Maintenance |
114114
| 2016-11-04 | v1.0.16 | Upgrading to html5-desktop-notifications 3.0.0 |

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": "1.0.22",
3+
"version": "1.0.23",
44
"description": "AngularJS service for displaying web notifications.",
55
"authors": [
66
"Sagie Gur-Ari <[email protected]>"

docs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3-
| 2016-12-14 | v1.0.22 | Maintenance |
3+
| 2016-12-16 | v1.0.23 | Maintenance |
44
| 2016-11-23 | v1.0.19 | Use forked version of html5-desktop-notifications in order to resolve few issues |
55
| 2016-11-19 | v1.0.18 | Maintenance |
66
| 2016-11-04 | v1.0.16 | Upgrading to html5-desktop-notifications 3.0.0 |

inch.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
"tasks/**/*.js"
77
],
88
"excluded": [
9-
"**/Gruntfile.js"
9+
"**/Gruntfile.js",
10+
"**/.eslintrc.js",
11+
"**/stylelint.config.js"
1012
]
1113
}
1214
}

package.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": "1.0.22",
3+
"version": "1.0.23",
44
"description": "AngularJS service for displaying web notifications.",
55
"author": {
66
"name": "Sagie Gur-Ari",

stylelint.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
var commons = require('js-project-commons');
4+
5+
module.exports = commons.lint.stylelint;

0 commit comments

Comments
 (0)