chore: update yarn to 3.5.1 (#412)

* chore: update yarn to 3.5.1

* chore: add plugin-interactive-tools yarn pkg

* chore: update dev dependencies

* chore: eslint fixes

* chore: update generated content

---------

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-05-07 16:13:08 +02:00
committed by GitHub
parent 7e0ddfe79f
commit f424e9de13
16 changed files with 6744 additions and 3697 deletions
+1
View File
@@ -65,6 +65,7 @@ const getFilename = (distribution: string): string => {
break;
}
case 'arm': {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const arm_version = (process.config.variables as any).arm_version;
arch = arm_version ? 'armv' + arm_version : 'arm';
break;
+1 -1
View File
@@ -28,7 +28,7 @@ async function run(): Promise<void> {
}
let yamlfile: string | unknown;
const argv = yargs.parse(inputs.args);
const argv: {config: string} = yargs.parse(inputs.args) as never;
if (argv.config) {
yamlfile = argv.config;
} else {