Skip to content

Commit 3b382ed

Browse files
committed
* Perfomance optimization
* Bootstrap 3 update * Add minifiyed js * Add npm installation * Add borew installation
1 parent 63aaa8d commit 3b382ed

23 files changed

+268
-9513
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
/nbproject
2+
/node_modules
3+
/bower_modules

CHANGELOG.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
== 0.3.0 - 03 February 2015
2+
* Perfomance optimization
3+
* Bootstrap 3 update
4+
* Add minifiyed js
5+
* Add npm installation
6+
* Add borew installation
7+
18
== 0.2.1 - 21 January 2014
29
* Add events support
310

Gruntfile.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = function(grunt) {
2+
3+
// Project configuration.
4+
grunt.initConfig({
5+
pkg: grunt.file.readJSON('package.json'),
6+
uglify: {
7+
options: {
8+
banner: '/*! <%= pkg.name %> <%= pkg.version %> */\n'
9+
},
10+
build: {
11+
src: 'js/jquery.treegrid.js',
12+
dest: 'js/jquery.treegrid.min.js'
13+
}
14+
}
15+
});
16+
17+
// Load the plugin that provides the "uglify" task.
18+
grunt.loadNpmTasks('grunt-contrib-uglify');
19+
20+
// Default task(s).
21+
grunt.registerTask('default', ['uglify']);
22+
23+
};

bower.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-treegrid",
33
"description": "TreeGrid plugin for jQuery.",
4-
"version": "0.2.0",
4+
"version": "0.3.0",
55
"homepage": "http://maxazan.github.io/jquery-treegrid",
66
"license": "MIT",
77
"ignore": [
@@ -26,5 +26,8 @@
2626
"dependencies": {
2727
"jquery": ">= 1.9.1",
2828
"jquery.cookie": ">= 1.4.1"
29-
}
29+
},
30+
"authors": [
31+
"Maksym Pomazan"
32+
]
3033
}

0 commit comments

Comments
 (0)