0.1.0 • Published 7 years ago
yarn-add-webpack-plugin v0.1.0
yarn-add-webpack-plugin
Allows packages to be installed using Yarn during development. Webpack wont error for any missing dependencies, rather, the missing packages are installed without skipping a beat.
This plugin is heavily based off of Npm Install Webpack Plugin. npm-install-webpack-plugin doesn't support Yarn and there are no plans to at this time.
There are no plans to support NPM. There's already a nice plugin for that :)
Usage
plugins: [
new YarnAddWebpackPlugin({
// save dependencies as development or regular dependencies.
dev: false,
// Generate a lock file or don't. It's up to you!
pure: false,
// Install missing peerDependencies
peerDependencies: true,
// Reduce amount of console logging
quiet: false,
});
0.1.0
7 years ago