如何将 template-engine-preview-3 与 iron-router 包一起运行?
Iron-Router 包的 Git 存储库有一个名为Shark的 分支,我相信它应该允许将 Iron-Router 与流星的新模板引擎(如 template-engine-preview-3 )一起使用
.meteor/释放:
template-engine-preview-3
智能.json:
{
"packages": {
"iron-router": {
"git": "https://github.com/EventedMind/iron-router.git",
"branch": "shark"
},
...
}
}
智能锁:
...
"iron-router": {
"git": "https://github.com/EventedMind/iron-router.git",
"branch": "shark",
"commit": "4e1ee0581d68bff422a915dacb0bd30eae10fe08"
}
...
另外我运行mrt update
. Meteor 应用程序使用以下命令启动:meteor --release template-engine-preview-3
任何人都能够使用新的模板引擎成功运行 Iron-router 吗?