Skip to content

Commit d47fdcb

Browse files
authored
Fix lint error when no build is present (#45)
The `create-release-branch.js` script targets the build output, so it fails the `import/no-unresolved` ESLint rule unless a build is present. This has been resolved with an ignore comment.
1 parent 2358c6e commit d47fdcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/create-release-branch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env node
22

3-
/* eslint-disable-next-line import/no-unassigned-import */
3+
/* eslint-disable-next-line import/no-unassigned-import,import/no-unresolved */
44
require('../dist/cli');

0 commit comments

Comments
 (0)