Skip to content

Commit

Permalink
Updated contributor list with guys from recent PRs, automated the bow…
Browse files Browse the repository at this point in the history
…er install step as a post-install script.
  • Loading branch information
dwmkerr committed Jun 10, 2016
1 parent 18003d6 commit fdd14f7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.6.11

* Robustness for 'locationChangeEvent'.
* Robustness if the body element changs.
* Addded `bower` as a dev dependency. Run `bower install` as an `npm` `postinstall` step, which makes initial setup on a clean machine slightly easier.

## v0.6.10

* Added support for using a custom parent scope for the controller scope, via the `scope` option.
Expand Down Expand Up @@ -42,4 +48,4 @@

* 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)!
Thanks [cointilt](https://github.com/cointilt)!
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ To work with the code, just run:

```
npm install
bower install
gulp
```

Expand Down Expand Up @@ -308,3 +307,5 @@ Thanks go the the following contributors:
* [poporul](https://github.com/poporul) - Improving the core logic around compilation and inputs.
* [jonasnas](https://github.com/jonasnas) - Fixing template cache logic.
* [maxdow](https://github.com/maxdow) - Added support for controller inlining.
* [kernowjoe](https://github.com/kernowjoe) - Robustness around locationChange
* [arthur-xavier](https://github.com/arthur-xavier) - Robustness when `body` element changes.
3 changes: 0 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,5 @@
"angular-mocks": "~1.4.x",
"bootstrap": "~3.3.2",
"jquery": "~2.1.3"
},
"resolutions": {
"angular": "1.4.9"
}
}
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ gulp.task('watch', function() {
// The default task sets up the vendor files, builds, serves and watches.
gulp.task('default', ['vendor', 'js', 'serve', 'livereload', 'watch'], function() {
opn('http://localhost:3000');
});
});
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"scripts": {
"test": "gulp test",
"test-debug": "./node_modules/.bin/karma start ./test/karma.config.js --no-single-run --browsers Chrome",
"coveralls": "cp build/coverage/PhantomJS*/lcov.info lcov.info && node node_modules/coveralls/bin/coveralls.js < lcov.info"
"coveralls": "cp build/coverage/PhantomJS*/lcov.info lcov.info && node node_modules/coveralls/bin/coveralls.js < lcov.info",
"postinstall": "bower install"
},
"repository": {
"type": "git",
Expand All @@ -25,6 +26,7 @@
},
"homepage": "https://github.com/dwmkerr/angular-modal-service",
"devDependencies": {
"bower": "^1.7.9",
"connect-livereload": "^0.5.3",
"coveralls": "^2.10.0",
"express": "^4.12.0",
Expand All @@ -35,6 +37,7 @@
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.1.0",
"jasmine-core": "^2.4.1",
"jshint-stylish": "^2.0.0",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
Expand Down

0 comments on commit fdd14f7

Please sign in to comment.