Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 3842da1

Browse files
committed
chore: promote main to stable
2 parents 1383432 + 79d24c7 commit 3842da1

18 files changed

Lines changed: 782 additions & 700 deletions

.github/workflows/deploy-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy Demo
22

33
on:
44
push:
5-
branches: [stable]
5+
branches: [main]
66
paths:
77
- "demo/**"
88
- "!**.md"

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pnpm type-check && pnpm lint
1+
pnpm lint-staged && pnpm type-check && pnpm build

.prettierrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
{}
1+
{
2+
"singleQuote": true,
3+
"printWidth": 100
4+
}

.releaserc.cjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,14 @@ const config = {
2222
],
2323
}
2424

25-
// changelog and git for non-prerelease branches
25+
// git plugin for non-prerelease branches to update package.json version
2626
const isPrerelease = config.branches.some(
2727
(b) => typeof b === 'object' && b.name === branch && b.prerelease
2828
)
2929

3030
if (!isPrerelease) {
31-
config.plugins.push(['@semantic-release/changelog', { changelogFile: 'CHANGELOG.md' }])
3231
config.plugins.push(['@semantic-release/git', {
33-
assets: ['CHANGELOG.md', 'package.json'],
32+
assets: ['package.json'],
3433
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
3534
}])
3635
}

CHANGELOG.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"@superdoc-dev/template-builder": "link:../.",
1212
"react": "^19.2.0",
1313
"react-dom": "^19.2.0",
14-
"superdoc": "^0.31.2"
14+
"superdoc": "^0.35.3"
1515
},
1616
"devDependencies": {
1717
"@types/react": "^19.2.6",

demo/pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)