what could be a deployment strategy with pubspec on dart

前端 未结 3 1252
眼角桃花
眼角桃花 2021-01-17 18:38

What would be the best way to actually deploy dart code that has pubspec.yaml dependencies? A common thing I\'ve done in the past was to create demos and deploy to github pa

3条回答
  •  广开言路
    2021-01-17 18:52

    We aren't there yet, but pub will in the future support a deploy command. That will do things like run dart2js and concatenate/minify your code. It will also physically bring in all of your dependencies so you don't have symlinks. The end result will be a single directory that contains everything your package needs to run.

提交回复
热议问题