Skip to content

Commit

Permalink
Merge branch 'muratgozel/master' into beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Apr 1, 2023
2 parents 28f6cfc + 36c9bd2 commit 546d235
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/compare_screenshots.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

test -d ./tmp/output && rm -rf ./tmp/output
mkdir -p ./tmp/{output,screenshots,baseline}
Expand Down
5 changes: 4 additions & 1 deletion src/lib/converter/plugins/PackagePlugin.ts
Expand Up @@ -150,7 +150,10 @@ export class PackagePlugin extends ConverterComponent {
project.name = project.packageName || "Documentation";
}
if (this.includeVersion) {
project.packageVersion = this.packageJson.version;
project.packageVersion = this.packageJson.version?.replace(
/^v/,
""
);
}
} else if (!project.name) {
this.application.logger.warn(
Expand Down

0 comments on commit 546d235

Please sign in to comment.