We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have added this plugin to devDependencies, and here is my webpack.config.js:
var DuplicatePackageCheckerPlugin = require("duplicate-package-checker-webpack-plugin"); module.exports = { plugins: [new DuplicatePackageCheckerPlugin({ verbose: true, })] };
Problem: neither yarn build nor yarn start complain about this duplicate package:
yarn build
yarn start
$ grep aws-amplify yarn.lock aws-amplify-react@^0.1.52: resolved "https://registry.yarnpkg.com/aws-amplify-react/-/aws-amplify-react-0.1.52.tgz#0080a10ad14447a4a33ebe3855917c98ed009148" aws-amplify "^0.4.6" aws-amplify@^0.3.4: resolved "https://registry.yarnpkg.com/aws-amplify/-/aws-amplify-0.3.4.tgz#fc7e9398a51f6d071f3e3dd50017509b67efedfc" aws-amplify@^0.4.6: resolved "https://registry.yarnpkg.com/aws-amplify/-/aws-amplify-0.4.6.tgz#aa6485876ca37c75b600883be52924be78b2840f"
I am a newbie with webpack and yarn, so I am probably overlooking something obvious. Any pointers would be gratefully appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have added this plugin to devDependencies, and here is my webpack.config.js:
Problem: neither
yarn build
noryarn start
complain about this duplicate package:I am a newbie with webpack and yarn, so I am probably overlooking something obvious. Any pointers would be gratefully appreciated.
The text was updated successfully, but these errors were encountered: