chore(nx): initialize empty commons project

This commit is contained in:
Elian Doran
2025-04-22 14:45:25 +03:00
parent 57ecf72c90
commit 84b6764166
30 changed files with 22581 additions and 13 deletions

View File

@@ -0,0 +1 @@
export * from './lib/commons.js';

View File

@@ -0,0 +1,7 @@
import { commons } from './commons.js';
describe('commons', () => {
it('should work', () => {
expect(commons()).toEqual('commons');
})
})

View File

@@ -0,0 +1,3 @@
export function commons(): string {
return 'commons';
}