os build-config: Deprecate the --device-type parameter

Change-type: patch
This commit is contained in:
Thodoris Greasidis 2024-12-31 19:02:18 +02:00
parent 06133c789e
commit ae54506fe6

View File

@ -38,6 +38,7 @@ export default class OsBuildConfigCmd extends Command {
description: 'os image',
required: true,
}),
// TODO: Drop this arg on the next major
'device-type': Args.string({
description: 'device type',
required: true,
@ -63,6 +64,12 @@ export default class OsBuildConfigCmd extends Command {
const { writeFile } = (await import('fs')).promises;
// the "device-type" arg will be removed on the next major - warn user
if (params['device-type'] != null) {
const { deviceTypeArgDeprecation } = await import('../../utils/messages');
console.log(deviceTypeArgDeprecation('device-type'));
}
const config = await this.buildConfig(
params.image,
params['device-type'],
@ -74,7 +81,12 @@ export default class OsBuildConfigCmd extends Command {
console.info(`Config file "${options.output}" created successfully.`);
}
async buildConfig(image: string, deviceTypeSlug: string, advanced: boolean) {
async buildConfig(
image: string,
// TODO: Drop this parameter on the next major
deviceTypeSlug: string | undefined,
advanced: boolean,
) {
advanced = advanced || false;
const { getManifest } = await import('../../utils/helpers');