Skip to content

Commit

Permalink
chore(compas): fix compas version used in 'compas init'
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkdev98 committed Aug 29, 2023
1 parent 351c10d commit 4624452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compas/src/shared/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ APP_NAME=${dirname}
isDevelopment: !isProduction(),
appName: environment.APP_NAME ?? process.cwd().split(path.sep).pop(),
compasVersion: packageJson.version
? `Compas ${packageJson.version}`
? `Compas v${packageJson.version}`
: "Compas v0.0.0",
nodeVersion: process.version,
};
Expand Down

0 comments on commit 4624452

Please sign in to comment.