refactor: app deployment

This commit is contained in:
2023-06-16 11:40:23 +02:00
parent d61d16e752
commit 5b4d2bd16c
39 changed files with 523 additions and 246 deletions

View File

@@ -4,7 +4,8 @@
"scripts": {
"build": "dotenv -c -- turbo run build",
"build:docker-workspace": "docker build -t openstapps:workspace .",
"build:full": "dotenv -c -- turbo run syncpack build lint format",
"build:full": "dotenv -c -- turbo run syncpack build lint format --summarize",
"build:full:skip": "dotenv -c -- turbo-ignore --task='build lint format'",
"dev": "dotenv -c -- turbo run dev",
"docs": "dotenv -c -- turbo run docs && typedoc",
"format": "dotenv -c -- turbo run format",
@@ -14,7 +15,8 @@
"publish-packages": "dotenv -c -- turbo run build format lint test && changeset version && changeset publish",
"syncpack": "syncpack list-mismatches && syncpack lint-semver-ranges",
"syncpack:fix": "syncpack format && syncpack fix-mismatches",
"test": "dotenv -c -- turbo run test --filter=!@openstapps/app && node coverage.mjs",
"test": "trap 'node coverage.mjs' EXIT && dotenv -c -- turbo run test --filter=!@openstapps/app",
"test:skip": "dotenv -c -- turbo-ignore --task='test' --filter=!@openstapps/app",
"test:integration": "dotenv -c -- turbo run test:integration",
"turboify-pipeline": "node deploy.mjs backend,api-cli,database && pnpm build:full && pnpm test && pnpm run docs"
},
@@ -24,8 +26,10 @@
"deepmerge": "4.3.1",
"dotenv-cli": "7.2.1",
"glob": "10.2.7",
"junit-report-merger": "6.0.2",
"syncpack": "10.5.1",
"turbo": "1.10.3",
"turbo-ignore": "1.10.6",
"typedoc": "0.24.8",
"typescript": "4.9.5"
}