Files
aklive2d/libs/append.js
2023-07-31 08:13:49 -04:00

10 lines
285 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')
)
}