Bump deps on package:file and package:process (#8097)

This commit is contained in:
Todd Volkert 2017-02-13 09:55:54 -08:00 committed by GitHub
parent 93c6dbb9f7
commit 3b52c87da6
8 changed files with 9 additions and 9 deletions

View file

@ -8,7 +8,7 @@ environment:
sdk: '>=1.19.0 <2.0.0'
dependencies:
file: '^1.0.1'
file: '^2.0.1'
json_rpc_2: '^2.0.0'
matcher: '>=0.12.0 <1.0.0'
path: '^1.4.0'

View file

@ -338,7 +338,7 @@ Map<_Asset, List<_Asset>> _parseAssets(
return result;
excludeDirs = excludeDirs.map(
(String exclude) => path.absolute(exclude) + fs.pathSeparator).toList();
(String exclude) => path.absolute(exclude) + fs.path.separator).toList();
if (manifestDescriptor.containsKey('assets')) {
for (String asset in manifestDescriptor['assets']) {

View file

@ -199,7 +199,7 @@ void _traceCommand(List<String> args, { String workingDirectory }) {
if (workingDirectory == null)
printTrace(argsText);
else
printTrace("[$workingDirectory${fs.pathSeparator}] $argsText");
printTrace("[$workingDirectory${fs.path.separator}] $argsText");
}
String _runWithLoggingSync(List<String> cmd, {

View file

@ -87,7 +87,7 @@ String getElapsedAsMilliseconds(Duration duration) => '${duration.inMilliseconds
/// Return a relative path if [fullPath] is contained by the cwd, else return an
/// absolute path.
String getDisplayPath(String fullPath) {
String cwd = fs.currentDirectory.path + fs.pathSeparator;
String cwd = fs.currentDirectory.path + fs.path.separator;
return fullPath.startsWith(cwd) ? fullPath.substring(cwd.length) : fullPath;
}

View file

@ -58,7 +58,7 @@ bool inRepo(List<String> fileList) {
if (fileList == null || fileList.isEmpty)
fileList = <String>[path.current];
String root = path.normalize(path.absolute(Cache.flutterRoot));
String prefix = root + fs.pathSeparator;
String prefix = root + fs.path.separator;
for (String file in fileList) {
file = path.normalize(path.absolute(file));
if (file == root || file.startsWith(prefix))

View file

@ -87,7 +87,7 @@ class BuildCleanCommand extends FlutterCommand {
@override
Future<Null> runCommand() async {
Directory buildDir = fs.directory(getBuildDirectory());
printStatus("Deleting '${buildDir.path}${fs.pathSeparator}'.");
printStatus("Deleting '${buildDir.path}${fs.path.separator}'.");
if (!buildDir.existsSync())
return;

View file

@ -66,7 +66,7 @@ class BuildAotCommand extends BuildSubCommand {
if (outputPath == null)
throwToolExit(null);
printStatus('Built to $outputPath${fs.pathSeparator}.');
printStatus('Built to $outputPath${fs.path.separator}.');
}
}

View file

@ -12,7 +12,7 @@ dependencies:
args: ^0.13.4
coverage: ^0.8.0
crypto: '>=1.1.1 <3.0.0'
file: '^1.0.1'
file: 2.0.1
http: ^0.11.3
intl: '>=0.14.0 <0.15.0'
json_rpc_2: ^2.0.0
@ -23,7 +23,7 @@ dependencies:
package_config: '>=0.1.5 <2.0.0'
path: ^1.4.0
platform: 1.0.1
process: 1.1.0
process: 2.0.0
pub_semver: ^1.0.0
stack_trace: ^1.4.0
usage: ^3.0.0