We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c7dbc commit d645ca9Copy full SHA for d645ca9
packages/example-lib2/src/lib/example-lib2.ts
@@ -1,5 +1,5 @@
1
import { exampleLib } from '@babylonlabs-io/example-lib';
2
3
export function exampleLib2(): string {
4
- return exampleLib() + 'example-lib2-new';
+ return exampleLib() + 'example-lib2';
5
}
packages/example-lib3/src/lib/example-lib3.ts
@@ -3,3 +3,7 @@ import { exampleLib2 } from '@babylonlabs-io/example-lib2';
export function exampleLib3(): string {
return exampleLib2() + 'example-lib3-new';
6
+
7
+export function newExampleLib3(): string {
8
+ return 'this is totally new';
9
+}
0 commit comments