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

Implement UI with Basic CRUD Functionality #6

Merged
merged 17 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
所需环境:

1. Java 17
2. Node 18
3. pnpm 8
2. Node 20
3. pnpm 9
4. Docker (可选)

克隆项目:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id "com.github.node-gradle.node" version "5.0.0"
id "com.github.node-gradle.node" version "7.0.2"
id "io.freefair.lombok" version "8.0.1"
id "run.halo.plugin.devtools" version "0.0.9"
}
Expand Down Expand Up @@ -52,5 +52,5 @@ build {
}

halo {
version = '2.11'
version = '2.17'
}
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"dependencies": {
"@halo-dev/api-client": "^2.17.0",
"@halo-dev/ui-plugin-bundler-kit": "^2.17.0",
"axios": "^1.7.2",
"vite": "^5.3.3"
},
"devDependencies": {
"depcheck": "^1.4.7"
}
}
Loading