resFactory / factory

Resource Factory is a universal approach to originating, refining, and rendering Markdown, HTML, type-safe SQL, or other assets that could comprise static sites or engineering artifacts.
GNU Affero General Public License v3.0
0 stars 3 forks source link

Make factory modules easier to import #16

Closed shah closed 3 years ago

shah commented 3 years ago

For external library consumers:

shah commented 3 years ago

factory/core/std/mod.ts is now the standard way of loading the RF core modules. They should be used like this in deps.ts:

export * as rfGovn from "../../../github.com/resFactory/factory/governance/mod.ts";
export * as rfStd from "../../../github.com/resFactory/factory/core/std/mod.ts";

Of course the relative paths are useful for development but production should use the tagged/pinned URLs. rfGovn should remain separate from rfStd.