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

@@ -15,9 +15,9 @@
"test:e2e:headless": "start-server-and-test test:setup http://127.0.0.1:3000/en/sponsoring \"cypress run --e2e\"",
"test:setup": "yarn build && yarn start",
"preinstall": "/bin/sh -c \"export $(cat .env.local | grep -v '^#' | xargs)\"",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"ci:build": "yarn lint && yarn test:unit && yarn build",
"test": "jest",
"test:watch": "jest --watch",
"ci:build": "yarn lint && yarn test && yarn build",
"clean": "rm -rf .next"
},
"dependencies": {

View File

@@ -0,0 +1,14 @@
{
"extends": ["//"],
"tasks": {
"dev": {
"dependsOn": ["@scandic-hotels/design-system#build"]
},
"build": {
"dependsOn": ["@scandic-hotels/design-system#build"]
},
"test": {
"dependsOn": ["@scandic-hotels/design-system#build"]
}
}
}