Socket
Socket
Sign inDemoInstall

fount

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fount - npm Package Compare versions

Comparing version 0.2.0-1 to 0.2.0-2

1

CHANGELOG.md

@@ -7,2 +7,3 @@ ## 0.2.x

* functions that can't be resolved in static or scoped lifecycles immediately will be once all dependencies become available
* don't backfill dependencies from NPM for non-default containers

@@ -9,0 +10,0 @@ ## 0.1.X

2

package.json
{
"name": "fount",
"version": "0.2.0-1",
"version": "0.2.0-2",
"description": "A source from which dependencies flow",

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

@@ -14,3 +14,3 @@ var _ = require( 'lodash' );

function backfillMissingDependency( name, containerName ) {
var mod = getLoadedModule( name ) || getModuleFromInstalls( name );
var mod = getLoadedModule( name ) || ( containerName === "default" ? getModuleFromInstalls( name ) : null );
if ( mod ) {

@@ -17,0 +17,0 @@ var lifecycle = _.isFunction( mod ) ? 'factory' : 'static';

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