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 has been archived by the owner on Apr 17, 2023. It is now read-only.
The install command is extremely similar in pct and prm - the primary differences are in language about the type of package being installed. If install is fully genericized, it can be imported and used in prm without maintaining near-identical code in two repositories and re-used in any other projects.
Acceptance Criteria
The InstallCommand struct has a new property, ProjectType which takes a string
The InstallCommand struct renames TemplatePkgPath to InstalledPkgPath
The instantiation of the install command in main passes the ProjectType as template and updates from TemplatePkgPath to InstalledPkgPath.
All references to template are genericized, using the ProjectType where sensible (including command help, flag names/descriptions, errors, informational messages, and comments) instead of hard-coding template
Variables referencing template are updated to package
Tests updated as necessary
The text was updated successfully, but these errors were encountered:
The install command is extremely similar in
pct
andprm
- the primary differences are in language about the type of package being installed. Ifinstall
is fully genericized, it can be imported and used inprm
without maintaining near-identical code in two repositories and re-used in any other projects.Acceptance Criteria
InstallCommand
struct has a new property,ProjectType
which takes a stringInstallCommand
struct renamesTemplatePkgPath
toInstalledPkgPath
main
passes theProjectType
astemplate
and updates fromTemplatePkgPath
toInstalledPkgPath
.template
are genericized, using theProjectType
where sensible (including command help, flag names/descriptions, errors, informational messages, and comments) instead of hard-codingtemplate
template
are updated topackage
The text was updated successfully, but these errors were encountered: