New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vital-ai/haley-js-scripts

Package Overview
Dependencies
Maintainers
4
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vital-ai/haley-js-scripts - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "@vital-ai/haley-js-scripts",
"version": "1.0.3",
"version": "1.0.4",
"description": "",

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

@@ -37,4 +37,6 @@ // This script is for copying files from some places (node_modules...) to a destination folder.

copyFromFiles.forEach(function(file) {
const sourcePath = path.join(__dirname, relativePathFromScriptToRoot, file);
const fileName = sourcePath.split('/').pop();
const fileParts = file.split('->');
const filePath = fileParts[0];
const sourcePath = path.join(__dirname, relativePathFromScriptToRoot, filePath);
const fileName = fileParts.length > 1 ? fileParts[1] : sourcePath.split('/').pop();
const destinationPath = path.join(__dirname, relativePathFromScriptToRoot, COPY_TO_FOLDER, fileName);

@@ -41,0 +43,0 @@

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