Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/meteor/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Meteor软件包未加载_Meteor_Meteorite - Fatal编程技术网

Meteor软件包未加载

Meteor软件包未加载,meteor,meteorite,Meteor,Meteorite,我已经在我的meteor应用程序中添加了一些包,但似乎有时有些包无法加载。在本例中,crypto-sha1。这是smart.json文件: { "packages": { "accounts-ui-bootstrap-dropdown": {}, "underscore-string-latest": {}, "iron-router": {}, "iron-router-progress": {}, "streams": {}, "holde

我已经在我的meteor应用程序中添加了一些包,但似乎有时有些包无法加载。在本例中,crypto-sha1。这是smart.json文件:

{
  "packages": {
    "accounts-ui-bootstrap-dropdown": {},
    "underscore-string-latest": {},
    "iron-router": {},
    "iron-router-progress": {},
    "streams": {},
    "holder": {},
    "font-awesome": {},
    "collection-api": {},
    "filepicker": {},
    "fancybox": {},
    "jquery-ui": {},
    "jquery-ui-sortable": {},
    "jquery-ui-bootstrap": {},
    "moment": {},
    "fullcalendar": {},
    "bootboxjs": {},
    "crypto-base": {},
    "crypto-sha1": {},
    "crypto-md5": {},
    "dropbox": {}
  }
}

但是在引导期间,只加载了
crypto base
crypto-md5
。有什么线索吗?

1)你的
/meteor/packages
文件看起来怎么样?2) 您是否使用meteor或mrt运行应用程序?您是否尝试过mrt安装?3) 您确定未加载
crypto-sha1
的功能吗?也许这只是另一个软件包的依赖关系?谢谢@HubertOG 1)似乎还可以,我的意思是,这些软件包的链接就在那里2)两个都试过了,结果是一样的。mrt安装完成,没有效果3)CryptoJS对象应该有SHA1和HmacSHA1,但没有。我还验证了跟踪bundler.js文件,看起来它们不是crypto-SHA1,也不是crypto-hmac,不在所选软件包中。这种情况再次发生。这次使用的是我从xml2js meteor包中制作的叉子。我将这个:“xml2js”:{“git”:“}添加到smart.json,它被跳过了(不在.meteor/local/build文件夹中,也不在它的子文件夹中)@bitIO在您将它添加到smart.json后,您还需要运行
meteor add xml2js
在.meteor向meteor注册它/packages@imslavko我已经尝试了所有可能的途径。甚至只使用
mrt add
添加也会发生这种情况。事实上,这是第一次发生的方式。它不时发生在我身上,但我仍然无法确定复制的步骤:-(