Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: the association between links and groups #20

Merged
merged 14 commits into from
Apr 5, 2023
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jar {

dependencies {
compileOnly "io.swagger.core.v3:swagger-core-jakarta:2.2.0"
compileOnly "org.springdoc:springdoc-openapi-starter-webflux-ui:2.0.4"
compileOnly "org.springframework.boot:spring-boot-starter-data-jpa"
compileOnly "org.pf4j:pf4j:3.6.0"
compileOnly files("lib/halo-2.0.0-SNAPSHOT-plain.jar")
compileOnly 'org.springframework.boot:spring-boot-starter-webflux'
Expand Down
41 changes: 19 additions & 22 deletions console/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,56 +3,53 @@
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite build --watch",
"dev": "vite build --watch --mode=development",
"build": "vite build",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"prettier": "prettier --write './src/**/*.{vue,js,jsx,ts,tsx,css,scss,json,yml,yaml,html}'"
},
"dependencies": {
"@formkit/core": "1.0.0-beta.12",
"@halo-dev/components": "^1.1.0",
"@halo-dev/console-shared": "^2.2.0",
"@halo-dev/components": "^1.3.0",
"@halo-dev/console-shared": "^2.4.1",
"@tanstack/vue-query": "^4.27.0",
"@vueuse/core": "^9.6.0",
"@vueuse/router": "^9.6.0",
"axios": "^0.27.2",
"dayjs": "^1.11.6",
"fuse.js": "^6.6.2",
"dayjs": "^1.11.7",
"lodash.clonedeep": "^4.5.0",
"uuid": "^8.3.2",
"vue": "^3.2.45",
"vue-router": "^4.1.6",
"vuedraggable": "^4.1.0",
"yaml": "^2.1.3"
"yaml": "^2.2.1"
},
"devDependencies": {
"@iconify/json": "^2.2.4",
"@iconify/json": "^2.2.44",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jsdom": "^16.2.15",
"@types/lodash.clonedeep": "^4.5.7",
"@types/node": "^16.18.3",
"@types/uuid": "^8.3.4",
"@types/node": "^16.18.23",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@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.3.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.28.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.37.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.21",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.56.1",
"tailwindcss": "^3.2.4",
"sass": "^1.60.0",
"tailwindcss": "^3.3.1",
"typescript": "~4.7.4",
"unplugin-icons": "^0.15.1",
"vite": "^3.2.4",
"unplugin-icons": "^0.15.3",
"vite": "^3.2.5",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^0.13.1",
"vue-tsc": "^0.40.13"
Expand Down
Loading