3

そこで、Trigger.io を使用して、iOS および Android 用のネイティブ プラグインをいくつか作成しています。

Toolkit は自動的にインスペクター プロジェクトを作成します。

私の質問は、これらのプロジェクトは、trigger.io のメジャー (/マイナー) アップデートの間に変更される可能性がありますか? ソース管理に入れないようにすべき特定のファイルはありますか?

ありがとう!

4

1 に答える 1

2

We do sometimes update the inspector projects in minor platform version releases - most of the time, those changes won't affect your development: bug fixes, improvements to unrelated modules and so on. For those cases, just changing the platform_version in manifest.json and updating your inspector projects will pick up the new code.

However, in some cases we also change the HTML/CSS/JS the runnable inspector apps use (e.g. support for working with files). In those cases, you need to remove your existing inspector projects from your file system before updating, so that you get a clean start with the new inspector app.

Note, however, that this will delete any manual changes you made to the inspector app in assets/src - you'll need to re-do those changes after updating.

The main update to the inspector projects that we have planned will fix this slightly awkward workflow - even platform versions that affect the inspector apps will be seamlessly updateable by just changing your manifest: that change is probably 1 - 2 months out.

At the moment, my recommendation would be to put all of the plugin files into version control (e.g. https://github.com/trigger-corp/plugin-multi-image-select).

于 2013-03-18T13:23:09.460 に答える