template-engine-preview-3 を iron-router パッケージと一緒に実行するには?
Iron-Router パッケージの Git リポジトリには、 shark というブランチがあり、Iron-Router を meteor の新しいテンプレート エンジン ( template-engine-preview-3 など) と一緒に使用できるようにする必要があります。
.meteor/release :
template-engine-preview-3
smart.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 を正常に実行できた人はいますか?