@app-config/git
Advanced tools
Comparing version
@@ -24,3 +24,3 @@ import simpleGit from 'simple-git'; | ||
return getStatus().then(({ tag }) => { | ||
return parse(tag ?? null, { shouldFlatten: true }); | ||
return parse(tag !== null && tag !== void 0 ? tag : null, { shouldFlatten: true }); | ||
}); | ||
@@ -33,2 +33,3 @@ default: | ||
async function gitStatus() { | ||
var _a; | ||
const git = simpleGit({}); | ||
@@ -42,3 +43,3 @@ try { | ||
branchName: branch, | ||
tag: (tag.trim() || undefined)?.split(' ')[0], | ||
tag: (_a = (tag.trim() || undefined)) === null || _a === void 0 ? void 0 : _a.split(' ')[0], | ||
}; | ||
@@ -45,0 +46,0 @@ } |
@@ -13,3 +13,3 @@ "use strict"; | ||
function gitRefDirectives(getStatus = gitStatus) { | ||
return extension_utils_1.named('$git', extension_utils_1.forKey('$git', extension_utils_1.validateOptions((SchemaBuilder) => SchemaBuilder.stringSchema(), (value) => async (parse) => { | ||
return (0, extension_utils_1.named)('$git', (0, extension_utils_1.forKey)('$git', (0, extension_utils_1.validateOptions)((SchemaBuilder) => SchemaBuilder.stringSchema(), (value) => async (parse) => { | ||
switch (value) { | ||
@@ -40,3 +40,3 @@ case 'commit': | ||
var _a; | ||
const git = simple_git_1.default({}); | ||
const git = (0, simple_git_1.default)({}); | ||
try { | ||
@@ -43,0 +43,0 @@ const rev = await git.revparse(['HEAD']); |
{ | ||
"name": "@app-config/git", | ||
"description": "$git directive parsing extension for @app-config", | ||
"version": "3.0.0-alpha.4", | ||
"version": "3.0.0-alpha.6", | ||
"license": "MPL-2.0", | ||
@@ -33,8 +33,9 @@ "author": { | ||
"dependencies": { | ||
"@app-config/core": "^3.0.0-alpha.4", | ||
"@app-config/extension-utils": "^3.0.0-alpha.4", | ||
"@app-config/core": "^3.0.0-alpha.6", | ||
"@app-config/extension-utils": "^3.0.0-alpha.6", | ||
"@app-config/logging": "^3.0.0-alpha.6", | ||
"simple-git": "2" | ||
}, | ||
"devDependencies": { | ||
"@app-config/test-utils": "^3.0.0-alpha.4" | ||
"@app-config/test-utils": "^3.0.0-alpha.6" | ||
}, | ||
@@ -41,0 +42,0 @@ "prettier": "@lcdev/prettier", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
10942
1.83%126
0.8%4
33.33%