Socket
Socket
Sign inDemoInstall

liferay-npm-bundler-plugin-inject-peer-dependencies

Package Overview
Dependencies
178
Maintainers
14
Versions
94
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    liferay-npm-bundler-plugin-inject-peer-dependencies

A liferay-npm-bundler plugin to force injection of dependencies in packages declaring peer dependencies.


Version published
Weekly downloads
6.2K
decreased by-20.74%
Maintainers
14
Install size
8.26 MB
Created
Weekly downloads
 

Readme

Source

liferay-npm-bundler-plugin-inject-peer-dependencies

Inject peer and undeclared dependencies (as long as they are installed under

"node_modules") in package.json files.

Installation

npm install --save-dev liferay-npm-bundler-plugin-inject-peer-dependencies

Usage

Add the following to your .npmbundlerrc file:

Without options:

{
	"*": {
		"plugins": ["inject-peer-dependencies"]
	}
}

With options:

{
	"*": {
		"plugins": [
			[
				"inject-peer-dependencies",
				{
					"defineCall": "Liferay.Loader.define"
				}
			]
		]
	}
}

Technical Details

This plugin injects missing dependencies in package.json files when they are found inside AMD define() calls in any of their module files and the dependency is installed under "node_modules". This is needed for peer dependencies to work correctly under Liferay's npm architecture and it may also make some incorrect setups work they way they do on Node.js.

To determine the version of the dependencies to inject, the plugin resolves the peer/undeclared packages from the context of the module where they are referenced using the standard node resolve algorithm.

Please note that, for the referenced packages to be included they must also be listed in the project's package.json so that they are included in the final OSGi bundle.

FAQs

Last updated on 05 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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