Skip to content

Commit

Permalink
Fix babel handling for node: DEFAULT_ENGINES (#827)
Browse files Browse the repository at this point in the history
For node, specifying `>= 6` is wrong, it should say just `6`
  • Loading branch information
lbguilherme authored and devongovett committed Feb 16, 2018
1 parent 1e12975 commit c7ba56a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/getTargetEngines.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const semver = require('semver');

const DEFAULT_ENGINES = {
browsers: ['> 1%', 'last 2 versions', 'Firefox ESR'],
node: '>= 6'
node: '6'
};

/**
Expand Down

0 comments on commit c7ba56a

Please sign in to comment.