Коммит
e763392d4a
|
@ -1,3 +1,7 @@
|
|||
## 0.6.7
|
||||
* Bug fixes
|
||||
* Migrated CodePush functionality to App Center extension for VS Code
|
||||
|
||||
## 0.6.6
|
||||
* Bug fixes
|
||||
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче