@yarnpkg/pnpify
Version:
19 lines (18 loc) • 628 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const clipanion_1 = require("clipanion");
// TODO: remove error message in next major
// eslint-disable-next-line arca/no-default-export
class SdkCommand extends clipanion_1.Command {
constructor() {
super(...arguments);
this.args = clipanion_1.Option.Proxy();
}
async execute() {
throw new clipanion_1.UsageError(`The 'pnpify --sdk ...' command has been moved to the '@yarnpkg/sdks' package - use 'yarn dlx @yarnpkg/sdks ...' instead`);
}
}
SdkCommand.paths = [
[`--sdk`],
];
exports.default = SdkCommand;
;