mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
node4 support: const -> var
Original commit: elastic/kibana-plugin-helpers@19b607d954
This commit is contained in:
parent
5bc1308422
commit
269bdc45e2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue