Skip to content

Commit cf55c64

Browse files
author
SF-CLI-BOT
committed
chore(release): 0.0.4 [ci skip]
1 parent 4b09997 commit cf55c64

File tree

3 files changed

+39
-13
lines changed

3 files changed

+39
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.0.4](https://github.com/salesforcecli/plugin-project/compare/v0.0.3...v0.0.4) (2021-06-30)
6+
7+
8+
### Features
9+
10+
* run deploy hooks ([#54](https://github.com/salesforcecli/plugin-project/issues/54)) ([4b09997](https://github.com/salesforcecli/plugin-project/commit/4b0999759266ff3a86fd39a3a9ae3a71e216045a))
11+
512
### [0.0.3](https://github.com/salesforcecli/plugin-project/compare/v0.0.2...v0.0.3) (2021-06-08)
613

714
### [0.0.2](https://github.com/salesforcecli/plugin-project/compare/v0.0.1...v0.0.2) (2021-06-08)

README.md

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -65,28 +65,47 @@ sf plugins
6565

6666
## `sf project:deploy`
6767

68-
deploy a Salesforce project
68+
The command first analyzes your project, active or logged-into environments, and local defaults to determine what to deploy and where. The command then prompts you for information about this particular deployment and provides intelligent choices based on its analysis.
6969

7070
```
71+
The command first analyzes your project, active or logged-into environments, and local defaults to determine what to deploy and where. The command then prompts you for information about this particular deployment and provides intelligent choices based on its analysis.
72+
73+
For example, if your local project contains a package directory with metadata source files, the command asks if you want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want to deploy to. If the command finds Apex tests, it asks if you want to run them and at which level.
74+
75+
Similarly, if the command finds a local functions directory, the command prompts if you want to deploy it and to which compute environment. The command prompts and connects you to a compute environment of your choice if you’re not currently connected to any.
76+
77+
This command must be run from within a project.
78+
79+
The command stores your responses in a local file and uses them as defaults when you rerun the command. Specify --interactive to force the command to reprompt.
80+
81+
Use this command for quick and simple deploys. For more complicated deployments, use the environment-specific commands, such as "sf project deploy org", that provide additional flags.
82+
7183
USAGE
7284
$ sf project:deploy
7385
7486
OPTIONS
75-
--directory=directory directory to deploy
76-
--interactive TBD
77-
--target-env=target-env TBD
87+
--interactive
7888
7989
DESCRIPTION
80-
Deploy a project, including org metadata and functions. Be default, the deploy analyze your project and assume
81-
sensible defaults when possible, otherwise it will prompt. To always prompt and not assume defaults, use
82-
"--interctive".
83-
To run specialized deploys, especially when interactivity isn't an option like continuous deployment, used the scoped
84-
deploy commands like "sf project deploy org" or "sf project deploy functions"
90+
For example, if your local project contains a package directory with metadata source files, the command asks if you
91+
want to deploy that Salesforce app to an org. The command lists your connected orgs and asks which one you want to
92+
deploy to. If the command finds Apex tests, it asks if you want to run them and at which level.
93+
94+
Similarly, if the command finds a local functions directory, the command prompts if you want to deploy it and to which
95+
compute environment. The command prompts and connects you to a compute environment of your choice if you’re not
96+
currently connected to any.
97+
98+
This command must be run from within a project.
99+
100+
The command stores your responses in a local file and uses them as defaults when you rerun the command. Specify
101+
--interactive to force the command to reprompt.
102+
103+
Use this command for quick and simple deploys. For more complicated deployments, use the environment-specific
104+
commands, such as "sf project deploy org", that provide additional flags.
85105
86-
EXAMPLES
106+
EXAMPLE
87107
sf project:deploy
88-
sf project:deploy --remote
89108
```
90109

91-
_See code: [src/commands/project/deploy.ts](https://github.com/salesforcecli/plugin-project/blob/v0.0.2/src/commands/project/deploy.ts)_
110+
_See code: [src/commands/project/deploy.ts](https://github.com/salesforcecli/plugin-project/blob/v0.0.3/src/commands/project/deploy.ts)_
92111
<!-- commandsstop -->

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@salesforce/plugin-project",
33
"description": "project commands for sf",
4-
"version": "0.0.3",
4+
"version": "0.0.4",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)