acpx/.release-it.json
Bob 432449c610
chore: align acpx tooling with openclaw stack (#43)
* chore: add non-blocking OXC lint pilot

* chore: migrate lint and format to OXC tooling

* style: apply oxfmt to integration test

* build: migrate bundling from tsup to tsdown

* chore: align acpx tooling with openclaw conventions

---------

Co-authored-by: Onur <2453968+osolmaz@users.noreply.github.com>
2026-03-03 19:32:31 +01:00

26 lines
500 B
JSON

{
"git": {
"requireCleanWorkingDir": false,
"requireBranch": "main",
"commit": false,
"tag": true,
"tagName": "v${version}",
"push": true,
"pushArgs": ["--tags"]
},
"npm": {
"allowSameVersion": true,
"version": false,
"publish": true,
"skipChecks": true,
"publishArgs": ["--provenance"]
},
"github": {
"release": true,
"autoGenerate": true
},
"hooks": {
"before:init": "pnpm run lint && pnpm run typecheck && pnpm test"
}
}