fix(config): migrate configuration loading to smartconfig and update build tooling compatibility
This commit is contained in:
@@ -3,8 +3,8 @@ import * as paths from './tsdocker.paths.js';
|
||||
import type { ITsDockerConfig } from './interfaces/index.js';
|
||||
|
||||
const buildConfig = async (): Promise<ITsDockerConfig> => {
|
||||
const npmextra = new plugins.npmextra.Smartconfig(paths.cwd);
|
||||
const config = npmextra.dataFor<ITsDockerConfig>('@git.zone/tsdocker', {
|
||||
const smartconfig = new plugins.smartconfig.Smartconfig(paths.cwd);
|
||||
const config = smartconfig.dataFor<ITsDockerConfig>('@git.zone/tsdocker', {
|
||||
registries: [],
|
||||
registryRepoMap: {},
|
||||
buildArgEnvMap: {},
|
||||
|
||||
Reference in New Issue
Block a user