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

@after-work.js/utils

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@after-work.js/utils - npm Package Compare versions

Comparing version 5.0.0-alpha.10 to 5.0.0-alpha.11

2

package.json
{
"name": "@after-work.js/utils",
"version": "5.0.0-alpha.10",
"version": "5.0.0-alpha.11",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -59,3 +59,3 @@ const fs = require('fs');

coerceBabel(opt) {
if (opt.enable && opt.core) {
if (opt.enable && opt.core && typeof opt.core === 'string') {
opt.babel = importCwd(opt.core); // eslint-disable-line no-param-reassign

@@ -72,3 +72,5 @@ } else if (opt.enable && !opt.core) {

}
opt.babelPluginIstanbul = importCwd(opt.babelPluginIstanbul).default; // eslint-disable-line no-param-reassign, max-len
if (typeof opt.babelPluginIstanbul === 'string') {
opt.babelPluginIstanbul = importCwd(opt.babelPluginIstanbul).default; // eslint-disable-line no-param-reassign, max-len
}
return opt;

@@ -75,0 +77,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