Skip to content

Commit 2ad8f7f

Browse files
committed
Merge pull request #3618 from thvd/master
Allow users to use Ui-Grid with Angular Version 1.3.x
2 parents 15ee480 + fce8f0f commit 2ad8f7f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/grunt/plugins.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var reader = require('../../node_modules/grunt-ngdocs/src/reader.js');
1111
module.exports = function(grunt) {
1212

1313
/*
14-
*
14+
*
1515
* Create tasks
1616
*
1717
*/
@@ -125,7 +125,7 @@ module.exports = function(grunt) {
125125
dir: 'coverage',
126126
subdir: '.'
127127
});
128-
128+
129129
grunt.task.run('karma:' + latest);
130130
});
131131

@@ -215,7 +215,7 @@ module.exports = function(grunt) {
215215
grunt.log.writeln("TAG: " + tag);
216216
releaseDir = path.join(file.dest, tag);
217217
}
218-
218+
219219
file.src.forEach(function (f) {
220220
var oldFileName = path.basename(f);
221221
var ext = path.extname(f);
@@ -272,7 +272,7 @@ module.exports = function(grunt) {
272272
}
273273
});
274274
});
275-
275+
276276
done();
277277
});
278278

@@ -296,7 +296,7 @@ module.exports = function(grunt) {
296296
// done();
297297
// });
298298
// });
299-
299+
300300
// Create the bower.json file
301301
grunt.registerTask('update-bower-json', function () {
302302
var currentTag = semver.clean( util.getCurrentTag() );
@@ -318,7 +318,7 @@ module.exports = function(grunt) {
318318
"main": releaseFiles,
319319
"ignore": [],
320320
"dependencies": {
321-
"angular": "~1.2.16"
321+
"angular": ">=1.2.16 <=1.3.x"
322322
},
323323
"homepage": "http://ui-grid.info"
324324
};
@@ -342,4 +342,4 @@ module.exports = function(grunt) {
342342

343343
console.log(reader.docs[0].convertUrlToAbsolute());
344344
});
345-
};
345+
};

0 commit comments

Comments
 (0)