npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

yarn-check-webpack-plugin

v1.2.0

Published

Verify there are no missing dependencies and the correct versions with webpack and yarn

Downloads

385,656

Readme

yarn-check-webpack-plugin

npm version Build Status

When working in a large codebase it's likely someone else will add a new package or upgrade an existing package. This often leads to a convoluted webpack error or runtime error as a result of a missing or outdated package.

The intent of this plugin is to be run in development with webpack so as you checkout different branches or recent changes in version control this plugin can remind you when there are missing or outdated packages.

Getting Started

Install the package:

yarn add -D yarn-check-webpack-plugin
npm install --save-dev yarn-check-webpack-plugin

And add the plugin to webpack.config.js:

const { YarnCheck } = require("yarn-check-webpack-plugin");

module.exports = {
  // Additional configuration...
  plugins: [new YarnCheck()]
};

Or, to webpack.config.ts:

import * as webpack from "webpack";
import { YarnCheck } from "yarn-check-webpack-plugin";

const config: webpack.Configuration = {
  // Additional configuration...
  plugins: [new YarnCheck()]
};

module.exports = config;

Then, run webpack as normal.

How do I verify it's working?

Find a random node_module (eg: ls node_modules) and remove it (eg: rm -rf node_modules/lodash) and trigger a rebuild (by changing a file if in watch mode) or by running webpack again.

The output should include something that looks like:

Missing packages:
  - lodash
Please run `yarn install --check-files` to update.

Configuration

All configuration is optional. Pass a configuration object when initializing to change any of the options.

For example:

new YarnCheck({ rootDirectory: "./another/directory", exclude: /underscore/ });

rootDirectory

Type: String

Description: The root directory to run the commands. This should be the directory that contains package.json, yarn.lock and node_modules. By default, it will run in the current directory. This option only needs to be set if this plugin is being run in a different directory.

exclude

Type: RegExp

Description: Ignore warnings for any missing or wrong version packages that match this regex expression.