Skip to content

Commit

Permalink
Refactor import strategy to support multiple providers (#26)
Browse files Browse the repository at this point in the history
重构导入策略,支持多 provider

可供测试的 jar 包。

[plugin-migrate-1.2.0-SNAPSHOT.jar.zip](https://github.com/halo-sigs/plugin-migrate/files/12354884/plugin-migrate-1.2.0-SNAPSHOT.jar.zip)

Fixes #2 

```release-note
重构导入策略,支持多 provider
```
  • Loading branch information
LIlGG committed Aug 22, 2023
1 parent 4fecb75 commit c014013
Show file tree
Hide file tree
Showing 52 changed files with 6,931 additions and 3,572 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,5 @@ application-local.properties

/admin-frontend/node_modules/
/workplace/
node_modules
node_modules
/docs/.vitepress/cache/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "com.github.node-gradle.node" version "3.3.0"
id "io.freefair.lombok" version "8.0.0-rc2"
id "io.github.guqing.plugin-development" version "0.0.6-SNAPSHOT"
id "run.halo.plugin.devtools" version "0.0.5"
id 'java'
}

Expand Down
47 changes: 25 additions & 22 deletions console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,45 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@halo-dev/api-client": "^2.4.0",
"@halo-dev/components": "^1.3.0",
"@halo-dev/console-shared": "^2.4.0",
"@vueuse/core": "^9.6.0",
"axios": "^1.2.0",
"@halo-dev/api-client": "^2.7.0",
"@halo-dev/components": "^1.6.0",
"@halo-dev/console-shared": "^2.7.0",
"@tanstack/vue-query": "^4.33.1",
"@vueuse/core": "^10.2.1",
"axios": "^1.4.0",
"fast-xml-parser": "^4.2.6",
"fastq": "^1.15.0",
"lodash.groupby": "^4.6.0",
"performant-array-to-tree": "^1.11.0",
"vue": "^3.2.45",
"vue-router": "^4.1.6"
"transliteration": "^2.3.5",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@iconify/json": "^2.1.144",
"@rushstack/eslint-patch": "^1.2.0",
"@iconify/json": "^2.2.95",
"@rushstack/eslint-patch": "^1.3.2",
"@types/jsdom": "^16.2.15",
"@types/lodash.groupby": "^4.6.7",
"@types/node": "^16.18.3",
"@types/node": "^16.18.39",
"@vitejs/plugin-vue": "^2.3.4",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.2.4",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^8.7.1",
"jsdom": "^19.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.4",
"typescript": "~4.7.4",
"unplugin-icons": "^0.14.14",
"vite": "^2.9.15",
"vitest": "^0.13.1",
"vue-tsc": "^0.35.2"
"tailwindcss": "^3.3.3",
"typescript": "~5.1.6",
"unplugin-icons": "^0.16.5",
"vite": "^4.4.7",
"vitest": "^0.33.0",
"vue-tsc": "^1.8.8"
}
}
Loading

0 comments on commit c014013

Please sign in to comment.