mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 03:05:07 +08:00
fix: 修复plugin-locale类型问题 (#180)
* fix: 修复plugin-locale类型问题 * ci: 添加codeReview action & pr模板
This commit is contained in:
parent
31e954e322
commit
d11095355f
23
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
23
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!-- PULL REQUEST TEMPLATE -->
|
||||
<!-- (Update "[ ]" to "[x]" to check a box) -->
|
||||
|
||||
**What kind of change does this PR introduce?** (check at least one)
|
||||
|
||||
- [ ] Bugfix
|
||||
- [ ] Feature
|
||||
- [ ] Code style update
|
||||
- [ ] Refactor
|
||||
- [ ] Docs
|
||||
- [ ] Build-related changes
|
||||
- [ ] Other, please describe:
|
||||
|
||||
**Does this PR introduce a breaking change?** (check one)
|
||||
|
||||
- [ ] Yes
|
||||
- [ ] No
|
||||
|
||||
If yes, please describe the impact and migration path for existing applications:
|
||||
|
||||
**Related issue (if exists):**
|
||||
|
||||
**Other information:**
|
26
.github/workflows/cr.yml
vendored
Normal file
26
.github/workflows/cr.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Code Review
|
||||
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened]
|
||||
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: anc95/ChatGPT-CodeReview@main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||
# Optional
|
||||
LANGUAGE: Chinese
|
||||
MODEL: gpt-3.5-turbo
|
||||
top_p: 1
|
||||
temperature: 1
|
@ -12,7 +12,7 @@
|
||||
"dev": "node scripts/build.mjs --watch",
|
||||
"build": "node scripts/build.mjs",
|
||||
"release": "node scripts/release.mjs",
|
||||
"clean": "rm pnpm-lock.yaml & rm -rf ./node_modules & rm -rf packages/**/node_modules & rm -rf packages/**/.cache",
|
||||
"clean": "rm -rf ./node_modules & rm -rf packages/**/node_modules & rm -rf packages/**/.cache",
|
||||
"docs:dev": "vuepress dev docs --clean-cache",
|
||||
"docs:build": "vuepress build docs --clean-cache",
|
||||
"test": "fes test",
|
||||
|
3
packages/fes-plugin-locale/types.d.ts
vendored
3
packages/fes-plugin-locale/types.d.ts
vendored
@ -1,4 +1,4 @@
|
||||
import '@fesjs/fes';
|
||||
export { useI18n } from 'vue-i18n'
|
||||
|
||||
export const locale: {
|
||||
setLocale({ locale }: { locale: string }): void;
|
||||
@ -6,6 +6,7 @@ export const locale: {
|
||||
getAllLocales(): string[];
|
||||
messages: Record<string, object>;
|
||||
};
|
||||
|
||||
declare module '@fesjs/fes' {
|
||||
interface PluginBuildConfig {
|
||||
locale?:
|
||||
|
7543
pnpm-lock.yaml
generated
7543
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user