diff --git a/changelog.md b/changelog.md index 5cda1e9..7484631 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-10-27 - 1.10.3 - fix(mod_format) +Reorder TypeScript formatting steps in mod_format module + +- Moved TypeScript configuration formatting earlier in the sequence for better logical consistency. + ## 2024-10-27 - 1.10.2 - fix(format) Add logging for tsconfig.json formatting diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index a3af8a6..dface4a 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/cli', - version: '1.10.2', + version: '1.10.3', description: 'A CLI toolbelt to streamline local development cycles by using various gitzone utilities.' } diff --git a/ts/mod_format/index.ts b/ts/mod_format/index.ts index ac33494..472bf95 100644 --- a/ts/mod_format/index.ts +++ b/ts/mod_format/index.ts @@ -29,10 +29,10 @@ export let run = async (writeArg: boolean = true): Promise => { await formatGitignore.run(project); // format TypeScript - const formatPrettier = await import('./format.prettier.js'); - await formatPrettier.run(project); const formatTsConfig = await import('./format.tsconfig.js'); await formatTsConfig.run(project); + const formatPrettier = await import('./format.prettier.js'); + await formatPrettier.run(project); // format readme.md const formatReadme = await import('./format.readme.js');