Skip to content

Commit 8c6cb51

Browse files
Portugal, Marcelomportuga
Portugal, Marcelo
authored andcommitted
chore(angular.js): Support Angular 1.7.x
Update documentation and testing.
1 parent 82033e0 commit 8c6cb51

File tree

8 files changed

+42743
-13
lines changed

8 files changed

+42743
-13
lines changed

DEVELOPER.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ http://localhost:9003/docs/#/tutorial to browse each tutorial.
1919
<br/> no-e2e - eliminate protractor tests
2020
<br/> angular=n.n.n - specify a specify angular version to run unit tests against
2121
<br/> core - run only the tests for the core code, skip features
22-
<br/> fast - alias for --no-e2e --core --angular=1.6.7
22+
<br/> fast - alias for --no-e2e --core --angular=1.7.0
2323

2424
```
25-
grunt dev --no-e2e --angular=1.6.7
25+
grunt dev --no-e2e --angular=1.7.0
2626
```
2727

2828
# Code Structure

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ You can use [rawgit.com](https://rawgit.com/)'s cdn url to access the files in t
5252
5353
# Angular Compatibility
5454
55-
UI-Grid is currently compatible with Angular versions ranging from 1.4.x to 1.6.x.
55+
UI-Grid is currently compatible with Angular versions ranging from 1.4.x to 1.7.x.
5656
5757
# Feature Stability
5858

lib/grunt/plugins.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ module.exports = function(grunt) {
329329
'main': bwr.main,
330330
'ignore': [],
331331
'dependencies': {
332-
'angular': '>=1.4.0 1.6.x'
332+
'angular': '>=1.4.0 1.7.x'
333333
},
334334
'repository': pkg.repository,
335335
'homepage': 'http://ui-grid.info',
@@ -349,7 +349,7 @@ module.exports = function(grunt) {
349349
});
350350

351351
// Publish release to NPM
352-
grunt.registerTask('npm-publish', function (done) {
352+
grunt.registerTask('npm-publish', function () {
353353
var done = this.async();
354354

355355
var currentTag = semver.clean( util.getCurrentTag() );
@@ -364,7 +364,7 @@ module.exports = function(grunt) {
364364
});
365365

366366
grunt.registerTask('blah', function () {
367-
reader.docs = []
367+
reader.docs = [];
368368
grunt.file.recurse(path.resolve(process.cwd(), 'src'), function (abspath, rootdir, subdir, filename) {
369369
if (!/style\.js$/.test(filename)) { return; }
370370

0 commit comments

Comments
 (0)