Commit 17e63d2f authored by malkoG's avatar malkoG
Browse files

(ci) Exclude examples folder from build in docs/package.json scripts

parent 66388c77
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -47,8 +47,8 @@
    "x-forwarded-fetch": "^0.2.0"
  },
  "scripts": {
    "dev": "cd ../ && pnpm run --filter '!{docs}' -r build && cd docs/ && vitepress dev --host",
    "build": "cd ../ && pnpm run --filter '!{docs}' -r build && cd docs/ && vitepress build",
    "preview": "cd ../ && pnpm run --filter '!{docs}' -r build && cd docs/ && vitepress preview"
    "dev": "cd ../ && pnpm run --filter '!{docs}' --filter='!./examples/**' -r build && cd docs/ && vitepress dev --host",
    "build": "cd ../ && pnpm run --filter '!{docs}' --filter '!./examples/**' -r build && cd docs/ && vitepress build",
    "preview": "cd ../ && pnpm run --filter '!{docs}' --filter '!./examples/**' -r build && cd docs/ && vitepress preview"
  }
}