Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 8f29e3a

Browse files
committed
refactor(cli): rename fury-cli to cli
1 parent 89ae8bc commit 8f29e3a

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

.circleci/smoke.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ install openapi2-parser
2828
install openapi3-parser
2929
install apiaryb-parser
3030
install apib-serializer
31-
install fury-cli
31+
install cli
3232

3333
cd "$TMPDIR"
3434
npx fury --help

packages/fury-cli/CHANGELOG.md renamed to packages/cli/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Changelog
1+
# API Elements: CLI Changelog
2+
3+
## 0.10.0 (2020-06-12)
4+
5+
The package has been renamed to `@apielements/cli`.
26

37
## 0.9.4 (2020-04-20)
48

packages/fury-cli/README.md renamed to packages/cli/README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
# Fury CLI
1+
# API Elements CLI
22

3-
Command line interface for the [fury](https://github.com/apiaryio/api-elements.js/tree/master/packages/fury)
4-
API Description SDK. Fury allows you to parse API Descriptions into [API
5-
Elements](http://api-elements.readthedocs.org/) or other API Description
6-
formats.
3+
Command line interface for [API Elements](https://apielements.org)
4+
and the [API Elements JavaScript
5+
tooling](https://apielements.org/projects/js/).
76

87
## Install
98

109
```shell
11-
$ npm install -g fury-cli
10+
$ npm install -g @apielements/cli
1211
```
1312

1413
## Usage

packages/fury-cli/lib/fury.js renamed to packages/cli/lib/fury.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function getPackage(name) {
193193
}
194194

195195
function getVersion() {
196-
const packages = ['fury-cli'].concat(adapters);
196+
const packages = ['@apielements/cli'].concat(adapters);
197197

198198
return packages
199199
.map(getPackage)

packages/fury-cli/package.json renamed to packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "fury-cli",
3-
"version": "0.9.4",
2+
"name": "@apielements/cli",
3+
"version": "0.10.0",
44
"description": "Command line tool interface for Fury.js",
55
"author": "Apiary.io <[email protected]>",
66
"license": "MIT",
@@ -10,11 +10,11 @@
1010
"files": [
1111
"lib/fury.js"
1212
],
13-
"homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/fury-cli",
13+
"homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/cli",
1414
"repository": {
1515
"type": "git",
1616
"url": "https://github.com/apiaryio/api-elements.js.git",
17-
"directory": "packages/fury-cli"
17+
"directory": "packages/cli"
1818
},
1919
"scripts": {
2020
"lint": "eslint .",

0 commit comments

Comments
 (0)