Skip to content

Commit

Permalink
update to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
goodroot committed Jan 7, 2025
1 parent 182a41f commit 8d42b74
Show file tree
Hide file tree
Showing 3 changed files with 541 additions and 673 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ FROM --platform=linux/amd64 node:18-slim
WORKDIR /app

# Copy package.json and yarn.lock
COPY package.json yarn.lock ./
COPY package.json ./

# Install dependencies
RUN yarn install
# Generate yarn.lock with updated dependencies
RUN yarn install --mode=update-lockfile

# Copy the rest of the application
# Copy the generated yarn.lock back to host
COPY . .

# Install dependencies
RUN yarn install

# Expose port 3001 (documentation server port)
EXPOSE 3001

Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"swizzle": "docusaurus swizzle"
},
"dependencies": {
"@docusaurus/faster": "^3.6.3",
"@docusaurus/theme-mermaid": "^3.6.3",
"@docusaurus/theme-search-algolia": "^3.6.3",
"@docusaurus/faster": "^3.7.0",
"@docusaurus/theme-mermaid": "^3.7.0",
"@docusaurus/theme-search-algolia": "^3.7.0",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "2.2.0",
"@mdx-js/react": "3.1.0",
Expand All @@ -28,9 +28,9 @@
"framer-motion": "^10.18.0",
"gray-matter": "4.0.3",
"prism-react-renderer": "2.4.0",
"react": "18.3.1",
"react": "^19.0.0",
"react-calendly": "4.3.1",
"react-dom": "18.3.1",
"react-dom": "^19.0.0",
"react-markdown": "9.0.1",
"react-remark": "2.1.0",
"react-tippy": "1.4.0",
Expand All @@ -42,12 +42,12 @@
"unist-util-visit": "5.0.0"
},
"devDependencies": {
"@docusaurus/core": "^3.6.3",
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/plugin-pwa": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@docusaurus/tsconfig": "^3.6.3",
"@docusaurus/types": "^3.6.3",
"@docusaurus/core": "^3.7.0",
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/plugin-pwa": "^3.7.0",
"@docusaurus/preset-classic": "^3.7.0",
"@docusaurus/tsconfig": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"@types/react": "18.3.12",
"@types/react-helmet": "6.1.11",
"@types/react-router-config": "5.0.11",
Expand Down Expand Up @@ -110,4 +110,4 @@
]
},
"resolutions": {}
}
}
Loading

0 comments on commit 8d42b74

Please sign in to comment.