Skip to content

Commit

Permalink
chore: release v3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed Sep 18, 2024
1 parent bfdc440 commit 8a06d6d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [3.5.2](https://github.com/hemengke1997/vite-plugin-remix-flat-routes/compare/v3.5.1...v3.5.2) (2024-09-18)


### Features

* support for custom meta file naming ([bfdc440](https://github.com/hemengke1997/vite-plugin-remix-flat-routes/commit/bfdc440836d871dd244099114fb42bbfd9ad8f36))



## [3.5.1](https://github.com/hemengke1997/vite-plugin-remix-flat-routes/compare/v3.5.0...v3.5.1) (2024-09-18)


Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ type Options = {
routeRegex?: RegExp
visitFiles?: VisitFilesFunction
}
legacy?: boolean // 是否开启传统路由模式,默认自动探测
meta?: string // meta文件命名,默认 'meta'
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-remix-flat-routes",
"version": "3.5.1",
"version": "3.5.2",
"description": "remix-flat-routes约定式路由,适配react-router-dom@6数据路由和非数据路由",
"type": "module",
"keywords": [
Expand Down
1 change: 1 addition & 0 deletions src/node/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export type Options = SetOptional<RemixOptions, 'appDirectory'> & {
legacy?: boolean
/**
* @description 自定义meta文件命名
* @default 'meta'
*/
meta?: string
}
Expand Down

0 comments on commit 8a06d6d

Please sign in to comment.