mirror of
https://github.com/zadam/trilium.git
synced 2025-12-21 23:59:59 +01:00
chore(nx): initialize empty commons project
This commit is contained in:
1
packages/commons/src/index.ts
Normal file
1
packages/commons/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib/commons.js';
|
||||
7
packages/commons/src/lib/commons.spec.ts
Normal file
7
packages/commons/src/lib/commons.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { commons } from './commons.js';
|
||||
|
||||
describe('commons', () => {
|
||||
it('should work', () => {
|
||||
expect(commons()).toEqual('commons');
|
||||
})
|
||||
})
|
||||
3
packages/commons/src/lib/commons.ts
Normal file
3
packages/commons/src/lib/commons.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function commons(): string {
|
||||
return 'commons';
|
||||
}
|
||||
Reference in New Issue
Block a user