Socket
Socket
Sign inDemoInstall

@babel/cli

Package Overview
Dependencies
166
Maintainers
6
Versions
122
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.12.17 to 7.13.0

2

lib/babel/options.js

@@ -126,3 +126,3 @@ "use strict";

_commander().default.version("7.12.17" + " (@babel/core " + _core().version + ")");
_commander().default.version("7.13.0" + " (@babel/core " + _core().version + ")");

@@ -129,0 +129,0 @@ _commander().default.usage("[options] <files ...>");

@@ -64,3 +64,7 @@ "use strict";

function chmod(src, dest) {
_fs().default.chmodSync(dest, _fs().default.statSync(src).mode);
try {
_fs().default.chmodSync(dest, _fs().default.statSync(src).mode);
} catch (err) {
console.warn(`Cannot change permissions of ${dest}`);
}
}

@@ -67,0 +71,0 @@

{
"name": "@babel/cli",
"version": "7.12.17",
"version": "7.13.0",
"description": "Babel command line.",

@@ -44,4 +44,4 @@ "author": "Sebastian McKenzie <sebmck@gmail.com>",

"devDependencies": {
"@babel/core": "7.12.17",
"@babel/helper-fixtures": "7.12.13",
"@babel/core": "7.13.0",
"@babel/helper-fixtures": "7.13.0",
"rimraf": "^3.0.0"

@@ -48,0 +48,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc