Skip to content

Commit

Permalink
v0.10 and updated depedencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rniemeyer committed Aug 16, 2019
1 parent 01f41e5 commit c74b20b
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 117 deletions.
22 changes: 1 addition & 21 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,36 +39,16 @@ module.exports = function(grunt) {
options: {
spawn: false
}
},
tests: {
files: 'spec/*.js',
tasks: 'jasmine',
options: {
spawn: false
}
}
},
jasmine : {
src : 'build/<%= pkg.name %>.js',
options : {
specs : 'spec/*.js',
vendor: 'ext/*.js',
template : require('grunt-template-jasmine-istanbul'),
templateOptions: {
coverage: 'reports/coverage.json',
report: 'reports/coverage'
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-includes');

// Default task(s).
grunt.registerTask('default', ['jshint', 'includes', 'uglify', 'jasmine']);
grunt.registerTask('default', ['jshint', 'includes', 'uglify']);

};
2 changes: 1 addition & 1 deletion build/knockout-kendo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* knockout-kendo 0.9.8
* knockout-kendo 0.10.0
* Copyright © 2017 Ryan Niemeyer & Telerik
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion build/knockout-kendo.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

219 changes: 133 additions & 86 deletions ext/kendo.all.min.js

Large diffs are not rendered by default.

14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-kendo",
"version": "0.9.8",
"version": "0.10.0",
"homepage": "http://kendo-labs.github.com/knockout-kendo/",
"author": "Ryan Niemeyer",
"repository": {
Expand All @@ -15,12 +15,10 @@
}
],
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "0.x.x",
"grunt-contrib-jshint": "0.x.x",
"grunt-contrib-watch": "0.x.x",
"grunt-includes": "0.x.x",
"grunt-contrib-jasmine": "0.5.2",
"grunt-template-jasmine-istanbul": "0.2.6"
"grunt": "^1.0.4",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "^4.0.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-includes": "^1.1.0"
}
}

0 comments on commit c74b20b

Please sign in to comment.