Skip to content

Commit ab4c759

Browse files
committed
- 0.6.5 release, lots of new stuff to document
- Getting ready for the 0.7.0 release
1 parent 9a109f1 commit ab4c759

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/basic.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
displayName: "Last Name"
9797
}
9898
],
99-
rowClick: function(row) {
99+
/*rowClick: function(row) {
100100
console.debug(row);
101-
},
101+
},*/
102102
localMode: false,
103103
getData: function () {
104104
var grid = this;

gulpfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var packageJSON = require('./package.json');
1010

1111
gulp.task('css', function () {
1212
return gulp.src('./src/css/**.css')
13-
.pipe(concat('ngReactGrid-' + packageJSON.version + '.css'))
13+
.pipe(concat('ngReactGrid.css'))
1414
.pipe(gulp.dest('./build/css'));
1515
});
1616

@@ -29,17 +29,17 @@ gulp.task('build-grid', function () {
2929
.pipe(jsxFilter)
3030
.pipe(react())
3131
.pipe(jsxFilter.restore())
32-
.pipe(concat('ngReactGrid-' + packageJSON.version + '.js'))
32+
.pipe(concat('ngReactGrid.js'))
3333
.pipe(replace(/{\$version}/g, packageJSON.version))
3434
.pipe(gulp.dest('./build/js/'))
3535
});
3636

3737
gulp.task('uglify-build', ['build-grid'], function () {
38-
return gulp.src(['./build/js/ngReactGrid-' + packageJSON.version + '.js'])
38+
return gulp.src(['./build/js/ngReactGrid.js'])
3939
.pipe(uglify({
4040
preserveComments: 'some'
4141
}))
42-
.pipe(rename('ngReactGrid-' + packageJSON.version + '.min.js'))
42+
.pipe(rename('ngReactGrid.min.js'))
4343
.pipe(gulp.dest('./build/js'))
4444
});
4545

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngReactGrid",
3-
"version": "0.6.1",
3+
"version": "0.6.5",
44
"description": "A really fast Angular grid using the power of React to render",
55
"scripts": {
66
"test": "echo \"Error: no test specified\" && exit 1"

0 commit comments

Comments
 (0)