chore: Update some things to make a single export?

This commit is contained in:
J H
2024-02-12 15:15:25 -07:00
parent 17ec714277
commit 599da8f52c
11 changed files with 88 additions and 63 deletions

View File

@@ -1,20 +1,22 @@
import "./backup"
import "./config"
import "./config/builder"
import "./config/configTypes"
import "./health"
import "./health/checkFns"
import "./mainFn"
import "ts-matches"
import "./types"
import "@iarna/toml"
import "./types"
import "./util"
import "yaml"
import "./dependencyConfig"
import "./actions"
import "./manifest"
import "./inits"
export { Daemons } from "./mainFn/Daemons"
export { EmVer } from "./emverLite/mod"
export { Overlay } from "./util/Overlay"
export { Utils } from "./util/utils"
export * as actions from "./actions"
export * as backup from "./backup"
export * as config from "./config"
export * as configBuilder from "./config/builder"
export * as configTypes from "./config/configTypes"
export * as dependencyConfig from "./dependencyConfig"
export * as health from "./health"
export * as healthFns from "./health/checkFns"
export * as inits from "./inits"
export * as mainFn from "./mainFn"
export * as manifest from "./manifest"
export * as toml from "@iarna/toml"
export * as types from "./types"
export * as util from "./util"
export * as yaml from "yaml"
export * as matches from "ts-matches"
export * as YAML from "yaml"