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
13 changes: 0 additions & 13 deletions .changeset/config.json

This file was deleted.

3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,5 @@ jobs:
- name: Lint
run: pnpm run lint

- name: Check Changeset
run: pnpx disallow-major-changeset

- name: Check Dependency Version
run: pnpm run check-dependency-version
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ feat(core): Add `myOption` config
Repository maintainers can publish a new version of changed packages to npm.

1. Checkout a new release branch, for example `release_v1.2.0`
2. Run [changesets](https://github.com/changesets/changesets) to bump changed packages and commit the changes.
2. Run `pnpm bump` in the package directory to update the version of each package.
3. Create a pull request, the title should be `release: v1.2.0`.
4. Run the [release action](https://github.com/web-infra-dev/rsbuild/actions/workflows/release.yml) to publish packages to npm.
5. Merge the release pull request to `main`.
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"scripts": {
"build": "cross-env NX_DAEMON=false nx run-many -t build --exclude @examples/* @e2e/* rsbuild-* --parallel=10",
"build:doc": "cd website && pnpm run build",
"change": "changeset",
"changeset": "changeset",
"check-dependency-version": "pnpx check-dependency-version-consistency . --ignore-dep loader-utils",
"check-spell": "pnpx cspell && heading-case",
"dev:doc": "cd website && pnpm run dev",
Expand Down Expand Up @@ -40,7 +38,6 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.4",
"@rsbuild/config": "workspace:*",
"@scripts/test-helper": "workspace:*",
"cross-env": "^7.0.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/compat/plugin-webpack-swc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@modern-js/swc-plugins": "0.6.11",
Expand Down
3 changes: 2 additions & 1 deletion packages/compat/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"copy-webpack-plugin": "11.0.0",
Expand Down
5 changes: 3 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rsbuild/core",
"version": "1.3.22",
"version": "1.3.23",
"description": "The Rspack-based build tool.",
"homepage": "https://rsbuild.rs",
"bugs": {
Expand Down Expand Up @@ -48,7 +48,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"prebundle": "prebundle"
"prebundle": "prebundle",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@rspack/core": "1.3.12",
Expand Down
3 changes: 2 additions & 1 deletion packages/create-rsbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"start": "node ./dist/index.js"
"start": "node ./dist/index.js",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"create-rstack": "1.4.5"
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-babel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"prebundle": "prebundle"
"prebundle": "prebundle",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@babel/core": "^7.27.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-less/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"prebundle": "prebundle"
"prebundle": "prebundle",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"deepmerge": "^4.3.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@prefresh/core": "^1.5.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@rspack/plugin-react-refresh": "~1.4.3",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-sass/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"prebundle": "prebundle"
"prebundle": "prebundle",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"deepmerge": "^4.3.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@rsbuild/plugin-babel": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-stylus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"deepmerge": "^4.3.1",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"svelte-loader": "3.2.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-svgr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"prebundle": "prebundle"
"prebundle": "prebundle",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"@rsbuild/plugin-react": "workspace:^1.1.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/plugin-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch"
"dev": "rslib build --watch",
"bump": "npx bumpp --no-tag"
},
"dependencies": {
"vue-loader": "^17.4.2",
Expand Down
Loading
Loading