Skip to content

Commit 5e0eb8f

Browse files
committed
Fix release script
1 parent ff5c392 commit 5e0eb8f

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.js
2+
*.cjs
3+
*.mjs

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ module.exports = {
55
root: true,
66
rules: {
77
'@typescript-eslint/no-var-requires': 'off',
8+
'@typescript-eslint/no-explicit-any': 'off',
89
},
910
};

scripts/release.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import open from 'open';
66
import githubRelease from 'new-github-release-url';
77
import SimpleGit from 'simple-git';
88
import { hideBin } from 'yargs/helpers';
9-
import execa from 'execa';
9+
import { execa } from 'execa';
1010
import signale from 'signale';
1111
import { getNextVersion, VersionStage, VersionIncrement } from 'version-next';
1212
import { run } from './run';

0 commit comments

Comments
 (0)