Skip to content

Commit f2830e6

Browse files
committed
refactor(scripts): remove timestamp generation from schema files
Remove timestamp generation in schema generator to avoid unnecessary file changes on each build. Timestamps in generated files create noise in version control without providing meaningful value.
1 parent e7d49b8 commit f2830e6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

scripts/generate-schemas.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ function generateAJVValidators(schemas) {
232232

233233
const validatorCode = `/**
234234
* Auto-generated AJV validators for markmv API methods
235-
* Generated on: ${new Date().toISOString()}
236235
*
237236
* DO NOT EDIT MANUALLY - This file is auto-generated
238237
*/
@@ -309,7 +308,6 @@ function generateMCPTools(schemas) {
309308

310309
const mcpCode = `/**
311310
* Auto-generated MCP tool definitions for markmv API methods
312-
* Generated on: ${new Date().toISOString()}
313311
*
314312
* DO NOT EDIT MANUALLY - This file is auto-generated
315313
*/
@@ -355,7 +353,6 @@ function generateAPIRoutes(schemas) {
355353

356354
const apiCode = `/**
357355
* Auto-generated REST API route definitions for markmv API methods
358-
* Generated on: ${new Date().toISOString()}
359356
*
360357
* DO NOT EDIT MANUALLY - This file is auto-generated
361358
*/

0 commit comments

Comments
 (0)