Skip to content

Commit

Permalink
ci: fix versioning script's bug on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sun-mota committed Nov 27, 2024
1 parent 21edb97 commit 94c51ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/datepicker/src/scripts/version.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { writeDepVersionFile } from '../../../../scripts/formVersionWriter.js'
import path from "node:path";

writeDepVersionFile('@aurodesignsystem/auro-dropdown');
writeDepVersionFile('@aurodesignsystem/auro-popover');
writeDepVersionFile(path.resolve('./components/input'));
writeDepVersionFile('@aurodesignsystem/auro-dropdown');
writeDepVersionFile(path.resolve(process.cwd(), './components/input'));

0 comments on commit 94c51ab

Please sign in to comment.