Skip to content

Commit

Permalink
Updated contributors file, created a changelog, updated dev dependenc…
Browse files Browse the repository at this point in the history
…ies, ensured the default grunt task lints, tests and watches.
  • Loading branch information
dwmkerr committed Oct 19, 2014
1 parent 5475a4c commit 36b5ab2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## v0.4

### Features

* The modal can now be added to any specific element in the DOM. If
unspecified, the modal is added to the `body`, as before.
Thanks [cointilt](https://github.com/cointilt)!
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');

grunt.registerTask('default', ['jshint', 'karma:silent', 'watch']);
grunt.registerTask('dev', ['jshint', 'karma:silent', 'watch']);
grunt.registerTask('release', ['uglify', 'copy']);
};
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,5 @@ Thanks

Thanks go the the following contributors:

[joshvillbrandt](https://github.com/joshvillbrandt) - Adding support for `$templateCache`.
[joshvillbrandt](https://github.com/joshvillbrandt) - Adding support for `$templateCache`.
[cointilt](https://github.com/cointilt) - Allowing the modal to be added to a custom element, not just the body.
3 changes: 2 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-modal-service",
"version": "0.3.0",
"version": "0.4.0",
"homepage": "https://github.com/dwmkerr/angular-modal-service",
"authors": [
"Dave Kerr (github.com/dwmkerr)"
Expand All @@ -26,6 +26,7 @@
"*.json",
"server.js",
"Gruntfile.js",
"CHANGELOG.md",
"*.yml"
],
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion dst/angular-modal-service.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-modal-service",
"version": "0.3.0",
"version": "0.4.0",
"description": "AngularJS Service for showing Modals and Popups",
"main": "server.js",
"scripts": {
Expand All @@ -26,7 +26,7 @@
"devDependencies": {
"express": "^4.4.0",
"grunt": "~0.4.5",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-uglify": "~0.6",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-watch": "~0.6.1",
"karma": "~0.12.16",
Expand All @@ -35,8 +35,8 @@
"karma-phantomjs-launcher": "^0.1.4",
"karma-chrome-launcher": "^0.1.3",
"karma-junit-reporter": "~0.2.2",
"grunt-karma": "~0.8.3",
"grunt-contrib-copy": "~0.5.0",
"grunt-karma": "~0.9",
"grunt-contrib-copy": "~0.7",
"coveralls": "^2.10.0"
}
}

0 comments on commit 36b5ab2

Please sign in to comment.