Skip to content

Commit c74b20b

Browse files
committedAug 16, 2019
v0.10 and updated depedencies
1 parent 01f41e5 commit c74b20b

File tree

5 files changed

+142
-117
lines changed

5 files changed

+142
-117
lines changed
 

‎Gruntfile.js

+1-21
Original file line numberDiff line numberDiff line change
@@ -39,36 +39,16 @@ module.exports = function(grunt) {
3939
options: {
4040
spawn: false
4141
}
42-
},
43-
tests: {
44-
files: 'spec/*.js',
45-
tasks: 'jasmine',
46-
options: {
47-
spawn: false
48-
}
49-
}
50-
},
51-
jasmine : {
52-
src : 'build/<%= pkg.name %>.js',
53-
options : {
54-
specs : 'spec/*.js',
55-
vendor: 'ext/*.js',
56-
template : require('grunt-template-jasmine-istanbul'),
57-
templateOptions: {
58-
coverage: 'reports/coverage.json',
59-
report: 'reports/coverage'
60-
}
6142
}
6243
}
6344
});
6445

6546
grunt.loadNpmTasks('grunt-contrib-uglify');
6647
grunt.loadNpmTasks('grunt-contrib-watch');
6748
grunt.loadNpmTasks('grunt-contrib-jshint');
68-
grunt.loadNpmTasks('grunt-contrib-jasmine');
6949
grunt.loadNpmTasks('grunt-includes');
7050

7151
// Default task(s).
72-
grunt.registerTask('default', ['jshint', 'includes', 'uglify', 'jasmine']);
52+
grunt.registerTask('default', ['jshint', 'includes', 'uglify']);
7353

7454
};

‎build/knockout-kendo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* knockout-kendo 0.9.8
2+
* knockout-kendo 0.10.0
33
* Copyright © 2017 Ryan Niemeyer & Telerik
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");

‎build/knockout-kendo.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎ext/kendo.all.min.js

+133-86
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockout-kendo",
3-
"version": "0.9.8",
3+
"version": "0.10.0",
44
"homepage": "http://kendo-labs.github.com/knockout-kendo/",
55
"author": "Ryan Niemeyer",
66
"repository": {
@@ -15,12 +15,10 @@
1515
}
1616
],
1717
"devDependencies": {
18-
"grunt": "~0.4.1",
19-
"grunt-contrib-uglify": "0.x.x",
20-
"grunt-contrib-jshint": "0.x.x",
21-
"grunt-contrib-watch": "0.x.x",
22-
"grunt-includes": "0.x.x",
23-
"grunt-contrib-jasmine": "0.5.2",
24-
"grunt-template-jasmine-istanbul": "0.2.6"
18+
"grunt": "^1.0.4",
19+
"grunt-contrib-jshint": "^2.1.0",
20+
"grunt-contrib-uglify": "^4.0.1",
21+
"grunt-contrib-watch": "^1.1.0",
22+
"grunt-includes": "^1.1.0"
2523
}
2624
}

0 commit comments

Comments
 (0)
Please sign in to comment.