Skip to content

Commit

Permalink
Merge pull request #34 from this-is-tobi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
this-is-tobi authored Dec 12, 2024
2 parents 1cb80bd + 42a4616 commit 9e54f33
Show file tree
Hide file tree
Showing 11 changed files with 702 additions and 363 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
workflow_dispatch:

env:
NODE_VERSION: 22.11.0
PNPM_VERSION: 9.12.3
NODE_VERSION: 22.12.0
PNPM_VERSION: 9.15.0
REGISTRY_NAMESPACE: ghcr.io/${{ github.repository }}
MULTI_ARCH: true
USE_QEMU: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
workflow_dispatch:

env:
NODE_VERSION: 22.11.0
PNPM_VERSION: 9.12.3
NODE_VERSION: 22.12.0
PNPM_VERSION: 9.15.0
NPM_VERSION: latest
BUN_VERSION: latest
REGISTRY_NAMESPACE: ghcr.io/${{ github.repository_owner }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ on:
description: Node version used to run lint
required: true
type: string
default: 22.11.0
default: 22.12.0
PNPM_VERSION:
description: Pnpm version used to run lint
required: true
type: string
default: 9.12.3
default: 9.15.0

jobs:
lint:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ on:
description: Nodejs version used
required: true
type: string
default: 22.11.0
default: 22.12.0
PNPM_VERSION:
description: Pnpm version used
required: true
type: string
default: 9.12.3
default: 9.15.0
PUBLISH_PACKAGES:
description: Publish packages modules
required: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ on:
description: Nodejs version used to run tests
required: true
type: string
default: 22.11.0
default: 22.12.0
PNPM_VERSION:
description: Pnpm version used to run tests
required: true
type: string
default: 9.12.3
default: 9.15.0
BUN_VERSION:
description: Bun version used to run tests
required: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
description: Pnpm version used to run tests
required: true
type: string
default: 9.12.3
default: 9.15.0
DOCKER_IMAGE:
description: Docker image used for tests
required: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ on:
description: Nodejs version used to run tests
required: true
type: string
default: 22.11.0
default: 22.12.0
PNPM_VERSION:
description: Pnpm version used to run tests
required: true
type: string
default: 9.12.3
default: 9.15.0

jobs:
unit-tests:
Expand Down
4 changes: 2 additions & 2 deletions .prototools
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
node = "22.11.0"
pnpm = "9.12.3"
node = "22.12.0"
pnpm = "9.15.0"
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG NODE_IMAGE=docker.io/node:22.11.0-slim
ARG NODE_IMAGE=docker.io/node:22.12.0-slim

# Base stage
FROM ${NODE_IMAGE} AS base

ARG PNPM_VERSION=9.12.3
ARG PNPM_VERSION=9.15.0
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
WORKDIR /app
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@tobi-or-not/docpress",
"type": "module",
"version": "0.3.2",
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.15.0",
"module": "dist/docpress.js",
"types": "types/index.d.ts",
"bin": {
Expand Down Expand Up @@ -40,31 +40,31 @@
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"axios": "^1.7.7",
"axios": "^1.7.9",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"octokit": "^4.0.2",
"rimraf": "^6.0.1",
"simple-git": "^3.27.0",
"vitepress": "^1.5.0",
"yaml": "^2.6.1",
"zod": "^3.23.8",
"zod": "^3.24.1",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@antfu/eslint-config": "^3.11.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@octokit/types": "^13.6.1",
"@types/node": "^22.9.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"@octokit/types": "^13.6.2",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-node": "^2.1.5",
"vitest": "^2.1.5"
"lint-staged": "^15.2.11",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-node": "^2.1.8",
"vitest": "^2.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
Expand Down
Loading

0 comments on commit 9e54f33

Please sign in to comment.