webpack-dependency-hintdeprecated

A webpack plugin to output a reminder for checking the dependencies in the console.

Usage no npm install needed!

<script type="module">
  import webpackDependencyHint from 'https://cdn.skypack.dev/webpack-dependency-hint';
</script>

README

webpack-dependency-hint

A Webpack plugin that delivers a console output when a dependency check is recommended. The amount of days till the message should appear can be configured per default it's set to 90 days. To handle the date format it uses https://day.js.org/. and the Console output gets styles by https://www.npmjs.com/package/chalk.

image

Documentation

Usage

// webpack.config.js
const DependencyHint = require('webpack-dependency-hint');

module.exports = {
  // ... configuration settings here ...
  plugins: [
    new DependencyHint({
      lastUpdate: '01.01.2020',
    })
  ],
};

Options

Name Type Default Description
lastUpdate {String} "" The date of the last update or check.
daysTillWarning {Number} 90 The amount of days till the warning should appear.
inputFormat {String} "DD.MM.YYYY" The input date format.
outputFormat {String} "DD.MM.YYYY" The output date format.
warningText {String} "Please consider your project manager to arrange a dependency update." The additional text that appears in the console.