mineos-market-client
    Preparing search index...

    Type Alias FileDependency

    A dependency on a file from a source URL.

    type FileDependency = {
        publicationName?: never;
        sourceUrl: string;
        path: `${string}.${string}` | "Main.lua";
    }
    Index

    Properties

    publicationName?: never
    sourceUrl: string

    URL to the raw file

    path: `${string}.${string}` | "Main.lua"

    Destination path within the package.

    • Assets/Biden.pic: Relative path, a file will be located in <root>/Applications/<Your Application>/Assets
    • /Libraries/Utils.lua: Absolute path, a file will be located in <root>/Libraries

    Using relative paths for libraries/scripts will fail the installation.