Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .config/release-it.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Config } from "release-it";

export default {
git: {
commitArgs: ["--no-verify"],
},
} satisfies Config;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
"lint": "eslint",
"prepare": "bob build",
"prepublishOnly": "bob build",
"release": "release-it",
"release:nightly": "release-it 3.0.0-nightly.\"$(git rev-parse --short HEAD)\" --npm.tag=beta",
"release": "release-it --config ./.config/release-it.config.ts",
"release:nightly": "release-it --config ./.config/release-it.config.ts 3.0.0-nightly.\"$(git rev-parse --short HEAD)\" --npm.tag=beta",
"start": "yarn example start",
"start:build": "yarn build && yarn example build",
"start:debug": "yarn build && yarn example debug",
Expand Down