quality / commitlint (push) Skipped
CD / update-wiki (push) Failing after 8s
quality / changes (push) Successful in 7s
quality / docker-check (push) Skipped
quality / web (push) Successful in 1m8s
quality / api (push) Successful in 41s
CD / quality (push) Successful in 2m0s
CD / publish (push) Failing after 11m24s
- Removed Dockerfile and Dockerfile.test as part of the transition to a pre-built image. - Updated .dockerignore and .gitignore to reflect new build context and ignored files. - Modified docker-compose.yml to use the new image for the application. - Enhanced documentation in AGENTS.md and README.md to include CI/CD details and release process. - Added new dependencies for commit linting and semantic release in package.json and pnpm-lock.yaml. This commit streamlines the Docker setup and improves the CI/CD workflow with Gitea Actions.
30 lines
860 B
JSON
30 lines
860 B
JSON
{
|
|
"name": "cloudflare-domain-manager",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"build": "turbo run build",
|
|
"test": "turbo run test",
|
|
"lint": "turbo run lint",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.8.1",
|
|
"@commitlint/config-conventional": "^19.8.1",
|
|
"@markwylde/semantic-release-gitea": "^2.2.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/exec": "^7.0.0",
|
|
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
"conventional-commits-parser": "^6.4.0",
|
|
"husky": "^9.1.7",
|
|
"semantic-release": "^25.0.2",
|
|
"turbo": "^2.5.4"
|
|
},
|
|
"packageManager": "pnpm@10.12.1",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": ["better-sqlite3", "esbuild", "@node-rs/argon2"]
|
|
}
|
|
}
|