Phase 1+2: Nx workspace with apps, libs, and module boundaries
This commit is contained in:
1
libs/encounter-library/src/index.ts
Normal file
1
libs/encounter-library/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib/encounter-library';
|
||||
7
libs/encounter-library/src/lib/encounter-library.spec.ts
Normal file
7
libs/encounter-library/src/lib/encounter-library.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { encounterLibrary } from './encounter-library';
|
||||
|
||||
describe('encounterLibrary', () => {
|
||||
it('should work', () => {
|
||||
expect(encounterLibrary()).toEqual('encounter-library');
|
||||
});
|
||||
});
|
||||
3
libs/encounter-library/src/lib/encounter-library.ts
Normal file
3
libs/encounter-library/src/lib/encounter-library.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function encounterLibrary(): string {
|
||||
return 'encounter-library';
|
||||
}
|
||||
Reference in New Issue
Block a user