diff --git a/.woodpecker/.build.yml b/.woodpecker/.build.yml index 5f30941..13f0b04 100644 --- a/.woodpecker/.build.yml +++ b/.woodpecker/.build.yml @@ -3,7 +3,7 @@ when: steps: build: - image: oven/bun:1.1.3-slim + image: oven/bun:1.1.10-slim commands: - bun install - bun run build \ No newline at end of file diff --git a/.woodpecker/.lint.yml b/.woodpecker/.lint.yml index 8005326..e01f35e 100644 --- a/.woodpecker/.lint.yml +++ b/.woodpecker/.lint.yml @@ -3,7 +3,7 @@ when: steps: lint: - image: oven/bun:1.1.3-slim + image: oven/bun:1.1.10-slim commands: - bun install - bun run ci diff --git a/.woodpecker/.test.yml b/.woodpecker/.test.yml index 4f52a10..58e396d 100644 --- a/.woodpecker/.test.yml +++ b/.woodpecker/.test.yml @@ -12,10 +12,9 @@ steps: matrix: BUN_VERSION: - - 1.1.0 - - 1.1.1 - - 1.1.2 - - 1.1.3 + - 1.1.8 + - 1.1.9 + - 1.1.10 services: nats: diff --git a/biome.json b/biome.json index f08699f..3988c9a 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/1.6.3/schema.json", + "$schema": "https://biomejs.dev/schemas/1.7.3/schema.json", "organizeImports": { "enabled": true }, diff --git a/bun.lockb b/bun.lockb index 79ba9a0..993be6b 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 02f1668..47bdfb5 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,26 @@ { - "name": "@qpismont/nano-service", - "version": "0.0.3", - "module": "index.ts", - "type": "module", - "main": "./dist/index.js", - "types": "./dist/index.d.ts", - "files": ["/dist"], - "scripts": { - "ci": "biome ci . --error-on-warnings", - "test": "bun test", - "build": "tsc --project tsconfig.build.json" - }, - "devDependencies": { - "@biomejs/biome": "1.6.4", - "@types/bun": "latest", - "typescript": "^5.0.0" - }, - "peerDependencies": { - "typescript": "^5.0.0" - }, - "dependencies": { - "nats": "^2.22.0", - "zod": "^3.22.4" - } + "name": "@qpismont/nano-service", + "version": "0.0.3", + "module": "index.ts", + "type": "module", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", + "files": ["/dist"], + "scripts": { + "ci": "biome ci . --error-on-warnings", + "test": "bun test", + "build": "tsc --project tsconfig.build.json" + }, + "devDependencies": { + "@biomejs/biome": "1.7.3", + "@types/bun": "latest", + "typescript": "^5.0.0" + }, + "peerDependencies": { + "typescript": "^5.0.0" + }, + "dependencies": { + "nats": "^2.26.0", + "zod": "^3.23.8" + } }