https://github.com/gunmer/msa-js
Maven setting administrator
https://github.com/gunmer/msa-js
cli maven msa oclif terminal
Last synced: 2 months ago
JSON representation
Maven setting administrator
- Host: GitHub
- URL: https://github.com/gunmer/msa-js
- Owner: Gunmer
- License: mit
- Created: 2019-08-17T08:01:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-16T08:01:10.000Z (almost 7 years ago)
- Last Synced: 2025-07-13T23:22:06.435Z (11 months ago)
- Topics: cli, maven, msa, oclif, terminal
- Language: TypeScript
- Size: 76.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
msa-js
======
Maven Settings Administrator is a CLI for help us to manage the settings.xml files
[](https://oclif.io)
[](https://npmjs.org/package/msa-js)
[](https://npmjs.org/package/msa-js)
[](https://github.com/Gunmer/msa-js/blob/master/package.json)
* [Usage](#usage)
* [Commands](#commands)
# Usage
```sh-session
$ npm install -g msa-js
$ msa COMMAND
running command...
$ msa (-v|--version|version)
msa-js/1.3.0 darwin-x64 node-v12.7.0
$ msa --help [COMMAND]
USAGE
$ msa COMMAND
...
```
# Commands
* [`msa add FILE [NAME]`](#msa-add-file-name)
* [`msa delete [SETTING]`](#msa-delete-setting)
* [`msa doctor`](#msa-doctor)
* [`msa help [COMMAND]`](#msa-help-command)
* [`msa list`](#msa-list)
* [`msa use [SETTING]`](#msa-use-setting)
## `msa add FILE [NAME]`
Add a new setting
```
USAGE
$ msa add FILE [NAME]
ARGUMENTS
FILE Path of setting file
NAME Name of setting
OPTIONS
-h, --help show CLI help
ALIASES
$ msa a
```
_See code: [src/commands/add.ts](https://github.com/Gunmer/msa-js/blob/v1.3.0/src/commands/add.ts)_
## `msa delete [SETTING]`
Delete a setting
```
USAGE
$ msa delete [SETTING]
ARGUMENTS
SETTING Select setting for delete
OPTIONS
-h, --help show CLI help
ALIASES
$ msa d
```
_See code: [src/commands/delete.ts](https://github.com/Gunmer/msa-js/blob/v1.3.0/src/commands/delete.ts)_
## `msa doctor`
Tool for diagnostic and fix some issues
```
USAGE
$ msa doctor
OPTIONS
-f, --fix
-h, --help show CLI help
```
_See code: [src/commands/doctor.ts](https://github.com/Gunmer/msa-js/blob/v1.3.0/src/commands/doctor.ts)_
## `msa help [COMMAND]`
display help for msa
```
USAGE
$ msa help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
```
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v2.2.1/src/commands/help.ts)_
## `msa list`
Show a list of settings
```
USAGE
$ msa list
OPTIONS
-h, --help show CLI help
ALIASES
$ msa ls
```
_See code: [src/commands/list.ts](https://github.com/Gunmer/msa-js/blob/v1.3.0/src/commands/list.ts)_
## `msa use [SETTING]`
Select the setting to use
```
USAGE
$ msa use [SETTING]
ARGUMENTS
SETTING Select setting for use
OPTIONS
-h, --help show CLI help
ALIASES
$ msa u
```
_See code: [src/commands/use.ts](https://github.com/Gunmer/msa-js/blob/v1.3.0/src/commands/use.ts)_