Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to modify already installed Atmosphere packages

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(templates).

I found only way to have modified package. Load it from GitHub, modify it and then add as app-specific packages to the /packages directory. Then I can continuously modify this package.

Does anyone know better way ?

Thank you.

like image 559
Jevgenijs Golojads Avatar asked Sep 10 '14 18:09

Jevgenijs Golojads


People also ask

How do you update meteor packages?

If you want to update to a newer version of a package after installing it, use meteor update . You can run meteor update without any arguments to update all packages and Meteor itself to their latest versions, or pass a specific package to update just that one, for example meteor update ostrio:flow-router-extra .

How do I change the firmware on my Switch?

Ensure your console has the latest system update installed. From the Nintendo Switch HOME Menu, select System Settings. Scroll down to System. Select Update Dock, then Begin Update to begin updating the dock's firmware.

What is firmware 14.1 2 Rebootless update?

[Nintendo Switch Firmware Update] Nintendo has released a “rebootless” update for 14.1. 2. The only changes are to the bad words list. A large amount of swears, racial slurs, words of a sexual nature, references to terrorist organizations, and more were added to all languages.

How do you load an atmosphere Switch?

Launching Atmosphere CFW To launch Atmosphere: Enter RCM on your Switch. Push the Hekate payload to your Switch. Tap 'Launch > CFW (sysMMC)'


1 Answers

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.

like image 70
Walter Zalazar Avatar answered Oct 20 '22 00:10

Walter Zalazar