We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b28b90d commit 8018d19Copy full SHA for 8018d19
src/cmds/get-schema.ts
@@ -227,7 +227,7 @@ async function updateSingleProjectEndpoint(
227
if (schemaPath) {
228
log(chalk.green(`${config && config.projectName && config.projectName !== 'unnamed' ? `project ${chalk.blue(config.projectName)} - ` : ''}${
229
endpointName && endpointName !== 'unnamed' ? `endpoint ${chalk.blue(endpointName)} - ` : ''
230
- }Schema file was ${oldSchema ? 'updated' : 'created'}: ${chalk.blue(schemaPath)}`))
+ }Schema file was ${oldSchema ? 'updated' : 'created'}: ${chalk.blue(relative(process.cwd(), schemaPath))}`))
231
}
232
emitter.emit('checked')
233
0 commit comments