mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-11-08 13:25:47 +08:00
feat: add monorepo
This commit is contained in:
7
packages/shared/src/lib/shared.spec.ts
Normal file
7
packages/shared/src/lib/shared.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { shared } from './shared';
|
||||
|
||||
describe('shared', () => {
|
||||
it('should work', () => {
|
||||
expect(shared()).toEqual('shared');
|
||||
});
|
||||
});
|
||||
3
packages/shared/src/lib/shared.ts
Normal file
3
packages/shared/src/lib/shared.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function shared(): string {
|
||||
return 'shared';
|
||||
}
|
||||
Reference in New Issue
Block a user