12
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2026-05-14 04:20:33 +00:00

more tweaks cjs->esm

This commit is contained in:
Leif Ødegård Uhlen 2026-05-05 11:04:32 +02:00
parent ca92529945
commit eb08b6d904
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ const run = async () => {
}
}
import('./src/index.js')();
await import('./src/index.js')();
};
run().catch(console.error);

View file

@ -6,7 +6,7 @@ import {
handleExtends,
handleTagFormat,
handleRepositoryUrlOption,
} from './handleOptions';
} from './handleOptions.js';
import setUpJob from './setUpJob.task';
import installSpecifyingVersionSemantic from './installSpecifyingVersionSemantic.task';
import preInstall from './preInstall.task';