Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

windows-build-tools

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

windows-build-tools - npm Package Compare versions

Comparing version 1.3.2 to 1.4.0

23

lib/constants.js

@@ -11,9 +11,20 @@ 'use strict';

var python = {
installerName: 'python-2.7.13.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.13/python-2.7.13.msi'),
targetName: 'python27',
logName: 'python-log.txt'
};
var python = {};
if (process.arch === 'x64') {
python = {
installerName: 'python-2.7.14.amd64.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.14/python-2.7.14.amd64.msi'),
targetName: 'python27',
logName: 'python-log.txt'
};
} else {
python = {
installerName: 'python-2.7.14.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.14/python-2.7.14.msi'),
targetName: 'python27',
logName: 'python-log.txt'
};
}
module.exports = {

@@ -20,0 +31,0 @@ buildTools: buildTools,

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

@@ -0,0 +0,0 @@ 'use strict';

{
"name": "windows-build-tools",
"version": "1.3.2",
"version": "1.4.0",
"description": "Install C++ Build Tools for Windows using npm",

@@ -37,18 +37,18 @@ "main": "lib/index.js",

"devDependencies": {
"babel-cli": "^6.24.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"rewire": "^2.5.1",
"standard": "^10.0.2"
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.0",
"mockery": "^2.1.0",
"rewire": "^3.0.2",
"standard": "^10.0.3"
},
"dependencies": {
"chalk": "^1.1.3",
"cli-spinner": "^0.2.6",
"debug": "^2.6.0",
"fs-extra": "^3.0.0",
"chalk": "^2.3.0",
"cli-spinner": "^0.2.7",
"debug": "^3.1.0",
"fs-extra": "^4.0.2",
"nugget": "^2.0.1"
}
}

@@ -8,3 +8,3 @@ # Windows-Build-Tools

```
npm install --global windows-build-tools
npm install --global --production windows-build-tools
```

@@ -11,0 +11,0 @@

@@ -0,0 +0,0 @@ module.export = (function () {

@@ -1,4 +0,4 @@

var pythonMirror = process.env['npm_config_python_mirror'] || process.env.PYTHON_MIRROR || 'https://www.python.org/ftp/python/'
const pythonMirror = process.env['npm_config_python_mirror'] || process.env.PYTHON_MIRROR || 'https://www.python.org/ftp/python/'
var buildTools = {
const buildTools = {
installerName: 'BuildTools_Full.exe',

@@ -9,7 +9,18 @@ installerUrl: 'https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe',

var python = {
installerName: 'python-2.7.13.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.13/python-2.7.13.msi'),
targetName: 'python27',
logName: 'python-log.txt'
let python = {}
if (process.arch === 'x64') {
python = {
installerName: 'python-2.7.14.amd64.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.14/python-2.7.14.amd64.msi'),
targetName: 'python27',
logName: 'python-log.txt'
}
} else {
python = {
installerName: 'python-2.7.14.msi',
installerUrl: pythonMirror.replace(/\/*$/, '/2.7.14/python-2.7.14.msi'),
targetName: 'python27',
logName: 'python-log.txt'
}
}

@@ -16,0 +27,0 @@

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

@@ -0,0 +0,0 @@ 'use strict'

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc