ember.js 应用程序中 /node_modules 中修改插件的最佳目录结构?

Best directory structure for modified addons in /node_modules in an ember.js app?

我修改了一些插件,所有插件都由 git 管理。升级的时候需要注意清空node_modules目录时不要删除这些模块,为npm install做准备。

是否有解决方案,例如将自定义模块嵌套在另一个目录中,在 node_modules 下或其他地方?需要什么配置(如果有)?

您应该创建自己的 Ember 插件,使用原始模块作为基础,而不是手动直接编辑 node_modules 目录中的插件文件。