Merged in feat/turborepo (pull request #1451)

Turborepo

Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-03-12 08:18:38 +00:00
parent 796112ca28
commit 01740e3300
8 changed files with 127 additions and 8 deletions

View File

@@ -39,7 +39,8 @@
"lint:fix": "eslint . --ext ts,tsx --report-unused-disable-directives --fix --max-warnings 0 && tsc",
"storybook": "yarn run generate && storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test": "vitest --watch=false",
"test:watch": "vitest",
"prepack": "yarn run build",
"prepare": "husky && yarn run build"
},

View File

@@ -0,0 +1,8 @@
{
"extends": ["//"],
"tasks": {
"build": {
"outputs": ["dist/**"]
}
}
}