Skip to content

Commit

Permalink
test patching some packages (#2)
Browse files Browse the repository at this point in the history
* test patching some packages

* add changesets
  • Loading branch information
leordev authored Feb 15, 2024
1 parent 0e7458b commit 2814adb
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/cold-onions-cheer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@leordev-web5/crypto-aws-kms": patch
---

Add foo functionality
5 changes: 5 additions & 0 deletions .changeset/twenty-items-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@leordev-web5/common": patch
---

Add greetings functionality
3 changes: 3 additions & 0 deletions packages/common/src/greetings.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function greetings(name: string): string {
return `Hello ${name}!`;
}
3 changes: 2 additions & 1 deletion packages/common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ export * from './object.js';
export * from './stores.js';
export * from './stream.js';
export * from './stream-node.js';
export * from './type-utils.js';
export * from './type-utils.js';
export * from './greetings.js';
3 changes: 3 additions & 0 deletions packages/crypto-aws-kms/src/foo.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function foo(bar: string): string {
return `Foo - Bar: ${bar}!`;
}
3 changes: 2 additions & 1 deletion packages/crypto-aws-kms/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './ecdsa.js';
export * from './key-manager.js';
export * from './utils.js';
export * from './utils.js';
export * from './foo.js';

0 comments on commit 2814adb

Please sign in to comment.