Skip to content

Commit

Permalink
extending build
Browse files Browse the repository at this point in the history
  • Loading branch information
sagiegurari committed May 31, 2016
1 parent f8bb28e commit 9eb5f58
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ See [contributing guide](.github/CONTRIBUTING.md)

| Date | Version | Description |
| ----------- | ------- | ----------- |
| 2016-05-28 | v0.0.72 | Maintenance |
| 2016-05-31 | v0.0.73 | Maintenance |
| 2016-03-08 | v0.0.65 | Added webNotification.permissionGranted attribute |
| 2016-02-24 | v0.0.64 | Maintenance |
| 2015-09-26 | v0.0.31 | Update bower dependencies |
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-web-notification",
"version": "0.0.72",
"version": "0.0.73",
"description": "AngularJS service for displaying web notifications.",
"authors": [
"Sagie Gur-Ari <sagiegurari@gmail.com>"
Expand Down
2 changes: 2 additions & 0 deletions project/build/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@ module.exports = function (grunt) {
'jsdoc2md:api'
]);

grunt.registerTask('empty', 'Empty Task', []);

return {};
};
9 changes: 9 additions & 0 deletions project/build/project.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

module.exports = function (grunt) {
grunt.registerTask('integration-test', 'Run integration tests', [
'empty'
]);

return {};
};
10 changes: 7 additions & 3 deletions project/build/top-level.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,21 @@ module.exports = function (grunt) {
'cleanup'
]);

grunt.registerTask('coverage-ci', 'Test for continues integration.', [
grunt.registerTask('coverage', 'Test for standalone builds.', [
'coverage-prepare',
'karma:full',
'integration-test'
]);

grunt.registerTask('coverage-ci', 'Test for continues integration.', [
'coverage',
'coveralls:full'
]);

grunt.registerTask('build', 'Run all build steps.', [
'lint',
'docs',
'coverage-prepare',
'karma:full'
'coverage'
]);

return {};
Expand Down

0 comments on commit 9eb5f58

Please sign in to comment.