Skip to content

Commit

Permalink
Release v1.7.0
Browse files Browse the repository at this point in the history
New Features
============

Verbose output

* `--verbose` or `-v` flag added for most commands to output commands
  being executed

Sub-generator support

* `--sub-generator` flag added for `f1 init` and `f1 new` to enable
accessible execution of sub-generators within
forumone/generator-web-starter
  * Currently supported sub-generator options available within the
  current prerelease of the generator ([v2.6.0-rc2](https://github.com/forumone/generator-web-starter/releases/tag/v2.6.0-rc2))
  are:
    * `manifest`
    * `buildkite-pipeline`
    * `code-quality`

Example execution for a sub-generator in the current pre-release would
look like:
```bash
f1 init --next --sub-generator=manifest
```

See the ([release notes](https://github.com/forumone/generator-web-starter/releases/tag/v2.6.0-rc2))
for the generator for more information about new features and
sub-generators being added.
  • Loading branch information
Stephen Lucero committed Oct 22, 2020
1 parent 15d2f9f commit dc12402
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
48 changes: 24 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $ npm install -g forumone-cli
$ f1 COMMAND
running command...
$ f1 (-v|--version|version)
forumone-cli/1.6.0 darwin-x64 node-v10.16.3
forumone-cli/1.7.0 darwin-x64 node-v10.16.3
$ f1 --help [COMMAND]
USAGE
$ f1 COMMAND
Expand Down Expand Up @@ -53,7 +53,7 @@ OPTIONS
--[no-]pull pull latest docker image versions (defaults to true)
```

_See code: [src/commands/build.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/build.ts)_
_See code: [src/commands/build.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/build.ts)_

## `f1 cap:stage`

Expand All @@ -69,7 +69,7 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/cap/stage.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/cap/stage.ts)_
_See code: [src/commands/cap/stage.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/cap/stage.ts)_

## `f1 composer`

Expand All @@ -85,7 +85,7 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/composer.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/composer.ts)_
_See code: [src/commands/composer.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/composer.ts)_

## `f1 doctor`

Expand All @@ -100,7 +100,7 @@ OPTIONS
-v, --verbose print system info
```

_See code: [src/commands/doctor.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/doctor.ts)_
_See code: [src/commands/doctor.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/doctor.ts)_

## `f1 down`

Expand All @@ -117,7 +117,7 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/down.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/down.ts)_
_See code: [src/commands/down.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/down.ts)_

## `f1 drush`

Expand All @@ -133,7 +133,7 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/drush.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/drush.ts)_
_See code: [src/commands/drush.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/drush.ts)_

## `f1 help [COMMAND]`

Expand Down Expand Up @@ -161,14 +161,14 @@ USAGE
$ f1 init
OPTIONS
-h, --help show CLI help
-v, --verbose print command information prior to execution
--dry-run print command instead of running it
--next use prerelease generator for testing
--sub-generator=manifest|buildkite-pipeline run a specific sub-generator within generator-web-starter
-h, --help show CLI help
-v, --verbose print command information prior to execution
--dry-run print command instead of running it
--next use prerelease generator for testing
--sub-generator=manifest|buildkite-pipeline|code-quality run a specific sub-generator within generator-web-starter
```

_See code: [src/commands/init.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/init.ts)_

## `f1 new TARGET`

Expand All @@ -182,14 +182,14 @@ ARGUMENTS
TARGET directory name to create
OPTIONS
-h, --help show CLI help
-v, --verbose print command information prior to execution
--dry-run print command instead of running it
--next use prerelease generator for testing
--sub-generator=manifest|buildkite-pipeline run a specific sub-generator within generator-web-starter
-h, --help show CLI help
-v, --verbose print command information prior to execution
--dry-run print command instead of running it
--next use prerelease generator for testing
--sub-generator=manifest|buildkite-pipeline|code-quality run a specific sub-generator within generator-web-starter
```

_See code: [src/commands/new.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/new.ts)_
_See code: [src/commands/new.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/new.ts)_

## `f1 run SERVICE`

Expand All @@ -208,7 +208,7 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/run.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/run.ts)_
_See code: [src/commands/run.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/run.ts)_

## `f1 theme:build`

Expand All @@ -226,7 +226,7 @@ OPTIONS
--pattern-lab build PL
```

_See code: [src/commands/theme/build.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/theme/build.ts)_
_See code: [src/commands/theme/build.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/theme/build.ts)_

## `f1 theme:watch`

Expand All @@ -244,7 +244,7 @@ OPTIONS
--pattern-lab watch PL
```

_See code: [src/commands/theme/watch.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/theme/watch.ts)_
_See code: [src/commands/theme/watch.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/theme/watch.ts)_

## `f1 up`

Expand All @@ -265,7 +265,7 @@ OPTIONS
these requests.
```

_See code: [src/commands/up.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/up.ts)_
_See code: [src/commands/up.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/up.ts)_

## `f1 wp`

Expand All @@ -281,5 +281,5 @@ OPTIONS
--dry-run print command instead of running it
```

_See code: [src/commands/wp.ts](https://github.com/forumone/forumone-cli/blob/v1.6.0/src/commands/wp.ts)_
_See code: [src/commands/wp.ts](https://github.com/forumone/forumone-cli/blob/v1.7.0/src/commands/wp.ts)_
<!-- commandsstop -->
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "forumone-cli",
"description": "CLI wrapper for Docker-based projects",
"version": "1.6.0",
"version": "1.7.0",
"author": "Forum One",
"bin": {
"f1": "./bin/run"
Expand Down

0 comments on commit dc12402

Please sign in to comment.