Skip to content

Commit

Permalink
chore(release): 2.4.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-cli-bot committed Jul 29, 2024
1 parent c7ac1da commit 3d3686f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [2.4.0](https://github.com/salesforcecli/plugin-dev/compare/2.3.6...2.4.0) (2024-07-29)

### Bug Fixes

- ensure cwd is normalized ([c0b4440](https://github.com/salesforcecli/plugin-dev/commit/c0b444048f9ef55088adccb9aea108f83abdacf8))
- use sf for finding existing commands ([541ed1b](https://github.com/salesforcecli/plugin-dev/commit/541ed1be6e2b8f1db960e392cc38cd79a07944e0))

### Features

- generate command without yeoman ([da1b265](https://github.com/salesforcecli/plugin-dev/commit/da1b265aceca0c09ff22a03ef349d0c273bc213d))
- generate library without yeoman ([33274d1](https://github.com/salesforcecli/plugin-dev/commit/33274d18d4ca933e2dc4a2785f4e02bc83ef3f99))
- generate plugin without yeoman ([6cc0f88](https://github.com/salesforcecli/plugin-dev/commit/6cc0f887640097eb78cf3f08df6a8e6833e65bb5))

## [2.3.6](https://github.com/salesforcecli/plugin-dev/compare/2.3.5...2.3.6) (2024-07-19)

### Bug Fixes
Expand Down
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ FLAG DESCRIPTIONS
The default is the "src" directory in the current working directory.
```

_See code: [src/commands/dev/audit/messages.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/audit/messages.ts)_
_See code: [src/commands/dev/audit/messages.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/audit/messages.ts)_

## `sf dev convert messages`

Expand Down Expand Up @@ -191,7 +191,7 @@ EXAMPLES
$ sf dev convert messages --project-dir ./path/to/plugin --filename my-command.json
```

_See code: [src/commands/dev/convert/messages.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/convert/messages.ts)_
_See code: [src/commands/dev/convert/messages.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/convert/messages.ts)_

## `sf dev convert script`

Expand Down Expand Up @@ -235,18 +235,19 @@ EXAMPLES
$ sf dev convert script --script ./myScript.yml
```

_See code: [src/commands/dev/convert/script.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/convert/script.ts)_
_See code: [src/commands/dev/convert/script.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/convert/script.ts)_

## `sf dev generate command`

Generate a new sf command.

```
USAGE
$ sf dev generate command -n <value> [--flags-dir <value>] [--force] [--nuts] [--unit]
$ sf dev generate command -n <value> [--flags-dir <value>] [--force] [--dry-run] [--nuts] [--unit]
FLAGS
-n, --name=<value> (required) Name of the new command. Use colons to separate the topic and command names.
--dry-run Display the changes that would be made without writing them to disk.
--force Overwrite existing files.
--[no-]nuts Generate a NUT test file for the command.
--[no-]unit Generate a unit test file for the command.
Expand All @@ -260,7 +261,7 @@ DESCRIPTION
You must run this command from within a plugin directory, such as the directory created with the "sf dev generate
plugin" command.
The command generates basic source files, messages (\*.md), and test files for your new command. The Typescript files
The command generates basic source files, messages (\*.md), and test files for your new command. The Typescript files
contain import statements for the minimum required Salesforce libraries, and scaffold some basic code. The new type
names come from the value you passed to the --name flag.
Expand All @@ -275,7 +276,7 @@ EXAMPLES
$ sf dev generate command --name my:exciting:command
```

_See code: [src/commands/dev/generate/command.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/generate/command.ts)_
_See code: [src/commands/dev/generate/command.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/generate/command.ts)_

## `sf dev generate flag`

Expand Down Expand Up @@ -315,15 +316,18 @@ EXAMPLES
$ sf dev generate flag --dry-run
```

_See code: [src/commands/dev/generate/flag.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/generate/flag.ts)_
_See code: [src/commands/dev/generate/flag.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/generate/flag.ts)_

## `sf dev generate plugin`

Generate a new sf plugin.

```
USAGE
$ sf dev generate plugin [--flags-dir <value>]
$ sf dev generate plugin [--flags-dir <value>] [--dry-run]
FLAGS
--dry-run Display the changes that would be made without writing them to disk.
GLOBAL FLAGS
--flags-dir=<value> Import flag values from a directory.
Expand All @@ -346,6 +350,6 @@ EXAMPLES
$ sf dev generate plugin
```

_See code: [src/commands/dev/generate/plugin.ts](https://github.com/salesforcecli/plugin-dev/blob/2.3.6/src/commands/dev/generate/plugin.ts)_
_See code: [src/commands/dev/generate/plugin.ts](https://github.com/salesforcecli/plugin-dev/blob/2.4.0/src/commands/dev/generate/plugin.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": "@salesforce/plugin-dev",
"description": "commands for sf plugin development",
"version": "2.3.6",
"version": "2.4.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
Expand Down

0 comments on commit 3d3686f

Please sign in to comment.