Skip to content

Commit 7c70b54

Browse files
committed
feat(release): cut the v2.0.0-beta.4 release
1 parent 8d13569 commit 7c70b54

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1373
-120
lines changed

Gruntfile.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,8 @@ module.exports = function (grunt) {
389389
test: {
390390
options: {
391391
module: function(src) { return 'mgcrea.ngStrap.' + src.match(/src\/(.+)\/.*/)[1]; },
392-
url: function(url) { return url.replace('src/', ''); }
392+
url: function(url) { return url.replace('src/', ''); },
393+
htmlmin: { collapseWhitespace: true }
393394
},
394395
files: [{
395396
expand: true,
@@ -404,6 +405,7 @@ module.exports = function (grunt) {
404405
options: {
405406
module: function(src) { return 'mgcrea.ngStrap.' + src.match(/src\/(.+)\/.*/)[1]; },
406407
url: function(url) { return url.replace('src/', ''); },
408+
htmlmin: { collapseWhitespace: true },
407409
usemin: 'scripts/angular-strap.tpl.min.js' // docs
408410
},
409411
files: [{

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ While it worked pretty well, it required a big javascript payload: both jQuery &
2121

2222
>
2323
``` html
24-
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.6/angular.min.js"></script>
24+
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js"></script>
2525
<script src="//rawgithub.com/mgcrea/angular-strap/master/dist/angular-strap.min.js"></script>
26+
<script src="//rawgithub.com/mgcrea/angular-strap/master/dist/angular-strap.tpl.min.js"></script>
2627
```
2728

2829
+ Inject the `ngStrap` module into your app

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-strap",
33
"description": "AngularStrap - AngularJS directives for Twitter Bootstrap",
4-
"version": "2.0.0-beta.3",
4+
"version": "2.0.0-beta.4",
55
"main": "dist/angular-strap.min.js",
66
"dependencies": {
77
"angular": "~1.2.9",

0 commit comments

Comments
 (0)