Skip to content
This repository has been archived by the owner on Oct 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #21 from sirensolutions/bump_version
Browse files Browse the repository at this point in the history
Bump version to 5.3.2-SNAPSHOT
  • Loading branch information
szydan authored May 18, 2017
2 parents 38267ec + 7b9d0fb commit 7b52efd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ var include = [
];

var knownOptions = {
string: 'kibanahome',
default: { kibanahome: 'kibana' }
string: 'kibanahomepath',
default: { kibanahomepath: 'kibana' }
};
var options = minimist(process.argv.slice(2), knownOptions);

var kibanaPluginDir = path.resolve(__dirname, '../' + options.kibanahome + '/plugins/' + pkg.name);
var kibanaPluginDir = path.resolve(__dirname, options.kibanahomepath + '/plugins/' + pkg.name);

function syncPluginTo(dest, done) {
mkdirp(dest, function (err) {
Expand Down Expand Up @@ -122,14 +122,14 @@ gulp.task('dev', ['sync'], function (done) {

gulp.task('test', ['sync'], function(done) {
spawn('grunt', ['test:browser', '--grep=Kibi Radar Chart'], {
cwd: '../' + options.kibanahome,
cwd: '../' + options.kibanahomepath,
stdio: 'inherit'
}).on('close', done);
});

gulp.task('coverage', ['sync'], function(done) {
spawn('grunt', ['test:coverage', '--grep=Kibi Radar Chart'], {
cwd: '../' + options.kibanahome,
cwd: '../' + options.kibanahomepath,
stdio: 'inherit'
}).on('close', done);
});
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "kibi_radar_vis",
"version": "5.2.2-SNAPSHOT",
"version": "5.3.2-SNAPSHOT",
"kibana" : {
"version": "5.2.2"
"version": "5.3.2"
},
"authors": [
"SIREn Solutions <[email protected]>"
Expand Down

0 comments on commit 7b52efd

Please sign in to comment.