mikaeljorhult / brackets-todo

Brackets/Edge Code extension that displays all TODO comments in current document or project.
144 stars 37 forks source link

Global Mustache is deprecated #129

Closed ficristo closed 7 years ago

ficristo commented 7 years ago

There are some deprecation warnings raised like this: Use brackets.getModule("thirdparty/mustache/mustache") instead of global Mustache. Could you fix them?

anephew commented 7 years ago

Just need to add:

Mustache = brackets.getModule("thirdparty/mustache/mustache");

mikaeljorhult commented 7 years ago

This is now in the current master and will be released with the next version of the extension.

ficristo commented 7 years ago

Thank you.