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

folio

Package Overview
Dependencies
Maintainers
6
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

folio - npm Package Compare versions

Comparing version 0.4.0-alpha25 to 0.4.0-alpha26

9

out/loader.js

@@ -88,7 +88,4 @@ "use strict";

validateConfig(this._config);
this._config = {
...this._defaultConfig,
...this._config,
use: { ...this._defaultConfig.use, ...this._config.use },
};
const configUse = util_1.mergeObjects(this._defaultConfig.use, this._config.use);
this._config = util_1.mergeObjects(util_1.mergeObjects(this._defaultConfig, this._config), { use: configUse });
if ('testDir' in this._config && !path.isAbsolute(this._config.testDir))

@@ -184,3 +181,3 @@ this._config.testDir = path.resolve(rootDir, this._config.testDir);

timeout: takeFirst(this._configOverrides.timeout, projectConfig.timeout, this._config.timeout, 10000),
use: { ...this._config.use, ...projectConfig.use, ...this._configOverrides.use },
use: util_1.mergeObjects(util_1.mergeObjects(this._config.use, projectConfig.use), this._configOverrides.use),
};

@@ -187,0 +184,0 @@ this._projects.push(new project_1.ProjectImpl(fullProject, this._projects.length));

{
"name": "folio",
"version": "0.4.0-alpha25",
"version": "0.4.0-alpha26",
"bin": {

@@ -5,0 +5,0 @@ "folio": "./cli.js"

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