* 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>
26 lines
500 B
JSON
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"
|
|
}
|
|
}
|