This commit is contained in:
Erich Gamma 2017-04-10 21:41:51 +02:00
Родитель 3424c55e1e
Коммит bcc1d627db
3 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,4 @@
- 0.1.9 bug fixes do not validate `yarn` managed modules with `npm` [#34](https://github.com/Microsoft/vscode-npm-scripts/issues/34)
- 0.1.7/0.1.8 bug fixes
- 0.1.6 Fully support the `includeDirectories` setting, issue [#24](https://github.com/Microsoft/vscode-npm-scripts/issues/24)
- 0.1.4/0.1.5 Handle the case that npm is not installed more gracefully

Просмотреть файл

@ -3,6 +3,8 @@
This extension supports running npm scripts defined in the `package.json` file and validating the installed modules
against the dependencies defined in the `package.json`.
**Notice** The validation is done by running `npm` and it is not run when the modules are managed by `yarn`.
The `package.json` validation reports warnings for modules:
- that are defined in the package.json, but that are not installed
- that are installed but not defined in the package.json

Просмотреть файл

@ -2,7 +2,7 @@
"name": "vscode-npm-script",
"description": "npm support for VS Code",
"displayName": "npm",
"version": "0.1.8",
"version": "0.1.9",
"publisher": "eg2",
"icon": "npm_icon.png",
"engines": {