From fb985621fbe0ff636ab73738c077f44a2ada8068 Mon Sep 17 00:00:00 2001 From: Tiago <70700766+tiagorangel1@users.noreply.github.com> Date: Sat, 15 Mar 2025 10:55:57 +0000 Subject: [PATCH] remove docs changelog --- docs/.vitepress/config.mjs | 7 ------- docs/guide/changelog/server.md | 3 --- docs/guide/changelog/widget.md | 5 ----- docs/package.json | 7 ++++--- package.json | 6 +++--- 5 files changed, 7 insertions(+), 21 deletions(-) delete mode 100644 docs/guide/changelog/server.md delete mode 100644 docs/guide/changelog/widget.md diff --git a/docs/.vitepress/config.mjs b/docs/.vitepress/config.mjs index 4502b86..ba519e0 100644 --- a/docs/.vitepress/config.mjs +++ b/docs/.vitepress/config.mjs @@ -40,13 +40,6 @@ export default defineConfig({ { text: '@cap.js/widget', link: '/guide/widget.md' } ] }, - { - text: 'Changelogs', - items: [ - { text: '@cap.js/server', link: '/guide/changelog/server.md' }, - { text: '@cap.js/widget', link: '/guide/changelog/widget.md' } - ] - }, { text: "Vulnerabilities", link: "/guide/vulnerabilities.md" }, { text: "Demo", link: "https://cap-starter.glitch.me/" }, ], diff --git a/docs/guide/changelog/server.md b/docs/guide/changelog/server.md deleted file mode 100644 index 4296b49..0000000 --- a/docs/guide/changelog/server.md +++ /dev/null @@ -1,3 +0,0 @@ -# @cap.js/server changelog - -No items yet. \ No newline at end of file diff --git a/docs/guide/changelog/widget.md b/docs/guide/changelog/widget.md deleted file mode 100644 index a4eeaa5..0000000 --- a/docs/guide/changelog/widget.md +++ /dev/null @@ -1,5 +0,0 @@ -# @cap.js/widget changelog - -### 0.0.9 - -- Multiple improvements to the Cap invisible mode \ No newline at end of file diff --git a/docs/package.json b/docs/package.json index 337db2c..2746fca 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,8 +1,9 @@ { "scripts": { - "docs:dev": "vitepress dev", - "docs:build": "vitepress build", - "docs:preview": "vitepress preview" + "start": "vitepress dev", + "dev": "vitepress dev", + "build": "vitepress build", + "preview": "vitepress preview" }, "devDependencies": { "vitepress-plugin-nprogress": "^0.0.4", diff --git a/package.json b/package.json index 497f74e..d6b35e9 100644 --- a/package.json +++ b/package.json @@ -20,9 +20,9 @@ "scripts": { "build": "bun run build.js", "test": "echo \"Error: no test specified\" && exit 1", - "docs:dev": "cd docs && bun run docs:dev", - "docs:build": "cd docs && bun run docs:build", - "docs:preview": "cd docs && bun run docs:preview", + "docs:dev": "cd docs && bun run dev", + "docs:build": "cd docs && bun run build", + "docs:preview": "cd docs && bun run preview", "widget:publish": "cd widget && sudo npm publish --access public", "server:publish": "cd server && sudo npm publish --access public" }