From 7107c612cd0482dfcfda2198d511fd6398566450 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 7 Nov 2022 18:03:49 -0330 Subject: [PATCH] Fix lint error when no build is present 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. --- bin/create-release-branch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/create-release-branch.js b/bin/create-release-branch.js index b404e58..d714c91 100755 --- a/bin/create-release-branch.js +++ b/bin/create-release-branch.js @@ -1,4 +1,4 @@ #!/usr/bin/env node -/* eslint-disable-next-line import/no-unassigned-import */ +/* eslint-disable-next-line import/no-unassigned-import,import/no-unresolved */ require('../dist/cli');