diff options
| author | 2026-01-20 13:44:21 +0800 | |
|---|---|---|
| committer | 2026-01-20 13:44:21 +0800 | |
| commit | 7338b8627833018a0e3c05c3c4f3cc7fc182e8d2 (patch) | |
| tree | 23e39e5603aadc10d6b2d7efad063c68f357a860 /.changes/config.toml | |
| parent | dbf781a35b96252e0199fec4337515651e49a8f6 (diff) | |
| parent | cf6cd6ba667b35e352b705946420cf4acab2b004 (diff) | |
| download | DropOut-7338b8627833018a0e3c05c3c4f3cc7fc182e8d2.tar.gz DropOut-7338b8627833018a0e3c05c3c4f3cc7fc182e8d2.zip | |
[Chore] branch: Sync with main (#75)
Diffstat (limited to '.changes/config.toml')
| -rw-r--r-- | .changes/config.toml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.changes/config.toml b/.changes/config.toml new file mode 100644 index 0000000..dbce913 --- /dev/null +++ b/.changes/config.toml @@ -0,0 +1,47 @@ +[branches] +base = "main" +release = "release" + +[tags] +chore = "Chores" +feat = "New Features" +fix = "Bug Fixes" +perf = "Performance Improvements" +refactor = "Refactors" + +[packages."@dropout/ui"] +path = "packages/ui" +resolver = "nodejs" +version-mode = { pre-release.tag = "alpha" } + +[packages.dropout] +path = "src-tauri" +resolver = "rust" +version-mode = { pre-release.tag = "alpha" } +assets = ["artifacts/**/*"] + +[resolver.rust.pre-check] +url = "https://crates.io/api/v1/crates/{{ package.name }}/{{ package.version }}" + +[resolver.rust.pre-check.extra-headers] +User-Agent = "Semifold 0.2.10" + +[[resolver.rust.publish]] +command = "cargo" +args = ["publish"] + +[[resolver.rust.post-version]] +command = "pnpm" +args = ["bump-tauri"] + +[resolver.nodejs.pre-check] +url = "https://registry.npmjs.org/{{ package.name }}/{{ package.version }}" + +[[resolver.nodejs.publish]] +command = "npm" +args = [ + "publish", + "--provenance", + "--access", + "public", +] |