@oracle/suitecloud-cli
Version:
SuiteCloud CLI for Node.js
19 lines (17 loc) • 619 B
JavaScript
/*
** Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved.
** Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
*/
;
const Command = require('../../Command');
const AddDependenciesAction = require('./AddDependenciesAction');
const AddDependenciesOutputHandler = require('./AddDependenciesOutputHandler');
module.exports = {
create(options) {
return Command.Builder.withOptions(options)
.withAction(AddDependenciesAction)
.withOutput(AddDependenciesOutputHandler)
.neverInteractive()
.build();
}
};