Skip to content

Commit fe3ce2b

Browse files
committed
chore(Build): Allow AngularJS 1.3.x as dependency
For some reason Bower won't install 1.3.x when the version spec says '>=1.2.16 <=1.3.x'. It installs 1.2.28 instead. This change explicitly states 1.3.14 as the latest allowable. Closes #3865
1 parent e9a6d4e commit fe3ce2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/grunt/plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ module.exports = function(grunt) {
296296
"main": releaseFiles,
297297
"ignore": [],
298298
"dependencies": {
299-
"angular": ">=1.2.16 <=1.3.x"
299+
"angular": ">=1.2.16 <=1.3.16" // Note: bower will install 1.2.28 when <=1.3.x is specified...
300300
},
301301
"homepage": "http://ui-grid.info"
302302
};

0 commit comments

Comments
 (0)