fix: update getChangedModules to reflect changes in VnLocation.vue
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-04-07 13:51:38 +02:00
parent 2847ce6a81
commit 3a6c91f1b3
1 changed files with 1 additions and 4 deletions

View File

@ -14,10 +14,7 @@ function getGitDiff(options) {
async function getChangedModules() {
let changedModules = new Set();
const changes = [
'src/components/RegularizeStockForm.vue',
'src/components/FilterTravelForm.vue',
]; //getGitDiff(process.argv);
const changes = ['src/components/common/VnLocation.vue']; //getGitDiff(process.argv);
for (const change of changes) {
if (!change) continue;
if (!FINDED_PATHS.some((prefix) => change.startsWith(prefix))) return '';