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
1 change: 1 addition & 0 deletions .changepacks/changepack_log_6S13wh4t-hSCBsdbhv3OV.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"changes":{"packages/bun-plugin/package.json":"Major"},"note":"Release major","date":"2026-01-04T10:36:16.984388500Z"}
1 change: 1 addition & 0 deletions .changepacks/changepack_log_cPeOaZz34FGDxxjdtvHvz.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"changes":{"packages/components/package.json":"Patch","packages/rsbuild-plugin/package.json":"Patch","bindings/devup-ui-wasm/package.json":"Patch","packages/react/package.json":"Patch","packages/eslint-plugin/package.json":"Patch","packages/bun-plugin/package.json":"Major","packages/reset-css/package.json":"Patch","packages/vite-plugin/package.json":"Patch","packages/webpack-plugin/package.json":"Patch","packages/next-plugin/package.json":"Patch"},"note":"Refactor code","date":"2026-01-04T10:36:03.702621400Z"}
5 changes: 1 addition & 4 deletions .changepacks/config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"ignore": ["*", "!packages/*/*", "!bindings/*/package.json"],
"baseBranch": "main",
"latestPackage": null,
"publish": {
"node": "pnpm publish --no-git-checks"
}
"latestPackage": null
}
35 changes: 15 additions & 20 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,8 @@ jobs:
run: |
cargo install cargo-tarpaulin
rustup component add rustfmt clippy
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- uses: oven-sh/setup-bun@v2
name: Install bun

- uses: jetli/[email protected]
with:
Expand All @@ -38,11 +36,10 @@ jobs:
with:
registry-url: "https://registry.npmjs.org"
node-version: 22
cache: 'pnpm'
- run: pnpm i
- run: pnpm build
- run: bun install
- run: bun run build
- name: Benchmark
run: pnpm benchmark
run: bun run benchmark

publish:
runs-on: ubuntu-latest
Expand All @@ -55,10 +52,8 @@ jobs:
run: |
cargo install cargo-tarpaulin
rustup component add rustfmt clippy
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
run_install: false
- uses: oven-sh/setup-bun@v2
name: Install bun

- uses: jetli/[email protected]
with:
Expand All @@ -68,13 +63,12 @@ jobs:
with:
registry-url: "https://registry.npmjs.org"
node-version: 22
cache: 'pnpm'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: pnpm i
- run: pnpm build
- run: bun install
- run: bun run build
- run: |
pnpm lint
bun run lint
# rust coverage issue
echo 'max_width = 100000' > .rustfmt.toml
echo 'tab_spaces = 4' >> .rustfmt.toml
Expand All @@ -85,16 +79,16 @@ jobs:
echo 'merge_derives = true' >> .rustfmt.toml
echo 'use_small_heuristics = "Default"' >> .rustfmt.toml
cargo fmt
- run: pnpm test
- run: bun run test
- name: Format Rollback
run: |
rm -rf .rustfmt.toml
cargo fmt
- name: Build Landing
run: |
pnpm -F components build-storybook
bun run --filter @devup-ui/components build-storybook
mv ./packages/components/storybook-static ./apps/landing/public/storybook
pnpm -F landing build
bun run --filter landing build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand All @@ -107,10 +101,11 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./coverage/lcov.info

- uses: changepacks/action@main
id: changepacks
with:
publish: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
pnpm lint-staged
bun lint
bun run test
8 changes: 0 additions & 8 deletions .lintstagedrc.mjs

This file was deleted.

Loading