Files
swagger-ui/webpack/_helpers.js
Vladimír Gorej edd1153723 feat: expose plugins and presets on SwaggerUI global symbol (#9189)
Part of this commit is also:
- complete plugins consolidation
- complete presets consolidation
- build system consolidation

Refs #9188
2023-09-05 09:56:51 +02:00

22 lines
286 B
JavaScript

/**
* @prettier
*/
const { gitDescribeSync } = require("git-describe")
function getRepoInfo() {
try {
return gitDescribeSync(__dirname)
} catch (e) {
console.error(e)
return {
hash: "noGit",
dirty: false,
}
}
}
module.exports = {
getRepoInfo,
}