lib/src/lib.ts
garrettmills 7506d6567d
All checks were successful
continuous-integration/drone/push Build is passing
Support registering namespaced view directories; add lib() universal path
2021-06-24 00:14:04 -05:00

9 lines
184 B
TypeScript

import {UniversalPath} from './util'
/**
* Get the path to the root of the @extollo/lib package.
*/
export function lib(): UniversalPath {
return new UniversalPath(__dirname)
}