From 68f80bb1cc6fd763dc6f42c50a93c77a0ac6f94b Mon Sep 17 00:00:00 2001 From: Alex Li Date: Fri, 13 Dec 2024 23:38:37 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20Update=20helping=20messages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/src/command/add.dart | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/src/command/add.dart b/lib/src/command/add.dart index 5fe7f048a..eb0c5b067 100644 --- a/lib/src/command/add.dart +++ b/lib/src/command/add.dart @@ -58,7 +58,7 @@ Make dependency overrides by prefixing with "override:". Add packages with specific constraints or other sources by giving a descriptor after a colon. -For example: +For example (follow the same format including spaces): * Add a hosted dependency at newest compatible stable version: `$topLevelProgram pub add foo` * Add a hosted dev dependency at newest compatible stable version: @@ -67,19 +67,19 @@ For example: `$topLevelProgram pub add foo:^1.2.3` * Add multiple dependencies: `$topLevelProgram pub add foo dev:bar` + * Add a dependency override: + `$topLevelProgram pub add override:foo:1.0.0` * Add a path dependency: - `$topLevelProgram pub add 'foo:{"path":"../foo"}'` + `$topLevelProgram pub add "foo:{path: ../foo}"` * Add a hosted dependency: - `$topLevelProgram pub add 'foo:{"hosted":"my-pub.dev"}'` + `$topLevelProgram pub add "foo:{hosted: https://my-pub.dev}"` * Add an sdk dependency: - `$topLevelProgram pub add 'foo:{"sdk":"flutter"}'` + `$topLevelProgram pub add "foo:{sdk: flutter}"` * Add a git dependency: - `$topLevelProgram pub add 'foo:{"git":"https://github.com/foo/foo"}'` - * Add a dependency override: - `$topLevelProgram pub add 'override:foo:1.0.0'` + `$topLevelProgram pub add "foo:{git: https://github.com/foo/foo}"` * Add a git dependency with a path and ref specified: `$topLevelProgram pub add \\ - 'foo:{"git":{"url":"../foo.git","ref":"","path":""}}'`'''; + "foo:{git:{url: ../foo.git, ref: , path: }}"`'''; @override String get argumentsDescription =>