Skip to content

Commit

Permalink
chore(release): 1.2.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.2.0](v1.1.1...v1.2.0) (2021-08-25)

### Features

* improve autocomplete and aliases ([bfb87ed](bfb87ed))
  • Loading branch information
semantic-release-bot committed Aug 25, 2021
1 parent bfb87ed commit 7472bb2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 181 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.2.0](https://github.com/mdonnalley/multiple-package-manager/compare/v1.1.1...v1.2.0) (2021-08-25)


### Features

* improve autocomplete and aliases ([bfb87ed](https://github.com/mdonnalley/multiple-package-manager/commit/bfb87edce36e3a50177a85a8fcbabaa38c09ed77))

## [1.1.1](https://github.com/mdonnalley/multiple-package-manager/compare/v1.1.0...v1.1.1) (2021-08-24)


Expand Down
180 changes: 0 additions & 180 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,185 +50,5 @@ mpm add my-github-org/my-repo
# Commands

<!-- commands -->
* [`mpm add ENTITY`](#mpm-add-entity)
* [`mpm cd REPO`](#mpm-cd-repo)
* [`mpm exec REPO`](#mpm-exec-repo)
* [`mpm list`](#mpm-list)
* [`mpm open REPO`](#mpm-open-repo)
* [`mpm remove REPO`](#mpm-remove-repo)
* [`mpm setup`](#mpm-setup)
* [`mpm view REPO`](#mpm-view-repo)
* [`mpm where REPO`](#mpm-where-repo)

## `mpm add ENTITY`

Add a github org. Requires GH_TOKEN to be set in the environment.

```
USAGE
$ mpm add [ENTITY] [--method ssh|https]
ARGUMENTS
ENTITY Github org, repo, or url to add
FLAGS
--method=<option> [default: ssh] Method to use for cloning.
<options: ssh|https>
DESCRIPTION
Add a github org. Requires GH_TOKEN to be set in the environment.
```

_See code: [src/commands/add.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/add.ts)_

## `mpm cd REPO`

cd into a github repository.

```
USAGE
$ mpm cd [REPO]
ARGUMENTS
REPO Name of repository.
DESCRIPTION
cd into a github repository.
```

_See code: [src/commands/cd.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/cd.ts)_

## `mpm exec REPO`

Execute a command org script in a repository.

```
USAGE
$ mpm exec [REPO]
ARGUMENTS
REPO Name of repository to execute in.
DESCRIPTION
Execute a command org script in a repository.
ALIASES
$ mpm x
```

_See code: [src/commands/exec.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/exec.ts)_

## `mpm list`

List all added repositories.

```
USAGE
$ mpm list
DESCRIPTION
List all added repositories.
ALIASES
$ mpm ls
```

_See code: [src/commands/list.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/list.ts)_

## `mpm open REPO`

Open a github repository.

```
USAGE
$ mpm open [REPO]
ARGUMENTS
REPO Name of repository.
DESCRIPTION
Open a github repository.
ALIASES
$ mpm o
```

_See code: [src/commands/open.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/open.ts)_

## `mpm remove REPO`

Remove a github repository from your local filesystem.

```
USAGE
$ mpm remove [REPO]
ARGUMENTS
REPO Name of repository.
DESCRIPTION
Remove a github repository from your local filesystem.
ALIASES
$ mpm rm
```

_See code: [src/commands/remove.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/remove.ts)_

## `mpm setup`

Setup mpm

```
USAGE
$ mpm setup [-d <value>]
FLAGS
-d, --directory=<value> Location to setup repositories.
DESCRIPTION
Setup mpm
```

_See code: [src/commands/setup.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/setup.ts)_

## `mpm view REPO`

View a github repository.

```
USAGE
$ mpm view [REPO]
ARGUMENTS
REPO Name of repository.
DESCRIPTION
View a github repository.
ALIASES
$ mpm v
```

_See code: [src/commands/view.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/view.ts)_

## `mpm where REPO`

Print location of a github repository.

```
USAGE
$ mpm where [REPO] [--remote]
ARGUMENTS
REPO Name of repository.
FLAGS
--remote Return url of repository
DESCRIPTION
Print location of a github repository.
```

_See code: [src/commands/where.ts](https://github.com/mdonnalley/multiple-package-manager/blob/v1.1.1/src/commands/where.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multiple-package-manager",
"description": "CLI for managing multiple node packages",
"version": "1.1.1",
"version": "1.2.0",
"author": "Mike Donnalley",
"homepage": "https://github.com/mdonnalley/multiple-package-manager",
"repository": "mdonnalley/multiple-package-manager",
Expand Down

0 comments on commit 7472bb2

Please sign in to comment.