Skip to content

Commit 4a8b09b

Browse files
committed
Update NPM dependencies to the last versions
Also fix build errors
1 parent b05e5e8 commit 4a8b09b

8 files changed

+42
-33
lines changed

.jscsrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
"disallowSpacesInsideParentheses": true,
4646

4747

48-
"validateJSDoc": {
48+
"jsDoc": {
4949
"checkParamNames": true,
5050
"requireParamTypes": true
5151
},
5252

5353
"disallowNewlineBeforeBlockStatements": true
54-
}
54+
}

Gruntfile.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ module.exports = function (grunt) {
129129

130130
bump: {
131131
options: {
132-
files: ['package.json', 'bower.json'],
133-
commitFiles: ['package.json', 'bower.json'],
132+
files: ['package.json'],
133+
commitFiles: ['package.json'],
134134
tagName: '%VERSION%',
135135
pushTo: 'origin'
136136
}
@@ -155,4 +155,4 @@ module.exports = function (grunt) {
155155

156156
// Default task: does everything including UI tests
157157
grunt.registerTask('default', ['clean', 'check', 'build', 'karma:ci', 'e2e']);
158-
};
158+
};

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "angular-bootstrap-multiselect",
3-
"main": "dist/angular-bootstrap-multiselect.min.js",
3+
"main": "dist/angular-bootstrap-multiselect.js",
4+
"homepage": "http://bentorfs.github.io/angular-bootstrap-multiselect/",
45
"ignore": [
56
"src",
67
"test",

dist/angular-bootstrap-multiselect-templates.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ angular.module('btorfs.multiselect.templates', ['multiselect.html']);
33
angular.module("multiselect.html", []).run(["$templateCache", function($templateCache) {
44
$templateCache.put("multiselect.html",
55
"<div class=\"btn-group\" style=\"width: 100%\">\n" +
6-
" <button type=\"button\" class=\"form-control btn btn-default btn-block dropdown-toggle\" ng-click=\"toggleDropdown()\" ng-disabled=\"disabled\">\n" +
6+
" <button type=\"button\" class=\"btn btn-default btn-block dropdown-toggle\" ng-click=\"toggleDropdown()\" ng-disabled=\"disabled\">\n" +
77
" {{getButtonText()}}&nbsp;<span class=\"caret\"></span>\n" +
88
" </button>\n" +
99
" <ul class=\"dropdown-menu dropdown-menu-form\"\n" +
@@ -53,5 +53,6 @@ angular.module("multiselect.html", []).run(["$templateCache", function($template
5353
" </li>\n" +
5454
"\n" +
5555
" </ul>\n" +
56-
"</div>");
56+
"</div>\n" +
57+
"");
5758
}]);

dist/angular-bootstrap-multiselect.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ angular.module('btorfs.multiselect.templates', ['multiselect.html']);
236236
angular.module("multiselect.html", []).run(["$templateCache", function($templateCache) {
237237
$templateCache.put("multiselect.html",
238238
"<div class=\"btn-group\" style=\"width: 100%\">\n" +
239-
" <button type=\"button\" class=\"form-control btn btn-default btn-block dropdown-toggle\" ng-click=\"toggleDropdown()\" ng-disabled=\"disabled\">\n" +
239+
" <button type=\"button\" class=\"btn btn-default btn-block dropdown-toggle\" ng-click=\"toggleDropdown()\" ng-disabled=\"disabled\">\n" +
240240
" {{getButtonText()}}&nbsp;<span class=\"caret\"></span>\n" +
241241
" </button>\n" +
242242
" <ul class=\"dropdown-menu dropdown-menu-form\"\n" +
@@ -286,5 +286,6 @@ angular.module("multiselect.html", []).run(["$templateCache", function($template
286286
" </li>\n" +
287287
"\n" +
288288
" </ul>\n" +
289-
"</div>");
289+
"</div>\n" +
290+
"");
290291
}]);

dist/angular-bootstrap-multiselect.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+26-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,35 @@
11
{
22
"name": "angular-bootstrap-multiselect",
33
"version": "1.1.5",
4+
"homepage": "http://bentorfs.github.io/angular-bootstrap-multiselect/",
5+
"license": "MIT",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/bentorfs/angular-bootstrap-multiselect.git"
9+
},
410
"devDependencies": {
5-
"grunt": "~0.4.5",
6-
"grunt-bootlint": "~0.5.3",
11+
"grunt": "~1.0.1",
12+
"grunt-bootlint": "~0.10.1",
713
"grunt-bump": "~0.8.0",
8-
"grunt-contrib-clean": "~0.5.0",
9-
"grunt-contrib-concat": "~0.4.0",
10-
"grunt-contrib-connect": "^0.9.0",
11-
"grunt-contrib-copy": "~0.6.0",
12-
"grunt-contrib-jshint": "~0.10.0",
13-
"grunt-contrib-nodeunit": "~0.4.1",
14-
"grunt-contrib-uglify": "~0.5.0",
15-
"grunt-contrib-watch": "~0.6.1",
16-
"grunt-html2js": "~0.2.9",
17-
"grunt-jscs": "~0.6.0",
18-
"grunt-karma": "~0.9.0",
19-
"grunt-maven-tasks": "~1.3.1",
14+
"grunt-contrib-clean": "~1.0.0",
15+
"grunt-contrib-concat": "~1.0.1",
16+
"grunt-contrib-connect": "~1.0.2",
17+
"grunt-contrib-copy": "~1.0.0",
18+
"grunt-contrib-jshint": "~1.1.0",
19+
"grunt-contrib-nodeunit": "~1.0.0",
20+
"grunt-contrib-uglify": "~2.0.0",
21+
"grunt-contrib-watch": "~1.0.0",
22+
"grunt-html2js": "~0.3.6",
23+
"grunt-jscs": "~3.0.1",
24+
"grunt-karma": "~2.0.0",
25+
"grunt-maven-tasks": "~1.4.0",
2026
"grunt-ng-annotate": "~3.0.0",
21-
"grunt-protractor-runner": "~1.1.4",
22-
"karma": "~0.12.25",
23-
"karma-chrome-launcher": "~0.1.2",
24-
"karma-jasmine": "~0.2.2",
25-
"karma-phantomjs-launcher": "~0.1.4",
26-
"protractor": "~1.5.0",
27+
"grunt-protractor-runner": "~4.0.0",
28+
"karma": "~1.3.0",
29+
"karma-chrome-launcher": "~2.0.0",
30+
"karma-jasmine": "~1.1.0",
31+
"karma-phantomjs-launcher": "~1.0.2",
32+
"protractor": "~4.0.13",
2733
"protractor-screenshot-reporter": "0.0.5"
2834
},
2935
"scripts": {

src/multiselect.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="btn-group" style="width: 100%">
2-
<button type="button" class="form-control btn btn-default btn-block dropdown-toggle" ng-click="toggleDropdown()" ng-disabled="disabled">
2+
<button type="button" class="btn btn-default btn-block dropdown-toggle" ng-click="toggleDropdown()" ng-disabled="disabled">
33
{{getButtonText()}}&nbsp;<span class="caret"></span>
44
</button>
55
<ul class="dropdown-menu dropdown-menu-form"
@@ -49,4 +49,4 @@
4949
</li>
5050

5151
</ul>
52-
</div>
52+
</div>

0 commit comments

Comments
 (0)