Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: sdk/lib/_internal/pub/test/pub_test.dart

Issue 26351002: Rename "pub deploy" to "pub build". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Re-upload. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/_internal/pub/test/deploy/with_no_web_directory_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library pub_tests; 5 library pub_tests;
6 6
7 import 'package:scheduled_test/scheduled_test.dart'; 7 import 'package:scheduled_test/scheduled_test.dart';
8 8
9 import 'descriptor.dart' as d; 9 import 'descriptor.dart' as d;
10 import 'test_pub.dart'; 10 import 'test_pub.dart';
(...skipping 10 matching lines...) Expand all
21 --verbosity Control output verbosity. 21 --verbosity Control output verbosity.
22 22
23 [all] Show all output including internal tracing messages. 23 [all] Show all output including internal tracing messages.
24 [io] Also show IO operations. 24 [io] Also show IO operations.
25 [normal] Show errors, warnings, and user messages. 25 [normal] Show errors, warnings, and user messages.
26 [solver] Show steps during version resolution. 26 [solver] Show steps during version resolution.
27 27
28 -v, --verbose Shortcut for "--verbosity=all". 28 -v, --verbose Shortcut for "--verbosity=all".
29 29
30 Available commands: 30 Available commands:
31 deploy Copy and compile all Dart entrypoints in the 'web' directory. 31 build Copy and compile all Dart entrypoints in the 'web' directory.
32 get Get the current package's dependencies. 32 get Get the current package's dependencies.
33 help Display help information for Pub. 33 help Display help information for Pub.
34 publish Publish the current package to pub.dartlang.org. 34 publish Publish the current package to pub.dartlang.org.
35 serve Run a local web development server. 35 serve Run a local web development server.
36 upgrade Upgrade the current package's dependencies to latest versions. 36 upgrade Upgrade the current package's dependencies to latest versions.
37 uploader Manage uploaders for a package on pub.dartlang.org. 37 uploader Manage uploaders for a package on pub.dartlang.org.
38 version Print pub version. 38 version Print pub version.
39 39
40 Use "pub help [command]" for more information about a command. 40 Use "pub help [command]" for more information about a command.
41 """; 41 """;
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 // The "version" file generated on developer builds is a little funky and 168 // The "version" file generated on developer builds is a little funky and
169 // we need to make sure we don't choke on it. 169 // we need to make sure we don't choke on it.
170 d.dir(sdkPath, [ 170 d.dir(sdkPath, [
171 d.file('version', '0.1.2.0_r16279_bobross'), 171 d.file('version', '0.1.2.0_r16279_bobross'),
172 ]).create(); 172 ]).create();
173 173
174 schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n"); 174 schedulePub(args: ['version'], output: "Pub 0.1.2+0.r16279.bobross\n");
175 }); 175 });
176 }); 176 });
177 } 177 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/test/deploy/with_no_web_directory_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698