How to modify already installed Atmosphere packages

后端 未结 1 1157
我在风中等你
我在风中等你 2020-12-16 04:10

Before meteor 0.9.0 I could edit Atmosphere package files after it has been installed. Now templates are pre-compiled and hidden in meteor core, so I can\'t edit html(templa

相关标签:
1条回答
  • 2020-12-16 04:56

    you are right, for example with this package mrt:accounts-t9n, I have following this 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 and change line 4 to name: "mrt:accounts-t9n"
    5- cd .. && meteor add mrt:accounts-t9n

    for this moment is the solution, I don't find another.

    0 讨论(0)
提交回复
热议问题