Quenty / NevermoreEngine

ModuleScript loader with reusable and easy unified server-client modules for faster game development on Roblox
https://quenty.github.io/NevermoreEngine/
MIT License
421 stars 124 forks source link

Nevermore x Rojo #250

Open madeinjei opened 2 years ago

madeinjei commented 2 years ago

Currently the documentation written explains how to install packages with npm and how to install Nevermore using the command bar. Is there no "CLEAN" way to install nevermore packages into rojo being that most if not all the folders are nested with their own project.json files. I saw a similar issue posted under `Rojo's issues ( https://github.com/rojo-rbx/rojo/issues/383 & https://github.com/rojo-rbx/rojo/pull/472 ) but it seemed it ended after that and nothing was said about it again.

Is there a solution to this issue or any workarounds, or is this still an issue?

OttoHatt commented 2 years ago

You can sync nevermore packages with vanilla Rojo by adding this entry to your .json file. It will ignore the 'corrupt' project files used by Quenty's Rojo fork:

"globIgnorePaths": ["**/node_modules.project.json"],

Then it's as easy as:

"servicebag": {
    "$path": "lib/nevermore/src/servicebag"
},
"signal": {
    "$path": "lib/nevermore/src/signal"
},