0.9.3 • Published 3 years ago

@dash4/plugin-dependencies v0.9.3

Weekly downloads
14
License
MIT
Repository
github
Last release
3 years ago

NPM version License Commitizen friendly Prettier

Table of Contents

Installation

npm i -D @dash4/plugin-dependencies

Usage

dash4.config.js

const { PluginDependencies } = require('@dash4/plugin-dependencies');

async function getConfig() {
  return {
    tabs: [
      {
        title: 'Root',
        rows: [
          [
            new PluginDependencies(),
          ],
        ],
      },
    ],
  };
}

module.exports = getConfig;

options:

// custom title (default=Dependencies)
title?: string;
// current working directory (default = process.cwd())
cwd?: string;
// grid with per breakpoint
// [12,6,3] means 100% width on small viewports, 50% on medium viewports and 33.3% on largeviewports
width?: number[];
// enable / disable dark mode
dark?: boolean;
// path to lerna.json mode which will collect all dependencies in the project
lerna?: string;
// exlude dependencies by their dependencyName
exclude?: RegExp[];
// define install process
installProcess?: {
  // custom title for installation process (default=npm run install)
	title?: string;
  // current working directory of the child process. (default = process.cwd())
  cwd?: string;
  // command which should be executed (default = 'npm run install')
  cmd?: string;
};

License

The @dash4/plugin-dependencies is MIT licensed

0.9.3

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

4 years ago

0.8.5

4 years ago

0.8.4

4 years ago

0.8.3

4 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.1

4 years ago

0.7.0

4 years ago

0.6.0

5 years ago

0.5.2

5 years ago

0.5.1

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago