/** * @callback RenameFile * @param {string} fileSrcRelativePath * @param {string} fileDstRelativePath * @returns {Promise} */ /** * @callback ReplaceInFile * @param {string} fileRelativePath * @param {string} searchValue * @param {string} newValue * @returns {Promise} */ /** * @typedef {Object} WizardContext * @property {string} projectDirPath * @property {string} projectName * @property {RenameFile} renameFile * @property {ReplaceInFile} replaceInFile */ /** * @param {WizardContext} context */ async function postProcessing(context) { await context.replaceInFile("CMakeLists.txt", "lvgl-template-web", context.projectName); await context.replaceInFile("README.md", "{{projectDirPath}}", context.projectDirPath); await context.replaceInFile("README.md", "{{projectName}}", context.projectName); await context.renameFile("lvgl-template-web.eez-project", context.projectName + ".eez-project"); } module.exports = postProcessing;