Socket
Socket
Sign inDemoInstall

aws-crt

Package Overview
Dependencies
Maintainers
4
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-crt - npm Package Compare versions

Comparing version 1.9.6 to 1.9.7

2

package.json
{
"name": "aws-crt",
"version": "1.9.6",
"version": "1.9.7",
"description": "NodeJS/browser bindings to the aws-c-* libraries",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/awslabs/aws-crt-nodejs",

@@ -107,3 +107,3 @@ /**

//teardown the local source code
fs.rmSync(nativeSourceDir, { recursive: true });
fs.rmdirSync(nativeSourceDir, { recursive: true });
}

@@ -123,7 +123,7 @@ fs.mkdirSync(tmpPath);

// Clean up temp directory
fs.rmSync(tmpPath, { recursive: true });
fs.rmdirSync(tmpPath, { recursive: true });
// Kick off local build
await buildLocally();
// Local build finished successfully, we don't need source anymore.
fs.rmSync(nativeSourceDir, { recursive: true });
fs.rmdirSync(nativeSourceDir, { recursive: true });
}

@@ -150,4 +150,4 @@

// teardown tmpPath and source directory on failure
fs.rmSync(tmpPath, { recursive: true });
fs.rmSync(nativeSourceDir, { recursive: true });
fs.rmdirSync(tmpPath, { recursive: true });
fs.rmdirSync(nativeSourceDir, { recursive: true });
throw err;

@@ -154,0 +154,0 @@ }

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