Martin Vladic
2 years ago
11 changed files with 69 additions and 14 deletions
Binary file not shown.
Before Width: | Height: | Size: 326 KiB After Width: | Height: | Size: 326 KiB |
@ -0,0 +1,3 @@
|
||||
{ |
||||
"eez-project-path": "Src/{{projectName}}.eez-project" |
||||
} |
@ -0,0 +1,52 @@
|
||||
/** |
||||
* @callback RenameFile |
||||
* @param {string} fileSrcRelativePath |
||||
* @param {string} fileDstRelativePath |
||||
* @returns {Promise<void>} |
||||
*/ |
||||
|
||||
/** |
||||
* @callback ReplaceInFile |
||||
* @param {string} fileRelativePath |
||||
* @param {string} searchValue |
||||
* @param {string} newValue |
||||
* @returns {Promise<void>} |
||||
*/ |
||||
|
||||
/** |
||||
* @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(".cproject", "{{projectName}}", context.projectName); |
||||
await context.replaceInFile(".project", "{{projectName}}", context.projectName); |
||||
|
||||
await context.renameFile("eez-flow-template-stm32f469i-disco.ioc", context.projectName + ".ioc"); |
||||
await context.replaceInFile(context.projectName + ".ioc", "{{projectName}}", context.projectName); |
||||
|
||||
await context.renameFile("Src/eez-flow-template-stm32f469i-disco.eez-project", "Src/" + context.projectName + ".eez-project"); |
||||
await context.renameFile("Src/eez-flow-template-stm32f469i-disco-gui.eez-project", "Src/" + context.projectName + "-gui.eez-project"); |
||||
await context.replaceInFile("Src/" + context.projectName + ".eez-project", "eez-flow-template-stm32f469i-disco-gui.eez-project", context.projectName + "-gui.eez-project"); |
||||
await context.replaceInFile("Src/" + context.projectName + "-gui.eez-project", "eez-flow-template-stm32f469i-disco.eez-project", context.projectName + ".eez-project"); |
||||
|
||||
await context.replaceInFile("Src/firmware.cpp", "{{projectName}}", context.projectName); |
||||
|
||||
await context.replaceInFile("Src/gui/hooks.cpp", "{{projectName}}", context.projectName); |
||||
|
||||
await context.replaceInFile("Src/platform/simulator/simulator.eez-project", "{{projectName}}", context.projectName); |
||||
|
||||
await context.replaceInFile("Src/platform/simulator/emscripten/index.html", "{{projectName}}", context.projectName); |
||||
|
||||
await context.replaceInFile("Src/platform/simulator/win32/icon.rc", "{{projectName}}", context.projectName); |
||||
|
||||
await context.replaceInFile("template/manifest.json", "{{projectName}}", context.projectName); |
||||
} |
||||
|
||||
module.exports = postProcessing; |
Loading…
Reference in new issue