/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { Page } from './pages'; import { readmePathOnDocsGenerator } from './settings'; import { createFile } from './files-manager'; /** * This function will create a readme to each page, if it doesn't exist * * @param pages object with all the pages */ export const createReadmes = (pages: Array): void => { pages.forEach(page => { const readmeFilePath = `${readmePathOnDocsGenerator}/${page.name}.md`; createFile(readmeFilePath, ''); }); };