Skip to content

Commit 8d62005

Browse files
chore(deps): update all patch dependencies (#3230)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Timeless0911 <1604889533@qq.com>
1 parent e4f902e commit 8d62005

File tree

18 files changed

+65
-107
lines changed

18 files changed

+65
-107
lines changed

.github/workflows/ecosystem-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 1
2929

30-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
30+
- uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3
3131
id: changes
3232
with:
3333
predicate-quantifier: 'every'

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
npm install -g corepack@latest --force
3232
corepack enable
3333
34-
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
34+
- uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3
3535
id: changes
3636
with:
3737
predicate-quantifier: 'every'

e2e/fixtures/banner/theme/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ const Layout = () => {
1919
);
2020
};
2121

22-
export { Layout };
2322
export * from '@rspress/core/theme-original';
23+
export { Layout };
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import IconSearch from './assets/search.svg';
22

3-
export { IconSearch };
43
export * from '@rspress/core/theme-original';
4+
export { IconSearch };

e2e/fixtures/search-algolia/theme/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ const Search = () => {
1111
/>
1212
);
1313
};
14-
export { Search };
14+
1515
export * from '@rspress/core/theme-original';
16+
export { Search };

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
]
3232
},
3333
"devDependencies": {
34-
"@biomejs/biome": "^2.4.6",
34+
"@biomejs/biome": "^2.4.7",
3535
"@changesets/cli": "^2.30.0",
3636
"@playwright/test": "1.58.2",
3737
"@rspress/config": "workspace:*",

packages/core/src/node/mdx/rehypePlugins/shiki.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ function createRehypeShikiOptions(
4040
};
4141
}
4242

43-
export { rehypeShiki, createRehypeShikiOptions };
43+
export { createRehypeShikiOptions, rehypeShiki };

packages/core/src/node/route/RoutePage.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import path from 'node:path';
21
import { describe, expect, it } from '@rstest/core';
32
import { getRoutePathParts, normalizeRoutePath } from './normalizeRoutePath';
43
import { addRoutePrefix } from './RoutePage';

packages/core/src/node/ssg/ssgEnv.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ function SSGConcurrency() {
7373
}
7474

7575
export {
76+
getNumberOfThreads,
77+
SSGConcurrency,
7678
SSGWorkerThreadRecyclerMaxMemory,
7779
SSGWorkerThreadTaskSize,
78-
SSGConcurrency,
79-
getNumberOfThreads,
8080
};

packages/core/src/runtime/utils.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ function isAbsoluteUrl(path: string) {
6868
export {
6969
addLeadingSlash,
7070
addTrailingSlash,
71-
removeTrailingSlash,
72-
isProduction,
73-
normalizeImagePath,
7471
cleanUrlByConfig,
75-
removeBase,
76-
withBase,
7772
isEqualPath,
73+
isProduction,
7874
normalizeHrefInRuntime,
75+
normalizeImagePath,
76+
removeBase,
77+
removeTrailingSlash,
7978
routePathToMdPath,
79+
withBase,
8080
};

0 commit comments

Comments
 (0)