-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
Description
Do you want to request a feature or report a bug?
bug
What is the current behavior?
after install, I am seeing errors 'chokidar' is not installed. It seems to be included in babel-cli
, watchpack
, etc modules but it is not in node_modules
. However, I can chokidar
in yarn.lock
. This makes me enable to do webpack --watch
If the current behavior is a bug, please provide the steps to reproduce.
{
"name": "yarnjs-bug-missing-deps",
"description": "",
"version": "1.0.0",
"author": "Jaeho Lee <[email protected]>",
"licenses": "proprietary",
"scripts": {
"postinstall": ""
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.4.5",
"webpack": "^1.12.12"
}
}
Use this package.json to yarn
and see chokidar
is missing in node_modules
What is the expected behavior?
chokidar
shouldn't be missing; There could be another dependencies gone missing but currently chokidar
is only thing I can find so far.
Please mention your node.js, yarn and operating system version.
Node v6.3.0, OSX 10.10.5
tricoder42, MattSPalmer, shepmaster, Mido22, tomchentw and 11 more