Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use dynamic import in bin/
Browse files Browse the repository at this point in the history
rekmarks committed Dec 1, 2023

Verified

This commit was signed with the committer’s verified signature.
rekmarks Erik Marks
1 parent 0d54907 commit a357b74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/create-release-branch.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env node

// eslint-disable-next-line import/no-unassigned-import
import '../dist/cli';
/* eslint-disable import/unambiguous */
await import('../dist/cli');

Check failure on line 4 in bin/create-release-branch.js

GitHub Actions / Lint (16.x)

Unable to resolve path to module '../dist/cli'

Check failure on line 4 in bin/create-release-branch.js

GitHub Actions / Lint (18.x)

Unable to resolve path to module '../dist/cli'

Check failure on line 4 in bin/create-release-branch.js

GitHub Actions / Lint (20.x)

Unable to resolve path to module '../dist/cli'

0 comments on commit a357b74

Please sign in to comment.