Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
CUILLERY NICOLAS authored and CUILLERY NICOLAS committed Apr 9, 2016
1 parent 0c8aab6 commit d681c90
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 14 deletions.
14 changes: 9 additions & 5 deletions Gruntfile.js
Expand Up @@ -219,10 +219,13 @@ module.exports = function (grunt) {
},
shell: {
testMinimal: {
command: 'bower install angular#=1.0.8 angular-mocks#=1.0.8 angular-sanitize#=1.0.8 angular-ui-router#=0.2.0 --config.directory=. --config.cwd=testDependencies'
command: 'bower install angular#=1.2.29 angular-mocks#=1.2.29 angular-sanitize#=1.2.29 angular-ui-router#=0.2.18 --config.directory=. --config.cwd=testDependencies'
},
test1dot2: {
command: 'bower install angular#=1.2.18 angular-mocks#=1.2.18 angular-sanitize#=1.2.18 angular-ui-router#=0.2.15 --config.directory=. --config.cwd=testDependencies'
test1dot3: {
command: 'bower install angular#=1.3.20 angular-mocks#=1.3.20 angular-sanitize#=1.3.20 angular-ui-router#=0.2.18 --config.directory=. --config.cwd=testDependencies'
},
test1dot4: {
command: 'bower install angular#=1.4.10 angular-mocks#=1.4.10 angular-sanitize#=1.4.10 angular-ui-router#=0.2.18 --config.directory=. --config.cwd=testDependencies'
},
testLatest: {
command: 'bower install angular angular-mocks angular-sanitize angular-ui-router --config.directory=. --config.cwd=testDependencies'
Expand Down Expand Up @@ -250,9 +253,10 @@ module.exports = function (grunt) {

grunt.registerTask('meteor-publish', ['exec:meteor-init', 'exec:meteor-publish']);

grunt.registerTask('test', ['jshint', 'testMin', 'test1dot2', 'testLatest']);
grunt.registerTask('test', ['jshint', 'testMin', 'test1dot3', 'testLatest']);
grunt.registerTask('testMin', ['clean:test', 'shell:testMinimal', 'karma']);
grunt.registerTask('test1dot2', ['clean:test', 'shell:test1dot2', 'karma']);
grunt.registerTask('test1dot3', ['clean:test', 'shell:test1dot3', 'karma']);
grunt.registerTask('test1dot4', ['clean:test', 'shell:test1dot4', 'karma']);
grunt.registerTask('testLatest', ['clean:test', 'shell:testLatest', 'karma']);

grunt.registerTask('default', ['test', 'concat:dev', 'uglify:dev']);
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -20,7 +20,7 @@
"README.md"
],
"dependencies": {
"angular": ">=1.0.8",
"angular": ">=1.2.0",
"angular-ui-router": ">=0.2.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-breadcrumb.js
@@ -1,6 +1,6 @@
/*! angular-breadcrumb - v0.4.0-dev-2015-08-07
/*! angular-breadcrumb - v0.4.1-dev-2016-04-09
* http://ncuillery.github.io/angular-breadcrumb
* Copyright (c) 2015 Nicolas Cuillery; Licensed MIT */
* Copyright (c) 2016 Nicolas Cuillery; Licensed MIT */

(function (window, angular, undefined) {
'use strict';
Expand Down
19 changes: 13 additions & 6 deletions package.json
Expand Up @@ -41,15 +41,22 @@
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.4.0",
"grunt-conventional-changelog": "~1.1.0",
"grunt-karma": "~0.6.2",
"grunt-exec": "^0.4.6",
"grunt-karma": "~0.12.2",
"grunt-open": "~0.2.0",
"grunt-shell": "~0.7.0",
"grunt-text-replace": "^0.3.12",
"karma": "~0.10.2",
"karma-coverage": "~0.1.0",
"karma-story-reporter": "~0.2.2",
"grunt-exec": "^0.4.6",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-coverage": "~0.1.5",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-story-reporter": "^0.3.1",
"phantomjs-prebuilt": "^2.1.7",
"spacejam": "^1.1.1"
},
"keywords": ["angular", "breadcrumb"]
"keywords": [
"angular",
"breadcrumb"
]
}

0 comments on commit d681c90

Please sign in to comment.