upgrade to bun 1.1.10 + deps #8

Merged
qpismont merged 2 commits from upgrade-bun1-1-10 into main 2024-05-27 20:01:48 +02:00
6 changed files with 30 additions and 31 deletions
Showing only changes of commit 2a6fa5195a - Show all commits

View file

@ -3,7 +3,7 @@ when:
steps: steps:
build: build:
image: oven/bun:1.1.3-slim image: oven/bun:1.1.10-slim
commands: commands:
- bun install - bun install
- bun run build - bun run build

View file

@ -3,7 +3,7 @@ when:
steps: steps:
lint: lint:
image: oven/bun:1.1.3-slim image: oven/bun:1.1.10-slim
commands: commands:
- bun install - bun install
- bun run ci - bun run ci

View file

@ -12,10 +12,9 @@ steps:
matrix: matrix:
BUN_VERSION: BUN_VERSION:
- 1.1.0 - 1.1.8
- 1.1.1 - 1.1.9
- 1.1.2 - 1.1.10
- 1.1.3
services: services:
nats: nats:

View file

@ -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": { "organizeImports": {
"enabled": true "enabled": true
}, },

BIN
bun.lockb

Binary file not shown.

View file

@ -1,26 +1,26 @@
{ {
"name": "@qpismont/nano-service", "name": "@qpismont/nano-service",
"version": "0.0.3", "version": "0.0.3",
"module": "index.ts", "module": "index.ts",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"files": ["/dist"], "files": ["/dist"],
"scripts": { "scripts": {
"ci": "biome ci . --error-on-warnings", "ci": "biome ci . --error-on-warnings",
"test": "bun test", "test": "bun test",
"build": "tsc --project tsconfig.build.json" "build": "tsc --project tsconfig.build.json"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "1.6.4", "@biomejs/biome": "1.7.3",
"@types/bun": "latest", "@types/bun": "latest",
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"typescript": "^5.0.0" "typescript": "^5.0.0"
}, },
"dependencies": { "dependencies": {
"nats": "^2.22.0", "nats": "^2.26.0",
"zod": "^3.22.4" "zod": "^3.23.8"
} }
} }