使用本地Meteor包依赖项

使用本地Meteor包依赖项,meteor,Meteor,我最近派生了一个包来修改它,然后在稍后提交一个请求 在我的项目smart.json中,我对它的定义如下: "autoform": { "path": "../meteor-autoform" }, 它运行良好,我看到了我的修改 但我还需要修改autoform所依赖的包,所以我在autoform的smart.json文件上做了同样的事情: 但当我运行mrt启动我的应用程序时,我得到了: Problem installing simple-schema ✘ [/path/to/meteor-s

我最近派生了一个包来修改它,然后在稍后提交一个请求

在我的项目smart.json中,我对它的定义如下:

"autoform": {
  "path": "../meteor-autoform"
},
它运行良好,我看到了我的修改

但我还需要修改autoform所依赖的包,所以我在autoform的smart.json文件上做了同样的事情:

但当我运行mrt启动我的应用程序时,我得到了:

Problem installing simple-schema
✘ [/path/to/meteor-simple-schema] conflicts with [latest]
Can't resolve dependencies! Use --force if you don't mind mrt taking a wild guess and running your app anyway.
使用武力,但没有帮助

有什么想法吗?
谢谢

很可能是其他一些包依赖于简单模式并获取官方版本。在/package目录中搜索要查找的简单模式。还要检查您自己的smart.json或smart.lock是否不要求正式的简单模式。如果smart.lock中有该文件的痕迹,则可以安全地删除该文件

Problem installing simple-schema
✘ [/path/to/meteor-simple-schema] conflicts with [latest]
Can't resolve dependencies! Use --force if you don't mind mrt taking a wild guess and running your app anyway.