You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2023. It is now read-only.
app.Description="Resolves the absolute path of all dependencies for a project";
14
+
15
+
varpackages=app.Option("-p|--packages <PACKAGES_DIRECTORY>","Path to the directories containing packages to resolve.",CommandOptionType.MultipleValue);
16
+
vartarget=app.Option("-t|--target <TARGET_IDENTIFIER>","The target to resolve dependencies for.",CommandOptionType.SingleValue);
17
+
varoutput=app.Option("-o|--output <OUTPUT_FILE>","The path in which to write the output file (formatted as text with one line per dependency)",CommandOptionType.SingleValue);
18
+
varassetType=app.Option("-a|--assets <ASSET_TYPE>","The type of assets to resolve (common values include: compile, runtime, native)",CommandOptionType.MultipleValue);
19
+
varproject=app.Argument("PROJECT","The project to resolve. A directory or a path to a project.lock.json may be used. Defaults to the current directory");
0 commit comments