Skip to content

Commit

Permalink
Release 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
charlierudolph committed Oct 18, 2017
1 parent 7d8784f commit 329ae81
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Please see [CONTRIBUTING.md](https://github.com/cucumber/cucumber/blob/master/CONTRIBUTING.md) on how to contribute to Cucumber.

### [3.0.6](https://github.com/cucumber/cucumber-js/compare/v3.0.5...v3.0.6) (2017-10-18)

* cli: fix `--format` option parsing on Windows ([#954](https://github.com/cucumber/cucumber-js/pull/954) Darrin Holst)

### [3.0.5](https://github.com/cucumber/cucumber-js/compare/v3.0.4...v3.0.5) (2017-10-14)

#### New Features
Expand Down
14 changes: 10 additions & 4 deletions dist/cucumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -55296,7 +55296,7 @@ module.exports={
"gherkin",
"tests"
],
"version": "3.0.5",
"version": "3.0.6",
"homepage": "http://github.com/cucumber/cucumber-js",
"author": "Julien Biezemans <jb@jbpros.com> (http://jbpros.net)",
"contributors": [
Expand Down Expand Up @@ -55840,9 +55840,15 @@ var ConfigurationBuilder = function () {
value: function getFormats() {
var mapping = { '': 'progress' };
this.options.format.forEach(function (format) {
var parts = format.split(':');
var type = parts[0];
var outputTo = parts.slice(1).join(':');
var type = format;
var outputTo = '';
var parts = format.split(/([^A-Z]):([^\\])/);

if (parts.length > 1) {
type = parts.slice(0, 2).join('');
outputTo = parts.slice(2).join('');
}

mapping[outputTo] = type;
});
return _lodash2.default.map(mapping, function (type, outputTo) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"gherkin",
"tests"
],
"version": "3.0.5",
"version": "3.0.6",
"homepage": "http://github.com/cucumber/cucumber-js",
"author": "Julien Biezemans <jb@jbpros.com> (http://jbpros.net)",
"contributors": [
Expand Down

0 comments on commit 329ae81

Please sign in to comment.