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

babel-deps

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-deps - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

12

index.js

@@ -40,6 +40,10 @@ 'use strict';

if (!hasFile[fullPath]) {
filesToCompile.push({
contents: fs.readFileSync(fullPath, 'utf8'),
options: {filename: fullPath}
});
if (fs.existsSync(fullPath)) {
filesToCompile.push({
contents: fs.readFileSync(fullPath, 'utf8'),
options: {filename: fullPath}
});
} else {
console.warn('Could not find ' + fullPath);
}
hasFile[fullPath] = true;

@@ -46,0 +50,0 @@ }

{
"name": "babel-deps",
"version": "0.2.0",
"version": "0.2.1",
"description": "Compiles javascript files and all their dependencies with babel.",

@@ -5,0 +5,0 @@ "license": "MIT",

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