如何从github添加一个dart包到我的项目?

时间:2013-11-30 04:43:56

标签: dart

所以我有一个dart程序,我想从github添加一个dart包,而不是使用IDE包管理器添加包的正常方式,因为github版本有最新的代码。

这样做的过程是什么?


这在现实世界中对我有用。

name: game
description: A sample web application
dependencies:
  browser: any
  three:
    git:
      ref: master
      url: 'git://github.com/threeDart/three.dart.git'

1 个答案:

答案 0 :(得分:7)

您可以在pubspec.yaml文件中添加一个直接指向git网址的依赖项。

例如,这个pubspec.yaml文件为kittens包添加了一个依赖项:

name: My Dart program
description: Blah
dependencies:
  kittens:
    git: git://github.com/munificent/kittens.git

有关详细信息,请参阅pubspec.yaml docs