Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
node4 support: const -> var
Browse files Browse the repository at this point in the history
  • Loading branch information
w33ble committed Dec 17, 2016
1 parent c474820 commit 19b607d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/build/build_action.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = function (plugin) {
// modify the package.json file
.pipe(map(function (file) {
if (file.basename === 'package.json') {
const pkg = JSON.parse(file.contents.toString('utf8'));
var pkg = JSON.parse(file.contents.toString('utf8'));

// rewrite the target kibana version while the
// file is on it's way to the archive
Expand Down

0 comments on commit 19b607d

Please sign in to comment.