Dev/Flutter

Flutter Pub outdated

healthyryu 2022. 5. 10. 12:43

1. 업그레이드 가능한 패키지가 있는지 찾는다.

$flutter pub outdated

 

 

2. 패키지들을 업그레이드 시켜준다.

$flutter pub upgrade

 

3. 다시 확인해서 업그레이드 가능한 패키지들을 찾아보면 업그레이드 됐음을 알 수 있다.

$flutter pub outdated

 

 

 

Flutter 명령어

  add         pubspec.yaml에 의존성을 추가한다.
  cache       Work with the Pub system cache.
  deps        패키지 의존성들을 출력한다.
  downgrade   플러터 프로젝트의 패키지들을 다운그레이드한다.
  get         플러터 프로젝트로 패키지들을 가져온다.
  global      Work with Pub global packages.
  login       Log into pub.dev..
  logout      Log out of pub.dev..
  outdated    업그레이드 가능한 패키지를 찾아준다.
  pub         Pass the remaining arguments to Dart's "pub" tool.
  publish     Publish the current package to pub.dartlang.org.
  remove      Removes a dependency from the current package..
  run         Run an executable from a package.
  test        Run the "test" package.
  upgrade     Upgrade the current package's dependencies to latest versions..
  uploader    Manage uploaders for a package on pub.dev.
  version     Pub의 버전을 출력한다.

 

반응형