我正在尝试使用陨石将ZURB Foundation软件包(https://github.com/IslamMagdy/meteor-foundation)添加到项目中,但是我收到错误。
文档告诉我在终端中运行mrt add foundation
,但是当我这样做时,我收到以下错误消息:
/usr/local/lib/node_modules/meteorite/lib/dependencies/package.js:50
throw 'No package named ' + self.name + ' was found in the atmosphere da
^
No package named foundation was found in the atmosphere database
答案 0 :(得分:3)
看起来氛围可能有问题,您可以手动添加包。
修改您的应用程序根目录中的smart.json
文件,使其看起来像(我已经添加了基础包)。
{
"packages": {
"foundation" :{
"git": "https://github.com/IslamMagdy/meteor-foundation.git"
}
}
}
然后运行mrt
,它应该直接从git添加包,并使其保持最新。
编辑:我尝试了上面的软件包,它有点小问题。但这对我有用:
mrt add foundation-custom
在执行此操作之前,不要忘记从smart.json中删除基础包。