Skip to content

Commit

Permalink
feat: download remote content
Browse files Browse the repository at this point in the history
  • Loading branch information
guesant committed Aug 24, 2024
1 parent 1be0358 commit 6924eee
Show file tree
Hide file tree
Showing 7 changed files with 474 additions and 5 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ FROM node:22 AS base

ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"

RUN corepack enable

WORKDIR /app
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vitepress dev --strictPort --port 4321",
"build": "vitepress build",
"download-remote": "tsx scripts/download-remote",
"dev": "pnpm run download-remote && vitepress dev --strictPort --port 4321",
"build": "pnpm run download-remote && vitepress build",
"preview": "vitepress preview --port 4321"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"fs-jetpack": "^5.1.0",
"lucide-vue-next": "^0.418.0",
"p-queue": "^8.0.1",
"p-retry": "^6.2.0",
"postcss": "^8.4.40",
"tailwindcss": "^3.4.7",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"vitepress": "^1.3.1",
"vitepress-plugin-tabs": "^0.5.0",
Expand Down
Loading

0 comments on commit 6924eee

Please sign in to comment.