refactor(common): Introduceer common package

This commit is contained in:
Tibo De Peuter 2025-03-31 18:31:12 +02:00
parent da2729eeca
commit 8bf927d1c9
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 36 additions and 5 deletions

View file

@ -5,14 +5,15 @@
"private": true,
"type": "module",
"scripts": {
"build": "npm run build --ws",
"format": "npm run format --ws",
"format-check": "npm run format-check --ws",
"lint": "npm run lint --ws",
"test:unit": "npm run test:unit --ws"
"build": "npm run build --workspace=backend --workspace=frontend",
"format": "npm run format --workspace=backend --workspace=common --workspace=frontend",
"format-check": "npm run format-check --workspace=backend --workspace=common --workspace=frontend",
"lint": "npm run lint --workspace=backend --workspace=common --workspace=frontend",
"test:unit": "npm run test:unit --workspace=backend --workspace=frontend"
},
"workspaces": [
"backend",
"common",
"frontend",
"docs"
],