Skip to content

Commit f787b7f

Browse files
author
Jens Weintraut
committed
- added support for Node 12 (Win64, Linux64)
1 parent 634bd90 commit f787b7f

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "images",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "Cross-platform image decoder(webp/png/jpeg/gif) and encoder(webp/png/jpeg) for Node.js",
55
"main": "index.js",
66
"scripts": {
77
"test": "node test.js",
88
"install": "node ./scripts/install.js"
99
},
10-
"repositoryName": "zhangyuanwei/node-images",
10+
"repositoryName": "e2ebridge/node-images",
1111
"repository": {
1212
"type": "git",
13-
"url": "https://github.com/zhangyuanwei/node-images.git"
13+
"url": "https://github.com/e2ebridge/node-images.git"
1414
},
1515
"dependencies": {
1616
"mkdirp": "^0.5.1",
@@ -34,6 +34,6 @@
3434
"license": "MIT",
3535
"gypfile": true,
3636
"bugs": {
37-
"url": "https://github.com/zhangyuanwei/node-images/issues"
37+
"url": "https://github.com/e2ebridge/node-images/issues"
3838
}
3939
}

scripts/util/extensions.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ function getHumanNodeVersion(abi) {
7777
case 55: return 'Node.js 8.x';
7878
case 57: return 'Node.js 8.x';
7979
case 64: return 'Node.js 10.x';
80+
case 72: return 'Node.js 12.x';
8081
default: return false;
8182
}
8283
}
@@ -426,4 +427,4 @@ module.exports.getCachePathCandidates = getCachePathCandidates;
426427
module.exports.getVersionInfo = getVersionInfo;
427428
module.exports.getHumanEnvironment = getHumanEnvironment;
428429
module.exports.getInstalledBinaries = getInstalledBinaries;
429-
module.exports.isSupportedEnvironment = isSupportedEnvironment;
430+
module.exports.isSupportedEnvironment = isSupportedEnvironment;

0 commit comments

Comments
 (0)