Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3b52c87d
Commit
3b52c87d
authored
Feb 13, 2017
by
Todd Volkert
Committed by
GitHub
Feb 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump deps on `package:file` and `package:process` (#8097)
parent
93c6dbb9
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
9 deletions
+9
-9
pubspec.yaml
packages/flutter_driver/pubspec.yaml
+1
-1
asset.dart
packages/flutter_tools/lib/src/asset.dart
+1
-1
process.dart
packages/flutter_tools/lib/src/base/process.dart
+1
-1
utils.dart
packages/flutter_tools/lib/src/base/utils.dart
+1
-1
analyze_base.dart
packages/flutter_tools/lib/src/commands/analyze_base.dart
+1
-1
build.dart
packages/flutter_tools/lib/src/commands/build.dart
+1
-1
build_aot.dart
packages/flutter_tools/lib/src/commands/build_aot.dart
+1
-1
pubspec.yaml
packages/flutter_tools/pubspec.yaml
+2
-2
No files found.
packages/flutter_driver/pubspec.yaml
View file @
3b52c87d
...
...
@@ -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'
...
...
packages/flutter_tools/lib/src/asset.dart
View file @
3b52c87d
...
...
@@ -338,7 +338,7 @@ Map<_Asset, List<_Asset>> _parseAssets(
return
result
;
excludeDirs
=
excludeDirs
.
map
(
(
String
exclude
)
=>
path
.
absolute
(
exclude
)
+
fs
.
path
S
eparator
).
toList
();
(
String
exclude
)
=>
path
.
absolute
(
exclude
)
+
fs
.
path
.
s
eparator
).
toList
();
if
(
manifestDescriptor
.
containsKey
(
'assets'
))
{
for
(
String
asset
in
manifestDescriptor
[
'assets'
])
{
...
...
packages/flutter_tools/lib/src/base/process.dart
View file @
3b52c87d
...
...
@@ -199,7 +199,7 @@ void _traceCommand(List<String> args, { String workingDirectory }) {
if
(
workingDirectory
==
null
)
printTrace
(
argsText
);
else
printTrace
(
"[
$workingDirectory${fs.path
S
eparator}
]
$argsText
"
);
printTrace
(
"[
$workingDirectory${fs.path
.s
eparator}
]
$argsText
"
);
}
String
_runWithLoggingSync
(
List
<
String
>
cmd
,
{
...
...
packages/flutter_tools/lib/src/base/utils.dart
View file @
3b52c87d
...
...
@@ -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
.
path
S
eparator
;
String
cwd
=
fs
.
currentDirectory
.
path
+
fs
.
path
.
s
eparator
;
return
fullPath
.
startsWith
(
cwd
)
?
fullPath
.
substring
(
cwd
.
length
)
:
fullPath
;
}
...
...
packages/flutter_tools/lib/src/commands/analyze_base.dart
View file @
3b52c87d
...
...
@@ -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
.
path
S
eparator
;
String
prefix
=
root
+
fs
.
path
.
s
eparator
;
for
(
String
file
in
fileList
)
{
file
=
path
.
normalize
(
path
.
absolute
(
file
));
if
(
file
==
root
||
file
.
startsWith
(
prefix
))
...
...
packages/flutter_tools/lib/src/commands/build.dart
View file @
3b52c87d
...
...
@@ -87,7 +87,7 @@ class BuildCleanCommand extends FlutterCommand {
@override
Future
<
Null
>
runCommand
()
async
{
Directory
buildDir
=
fs
.
directory
(
getBuildDirectory
());
printStatus
(
"Deleting '
${buildDir.path}${fs.path
S
eparator}
'."
);
printStatus
(
"Deleting '
${buildDir.path}${fs.path
.s
eparator}
'."
);
if
(!
buildDir
.
existsSync
())
return
;
...
...
packages/flutter_tools/lib/src/commands/build_aot.dart
View file @
3b52c87d
...
...
@@ -66,7 +66,7 @@ class BuildAotCommand extends BuildSubCommand {
if
(
outputPath
==
null
)
throwToolExit
(
null
);
printStatus
(
'Built to
$outputPath${fs.path
S
eparator}
.'
);
printStatus
(
'Built to
$outputPath${fs.path
.s
eparator}
.'
);
}
}
...
...
packages/flutter_tools/pubspec.yaml
View file @
3b52c87d
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment