Files
aklive2d/libs/append.js
2024-08-02 14:52:56 +08:00

10 lines
283 B
JavaScript

/* eslint-disable no-undef */
import path from 'path'
import { appendSync } from './file.js'
export function appendMainConfig(operatorName) {
appendSync(
`\n ${operatorName}: !include config/${operatorName}.yaml`,
path.join(__projectRoot, 'config.yaml')
)
}