paths - paths.node.ts => path.ts

This commit is contained in:
Benjamin Pasero
2019-02-12 20:36:09 +01:00
parent b0acf49b18
commit 622b3d62dd
156 changed files with 161 additions and 159 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import { buildHelpMessage, buildVersionMessage } from 'vs/platform/environment/n
import { ParsedArgs } from 'vs/platform/environment/common/environment';
import product from 'vs/platform/node/product';
import pkg from 'vs/platform/node/package';
import * as paths from 'vs/base/common/paths.node';
import * as paths from 'vs/base/common/path';
import * as os from 'os';
import * as fs from 'fs';
import { whenDeleted } from 'vs/base/node/pfs';
+1 -1
View File
@@ -6,7 +6,7 @@
import { localize } from 'vs/nls';
import product from 'vs/platform/node/product';
import pkg from 'vs/platform/node/package';
import * as path from 'vs/base/common/paths.node';
import * as path from 'vs/base/common/path';
import * as semver from 'semver';
import { sequence } from 'vs/base/common/async';
+1 -1
View File
@@ -3,7 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as path from 'vs/base/common/paths.node';
import * as path from 'vs/base/common/path';
import * as arrays from 'vs/base/common/arrays';
import * as strings from 'vs/base/common/strings';
import * as extpath from 'vs/base/common/extpath';
+1 -1
View File
@@ -3,7 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { join } from 'vs/base/common/paths.node';
import { join } from 'vs/base/common/path';
import { tmpdir } from 'os';
import { writeFile } from 'vs/base/node/pfs';