Skip to content

Commit 42dd0b1

Browse files
committed
chore(org.id-resolver): minor update
1 parent cb087b2 commit 42dd0b1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,21 @@ yarn test
2525

2626
New repository version setup (according to the SDK stake should be chosen custom `prerelease` or `major` release version type from the `lerna` CLI dialog):
2727

28+
Prerelease:
29+
30+
```bash
31+
npx lerna version --conventional-commits --conventional-prerelease --preid beta --sign-git-commit --sign-git-tag --yes
32+
```
33+
34+
Major release:
35+
2836
```bash
29-
npx lerna version prerelease --yes --sign-git-commit --sign-git-tag
30-
# npx lerna version major --yes --sign-git-commit --sign-git-tag
31-
# npx lerna version minor --yes --sign-git-commit --sign-git-tag
32-
# npx lerna version patch --yes --sign-git-commit --sign-git-tag
37+
npx lerna version --conventional-commits --conventional-graduate --sign-git-commit --sign-git-tag --yes
3338
```
3439

3540
Publishing of the updated packages:
3641

3742
```bash
43+
yarn build
3844
npx lerna publish from-git
3945
```

packages/resolver/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,6 @@ export const OrgIdResolver = (options: ResolverOptions): OrgIdResolverAPI => {
668668
);
669669

670670
if (!error) {
671-
// Simple in-memory cache version
672671
// @todo Implement plugable caching solution
673672
resolverCache[did] = resolutionResult;
674673
}

0 commit comments

Comments
 (0)