Skip to content

Commit 9621198

Browse files
committed
chore: update
1 parent b942fd0 commit 9621198

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
schedule:
5-
- cron: '0 1 * * *'
5+
- cron: "0 1 * * *"
66

77
workflow_dispatch:
88

@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Node.js
2727
uses: actions/setup-node@v5
2828
with:
29-
node-version-file: '.nvmrc'
29+
node-version-file: ".nvmrc"
3030

3131
- name: Install dependencies
3232
run: pnpm install
@@ -39,6 +39,10 @@ jobs:
3939
run: |
4040
pnpm build:rsbuild
4141
42+
- name: Build Rslib
43+
run: |
44+
pnpm build:rslib
45+
4246
- name: Build Rspress
4347
run: |
4448
pnpm build:rspress

biome.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"**/rsbuild/**",
1313
"**/rspress/**",
1414
"**/rsdoctor/**",
15+
"**/rslib/**",
1516
"!**/dist",
1617
"!**/dist-*",
1718
"!**/doc_build",
@@ -55,7 +56,10 @@
5556
"**/tsconfig-*.json"
5657
],
5758
"json": {
58-
"parser": { "allowComments": true, "allowTrailingCommas": true }
59+
"parser": {
60+
"allowComments": true,
61+
"allowTrailingCommas": true
62+
}
5963
}
6064
},
6165
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:rspress": "pnpm --filter \"rspress-*\" build",
1414
"build:rslib": "pnpm --filter \"rslib-*\" build",
1515
"prepare": "husky",
16-
"sort-package-json": "npx sort-package-json \"rspack/*/package.json\" \"rsbuild/*/package.json\" \"rspress/*/package.json\" \"rsdoctor/*/package.json\""
16+
"sort-package-json": "npx sort-package-json \"rspack/*/package.json\" \"rsbuild/*/package.json\" \"rspress/*/package.json\" \"rsdoctor/*/package.json\" \"rslib/*/package.json\""
1717
},
1818
"lint-staged": {
1919
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [

taze.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineConfig } from 'taze';
22

33
export default defineConfig({
44
mode: 'major',
5-
include: ['/rspack/', '/rsbuild/', '/rspress/', '/rsdoctor/', '/swc/'],
5+
include: ['/rspack/', '/rsbuild/', '/rspress/', '/rsdoctor/', '/rslib/', '/swc/'],
66
write: true,
77
recursive: true,
88
});

0 commit comments

Comments
 (0)