vovk-cli 0.0.1-draft.88 → 0.0.1-draft.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -79,6 +79,6 @@ export default async function generate({ projectInfo, segments, segmentsSchema,
79
79
  }
80
80
  return null;
81
81
  }));
82
- log.info(`Client generated from template${usedTemplateNames.length !== 1 ? 's' : ''} ${chalkHighlightThing(usedTemplateNames.map((s) => `"${s}"`).join(', '))}${unusedTemplateNames.length ? ` (files generated from template${unusedTemplateNames.length !== 1 ? 's' : ''} ${chalkHighlightThing(unusedTemplateNames.map((s) => `"${s}"`).join(', '))} are up to date)` : ''} at ${clientOutDirAbsolutePath} in ${Date.now() - now}ms`);
82
+ log.info(`Client generated from template${usedTemplateNames.length !== 1 ? 's' : ''} ${chalkHighlightThing(usedTemplateNames.map((s) => `"${s}"`).join(', '))}${unusedTemplateNames.length ? ` (${chalkHighlightThing(unusedTemplateNames.map((s) => `"${s}"`).join(', '))} ${unusedTemplateNames.length !== 1 ? 'are' : 'is'} up to date)` : ''} at ${clientOutDirAbsolutePath} in ${Date.now() - now}ms`);
83
83
  return { written: true, path: clientOutDirAbsolutePath };
84
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-cli",
3
- "version": "0.0.1-draft.88",
3
+ "version": "0.0.1-draft.89",
4
4
  "bin": {
5
5
  "vovk": "./dist/index.mjs"
6
6
  },