I have this template:
Sample
Inside a Meteor app I can add this t
Solved! Add this line:
api.use(['templating'], 'client');
it is also important to include the html
file before the js
api.add_files("client/sampleTemplate.html", "client");
api.add_files("client/sampleTemplate.js", "client");
Include in file packages.js
of package
before
api.use('meteor-platform');
api.use('ui');`
after first ".html" files, after ".js" files
api.addFiles('filename.html','client');
api.addFiles('filename.js','client');`