Skip to content
Merged

Rc #565

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
69a9aa3
fix(cli-plugin-vitest): migrate configuration to vitest v8
Romakita Apr 8, 2026
10b0b79
feat(cli): add BuildCmd and DevCmd for Vite integration commands
Romakita Apr 8, 2026
8636af3
Github CI build: __run_2 v7.5.0-rc.1 [ci skip]
semantic-release-bot Apr 8, 2026
4548d13
fix(cli): bypass bootstrap when command is dev or build
Romakita Apr 8, 2026
866c76a
Github CI build: __run_2 v7.5.0-rc.2 [ci skip]
semantic-release-bot Apr 8, 2026
53649f6
fix(cli): improve error handling and adjust child process spawning logic
Romakita Apr 8, 2026
f51d35d
Github CI build: __run_2 v7.5.0-rc.3 [ci skip]
semantic-release-bot Apr 8, 2026
54c49df
fix(cli): configure Vite server to disable dependency discovery
Romakita Apr 8, 2026
c2faa3a
Github CI build: __run_2 v7.5.0-rc.4 [ci skip]
semantic-release-bot Apr 8, 2026
9dea2f3
fix(cli): refactor Vite server configuration and improve child proces…
Romakita Apr 8, 2026
1b271a5
Github CI build: __run_2 v7.5.0-rc.5 [ci skip]
semantic-release-bot Apr 8, 2026
9ca12be
fix(cli): update config file path to use current working directory
Romakita Apr 8, 2026
17ac969
feat(cli): add support for Bun + Vite runtime and update related conf…
Romakita Apr 9, 2026
e753ff1
Github CI build: __run_2 v7.5.0-rc.6 [ci skip]
semantic-release-bot Apr 9, 2026
1df5024
fix(cli): implement Vite binary resolution and add corresponding tests
Romakita Apr 16, 2026
f0eef00
docs: update dependencies and improve theme integration
Romakita Apr 16, 2026
e6c4f31
Github CI build: __run_2 v7.5.0-rc.7 [ci skip]
semantic-release-bot Apr 16, 2026
297c3eb
docs: add siteUrl to theme configuration and update @tsed/vitepress-t…
Romakita Apr 20, 2026
d5b448d
fix(cli): rename resolveViteBin to resolveViteBinFromPackageJsonPath …
Romakita Apr 20, 2026
cc1a181
Github CI build: __run_2 v7.5.0-rc.8 [ci skip]
semantic-release-bot Apr 20, 2026
16ab763
fix(cli-tasks): guard undefined tasks in isEnabled
Romakita May 18, 2026
2d837d5
Github CI build: __run_2 v7.5.0-rc.9 [ci skip]
semantic-release-bot May 18, 2026
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
1 change: 1 addition & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ export default defineConfig({
themeConfig: {
logo: "https://tsed.dev/tsed.svg",
siteTitle: "CLI",
siteUrl: "https://cli.tsed.dev",
apiUrl: "/api.json",
team,
apiRedirectUrl: "",
Expand Down
3 changes: 2 additions & 1 deletion docs/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// https://vitepress.dev/guide/custom-theme
import "./style.css";

import {DefaultTheme} from "@tsed/vitepress-theme";
import {DefaultTheme, DocActions} from "@tsed/vitepress-theme";
import HomeBanner from "@tsed/vitepress-theme/organisms/home/HomeBanner.vue";
import HomeBeforeFeatures from "@tsed/vitepress-theme/organisms/home/HomeBeforeFeatures.vue";
import HomeBody from "@tsed/vitepress-theme/organisms/home/HomeBody.vue";
Expand All @@ -17,6 +17,7 @@ export default {
extends: DefaultTheme,
Layout: () => {
return h(DefaultTheme.Layout, null, {
"doc-before": () => h(DocActions),
"home-hero-image": () =>
h(HomeBanner, null, {
default: () =>
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@clack/prompts": "^1.0.0-alpha.10",
"@tsed/vitepress-theme": "1.5.7",
"@tsed/vitepress-theme": "1.7.2",
"@vueuse/core": "10.11.0",
"axios": "1.12.0",
"fs-extra": "^11.2.0",
Expand All @@ -21,7 +21,7 @@
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.2",
"vitepress": "1.5.0"
"vitepress": "1.6.4"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
Expand Down
Loading
Loading