1

我正在尝试将 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
4

1 回答 1

3

看起来气氛可能有问题,您可以手动添加包。

在您的应用程序根目录中修改您的smart.json文件,使其看起来像(我添加了基础包)。

{
    "packages": {
        "foundation" :{
            "git": "https://github.com/IslamMagdy/meteor-foundation.git"
        }
    }
}

然后运行mrt,它应该直接从 git 添加包,并保持最新。

编辑:我尝试了上面的包,但它有点小故障。但这确实对我有用:

mrt add foundation-custom

在执行此操作之前,不要忘记从 smart.json 中删除基础包。

于 2013-02-12T19:41:45.017 回答