Skip to content

Commit 5cefcf1

Browse files
authored
Passes prettier build step now. development.md Formatted with pr… (#624)
Passes `prettier` build step now. `development.md` Formatted with prettier. Signed-off-by: Paul Yuknewicz <[email protected]>
1 parent eb4988f commit 5cefcf1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

documentation/development.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,23 @@ npm run start:dev
2525
To publish a new package to [https://www.npmjs.com/package/@dapr/dapr](https://www.npmjs.com/package/@dapr/dapr) we need to do the following building and publishing steps.
2626

2727
For **building** a new version, we:
28+
2829
- update the version in `package.json` in the repo root, e.g. `3.4.0` for a final releaes or `3.4.0-rc.1` for a pre-release
2930
- run `npm install` again to refresh lock file (it should now be dirty and part of the change list)
3031
- verify the dapr runtime and versions in [./scripts/fetch-proto.sh](./scripts/fetch-proto.sh) and update if necessary
3132
- run `./scripts/fetch-proto.sh` from the repo root to regenerate protos to match runtime
3233
- verify [.github/workflows/test-e2e.yml](.github/workflows/test-e2e.yml) env variables, especially the Dapr and Node versions to test against
3334

34-
PR this change into the right release branch, e.g. `release-3.4.0`. Merging to `master` branch should happen last.
35+
PR this change into the right release branch, e.g. `release-3.4.0`. Merging to `master` branch should happen last.
3536

3637
A custom script is utilized here since we have 2 libraries in one for HTTP and gRPC
3738

3839
For **publishing** the package, we simply cut a new release by:
40+
3941
- create a new release/tag in the dapr/js-sdk repo
40-
- for a final release the tag should look like `v3.4.0` and mark it as final official release. Generate release notes using the N-1 released version, e.g. using 3.3.1.
42+
- for a final release the tag should look like `v3.4.0` and mark it as final official release. Generate release notes using the N-1 released version, e.g. using 3.3.1.
4143
- for a pre-release it should look like `v3.4.0-rc.1` and mark it as a pre-release
42-
- verify the package is now uploaded to [https://www.npmjs.com/package/@dapr/dapr](https://www.npmjs.com/package/@dapr/dapr) and shows the new version
44+
- verify the package is now uploaded to [https://www.npmjs.com/package/@dapr/dapr](https://www.npmjs.com/package/@dapr/dapr) and shows the new version
4345

4446
Publishing is automated in the CI/CD pipeline. Each time a version is release (GitHub ref starting with `refs/tags/v`) then the pipeline will deploy the package as described in [build.yml](./.github/workflows/build.yml).
4547

0 commit comments

Comments
 (0)