Skip to content

Commit

Permalink
update node version to 8.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alialdallal-scotia committed Nov 30, 2018
1 parent c018e21 commit 9530d54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "1.5.0",
"description": "NodeJS Transifex API Client",
"main": "./transifex.js",
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"test": "mocha --reporter spec tests --timeout 190000 --slow 2000"
},
Expand Down
3 changes: 1 addition & 2 deletions transifex.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var request = require("request"),
const request = require("request"),
_ = require("lodash"),
crypto = require('crypto');

Expand Down Expand Up @@ -501,7 +501,6 @@ Transifex.prototype.translationStringsPutMethod = function(project_slug, resourc
var url = this.expUrl.translationStringsPutURL.replace("<project_slug>", project_slug)
.replace("<resource_slug>", resource_slug)
.replace("<language_code>", language_code);
console.log('url',url);
this.projectPutRequest(url, content.map(keyToHash), function(err, content) {
if (err) {
return callback(err);
Expand Down

0 comments on commit 9530d54

Please sign in to comment.