fluidtrends/nodu

View on GitHub
src/main.ts

Summary

Maintainability
A
0 mins
Test Coverage
import path from 'path'
import * as slana from 'slana'

import {
    resolveAll,
    logError 
} from '.'

export function run() {
    try {
        resolveAll()
        slana.run(path.dirname(__dirname))
    } catch (e) {
        logError(e)
    }
}