fix: 修复plugin-locale类型问题 (#180)

* fix: 修复plugin-locale类型问题

* ci: 添加codeReview action & pr模板
This commit is contained in:
听海 2023-04-03 20:49:30 +08:00 committed by GitHub
parent 31e954e322
commit d11095355f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3273 additions and 4324 deletions

23
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View 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
View 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

View File

@ -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",

View File

@ -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

File diff suppressed because it is too large Load Diff