我只是尝试使用 smart.json 将包添加到我的meteor项目中:
{
"packages": {
"scss": {},
"iron-router": {},
"normalize.css": {
"git": "https://github.com/rithis/meteor-normalize.css"
},
"Meteor.cron": {
"git": "https://github.com/alexsuslov/Meteor.cron"
}
}
在这种情况下,我手动添加了normalize.css
和Meteor.cron
。现在我做的时候
$> mrt update
这些包安装在packages目录中。到目前为止没有问题,但我认为它们没有被使用。我没有在浏览器中看到normalize.css并测试Meteor.cron我在server
目录中添加了一个测试文件
console.log(Meteor.Cron)
打印undefined
我有什么建议吗?
答案 0 :(得分:1)
您使用的是不正确的git clone网址。在你的smart.json中尝试这个
{
"packages": {
"scss": {},
"iron-router": {},
"normalize.css": {
"git": "https://github.com/rithis-archive/meteor-normalize.css.git"
},
"Meteor.cron": {
"git": "https://github.com/alexsuslov/Meteor.cron.git"
}
}