Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

deps-patch

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deps-patch

Allow to add dependencies not detected from code

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

deps-patch

version status

A plugin for both browserify and depsify, to allow to add dependencies not detected from code.

Example

In the following example, entry.css depends upon entry-deps.css, and extra.css upon extra-deps.css.

We can make entry.css depends on extra.css using this plugin.

var reduce = require('reduce-css')
var path = require('path')

var b = reduce.create(
  'entry.css',
  { basedir: path.join(__dirname, 'src') },
  'bundle.css'
)
b.plugin('deps-patch')
b.bundle().pipe(b.dest(path.join(__dirname, 'build')))

// add dependencies
setTimeout(function () {
  b.emit('deps-patch.update', [
    // it claims that entry.css should depend on extra.css
    // even if entry.css does not do it in the code
    { file: 'entry.css', deps: ['extra.css'] },
  ])
}, 200)

The result would be something like:

.entry-deps{} /* from entry-deps.css */
.extra-deps{} /* from extra-deps.css */
.extra{} /* from extra.css */
.entry{} /* from entry.css */

Usage

The deps-patch.update event should be fired whenever you want to add new dependencies.

b.plugin('deps-patch')

b.emit('deps-patch.update', depsPatch)

depsPatch is an array of rows. A row is just an object with fields:

  • file: String. the file path to the dependent
  • deps: Array. an array of file path to modules the dependent should depend upon.

Keywords

browserify-plugin

FAQs

Package last updated on 31 May 2016

Did you know?

Socket

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