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

node-shyp

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-shyp - npm Package Compare versions

Comparing version 0.1.2 to 0.1.4

2

package.json
{
"name": "node-shyp",
"version": "0.1.2",
"version": "0.1.4",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

# node-shyp
Precompile your node modules.
Precompile your node modules, use npm as your data store:
```
coolmodule
optional:
coolmodule-shyp-win32-x64
coolmodule-shyp-win32-ia32
coolmodule-shyp-darwin-x64
coolmodule-shyp-darwin-ia32
...
```
## Installation

@@ -6,0 +16,0 @@

@@ -53,4 +53,6 @@ #!/usr/bin/env node

fs.readdirSync(builddir).forEach(function (file) {
if (fs.lstatSync(builddir + file).isFile() && file.match(/\.(exp|lib|node|dylib|exe)$/)) {
fs.writeFileSync(outdirabi + file, fs.readFileSync(builddir + file));
if (fs.lstatSync(builddir + file).isFile() && file.match(/\.(exp|lib|node|dylib|exe)$|^[^.]+$/)) {
fs.writeFileSync(outdirabi + file, fs.readFileSync(builddir + file), {
mode: fs.lstatSync(builddir + file).mode
});
}

@@ -57,0 +59,0 @@ })

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