如何在github上使用自己的包迁移到Meteor 0.9

如何在github上使用自己的包迁移到Meteor 0.9,meteor,packages,meteorite,Meteor,Packages,Meteorite,我有一个Meteor 0.8.3项目,我尝试使用Meteor update进行更新,但我得到了以下结果: This project is at the latest release which is compatible with your current package constraints. 我已经确定问题在于我从github使用的两个定制“包”,我在smart.json中提到了这两个包: 我通过删除所有软件包,然后更新Meteor,然后一个接一个地将它们添加回来,建立了这一点。我得到了

我有一个Meteor 0.8.3项目,我尝试使用Meteor update进行更新,但我得到了以下结果:

This project is at the latest release which is compatible with your
current package constraints.
我已经确定问题在于我从github使用的两个定制“包”,我在smart.json中提到了这两个包:

我通过删除所有软件包,然后更新Meteor,然后一个接一个地将它们添加回来,建立了这一点。我得到了一个错误:

Figuring out the best package versions to use. This may take a moment.
Refreshing package metadata. This may take a moment.
Could not satisfy all the specified constraints:
Error: conflict: accounts-ui can't be satisfied
My.meteor/packages文件如下所示:

standard-app-packages
less
(... lots more I'm leaving out ...)
accounts-google
accounts-ui
accounts-password
iron-router
我将最后一行更新为iron:router当然

accounts ui中的packages.js文件为:

另一个自定义包中的同一个文件相当长,但链接很长


如何将这两个包迁移到Meteor 0.9.2.2?谢谢

你读过吗?顺便问一下,你为什么要使用定制版本?谢谢juanpastas-我从来没有在Atmosphere上放过我的定制包,所以我不知道如何将链接中的信息应用到我的情况中-我该怎么做?我使用的是自定义版本,因此我可以更改登录按钮和下拉表单的外观。您应该使用官方帐户用户界面和未设置样式的帐户用户界面,后者允许设置自定义样式。所以:我会从smart.json中删除定制包,并遵循0.9升级过程,这是meteor UpdateGraat自己解释的,我会尝试一下。
standard-app-packages
less
(... lots more I'm leaving out ...)
accounts-google
accounts-ui
accounts-password
iron-router
Package.describe({
    summary: "Simple templates to add login widgets to an app"
});
Package.on_use(function (api) {
    // Export Accounts (etc) to packages using this one.
    api.imply('accounts-base', ['client', 'server']);
    api.use('accounts-ui-unstyled', 'client');
    api.use('less', 'client');
    api.add_files(['login_buttons.less'], 'client');
});