Merge pull request #684 from max-mironov/prepare-0.6.7

Prepare 0.6.7
This commit is contained in:
Max 2018-04-19 09:30:38 +03:00 коммит произвёл GitHub
Родитель 9f81d43d06 3b05aadfc3
Коммит e763392d4a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 6 добавлений и 9 удалений

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

@ -1,3 +1,7 @@
## 0.6.7
* Bug fixes
* Migrated CodePush functionality to App Center extension for VS Code
## 0.6.6
* Bug fixes

2
npm-shrinkwrap.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "vscode-react-native",
"version": "0.6.6",
"version": "0.6.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,7 +1,7 @@
{
"name": "vscode-react-native",
"displayName": "React Native Tools",
"version": "0.6.6",
"version": "0.6.7",
"private": true,
"publisher": "vsmobile",
"icon": "images/icon.png",

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

@ -79,15 +79,8 @@ var checkImports = function() {
var workingDirectory = path.dirname(file.path);
importStatements.forEach(function(importStatement) {
var modulePath = re.exec(importStatement);
if (modulePath && modulePath[1]) {
// Module app-center-node-client and it's submodules are relative and doesn't use *.ts files but *.d.ts instead
// so no need to check them
if (modulePath[1].startsWith("../lib/app-center-node-client")) {
return;
}
var moduleFilePath = path.resolve(workingDirectory, modulePath[1] + ".ts");
if (!existsCaseSensitive(moduleFilePath)) {