Run is a windows CLI package manager with basic commands shortened to conditional flags. It is build using pnpm
The motive of building Run is to create a package manager with commands as short as possible and easy to remember. Run using pnpm to manage and run the project while shortening its commands only to conditional flags.
The tech stacks for building this CLI is listed below. More stacks are to be used which will be decided during the course of development.
To start with the installtaion it is recommended to have Git, pnpm and g++ compiler installed in the system. Follow the respective docs for their installation
step 1(optional): Check pnpm and g++ installation
pnpm --version
## output: 9.0.0 or above
g++ --version
# g++ (Rev6, Built by MSYS2 project) 13.2.0 or above
# Copyright (C) 2023 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
step 2: Clone the repository and move to the directory
git clone https://github.com/pratham-ak2004/Run
cd Run
step 3: Add project to your system path. This is to run the executable after building it.
step 4: Build from .cpp
file
g++ run.cpp -o run.exe
We are using pnpm for this CLI because it have readable output messages and generates lock file in .yaml
format which is easy to interpret.
some rules for contributions
- Follow the commit message format as mentioned in the next section
- Use meaningful names for identifiers while working on the project
Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
The header is mandatory and the scope is optional
Your commit message should be one of the following types:
- feat: A new feature.
- fix: A bug fix.
- docs: Documentation only changes.
- style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc).
- refactor: A code change that neither fixes a bug nor adds a feature.
- perf: A code change that improves performance.
- test: Adding missing tests.
- chore: Changes to the build process or auxiliary tools and libraries such as documentation generation.
your commit message must conatain atleast type
and subject
.
Ex: feat: created navbar
For more information on commit message format, refer this documention by develar
Feel free to contact me 😊