Skip to content

Commit

Permalink
Releasing v0.2.27
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Oct 1, 2018
1 parent a9edaa4 commit 491f9f2
Show file tree
Hide file tree
Showing 5 changed files with 2,100 additions and 1,808 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 0.2.27 (Oct 1, 2018)

* enhancement - Alt Home hotkey for focusing the breadcrumbs. See [#128](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/128)

## 0.2.26 (Sep 11, 2018)

* bug fix - Removed triggerSuggest keybinding. See [#124](https://github.com/kasecato/vscode-intellij-idea-keybindings/pull/124)
Expand Down
15 changes: 5 additions & 10 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,13 @@ var gulp = require('gulp');
var rename = require("gulp-rename");
var stripJsonComments = require('gulp-strip-json-comments');
var prettify = require('gulp-jsbeautifier');

gulp.task('default', function () {

gulp.task('default', defaultTask);

function defaultTask() {
return gulp.src('./src/package-with-comment.json')
.pipe(stripJsonComments())
.pipe(prettify())
.pipe(rename("./package.json"))
.pipe(gulp.dest('./'));
});


gulp.task('watch', function(){
gulp.watch('./src/package-with-comment.json', ['build']);
});

gulp.task('build', ['default', 'watch']);
};
Loading

0 comments on commit 491f9f2

Please sign in to comment.