How to import module namespaces from julia session with PackageCompiler?

I’m trying to distribute my package with a PackageCompiler, so my users can run my package by just clicking the executable.

And I also need to use the REPL, because I want my users to play with packages with commands I’ve exposed them to use. So I figured I can do that by using bin/julia.exe from compiled app. Which works, but I couldn’t import a package namespace, I need to type in package name every time I want to do something with compiled package.

Is there any solution for this?

Answering to my self :sweat_smile:. Ok using Main.TextAdventure works. because it’s already loaded

화면 캡처 2022-03-31 165449