meteor - How to modify already installed Atmosphere packages -
before meteor 0.9.0 edit atmosphere package files after has been installed. templates pre-compiled , hidden in meteor core, can't edit html(templates).
i found way have modified package. load github, modify , add app-specific packages /packages directory. can continuously modify package.
does know better way ?
thank you.
you right, example package mrt:accounts-t9n, have following steps
1- cd yourproject && mkdir packages && cd packages
2- git clone https://github.com/softwarerero/meteor-accounts-t9n.git
3- cd meteor-accounts-t9n
4- edit package.js , change line 4 name: "mrt:accounts-t9n"
5- cd .. && meteor add mrt:accounts-t9n
for moment solution, don't find another.
Comments
Post a Comment