Skip to content

Commit be1c83e

Browse files
committed
Release vintasend-aws-s3-attachments@0.11.0
1 parent 3eb67d2 commit be1c83e

7 files changed

Lines changed: 808 additions & 789 deletions

File tree

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run lint && npm run format

biome.json

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
33
"vcs": {
44
"enabled": false,
55
"clientKind": "git",
66
"useIgnoreFile": false
77
},
88
"files": {
99
"ignoreUnknown": false,
10-
"include": ["src/**/*.{ts,tsx}", "!dist", "!node_modules"]
10+
"includes": ["src/**/*.{ts,tsx}", "!dist", "!node_modules"]
1111
},
1212
"formatter": {
1313
"enabled": true,
1414
"indentStyle": "space",
1515
"indentWidth": 2,
1616
"lineWidth": 100
1717
},
18-
"organizeImports": {
19-
"enabled": true
18+
"assist": {
19+
"actions": {
20+
"source": {
21+
"organizeImports": "on"
22+
}
23+
}
2024
},
2125
"linter": {
2226
"enabled": true,
@@ -30,5 +34,22 @@
3034
"semicolons": "always",
3135
"trailingCommas": "all"
3236
}
33-
}
37+
},
38+
"overrides": [
39+
{
40+
"includes": [
41+
"**/*.test.ts",
42+
"**/*.test.tsx",
43+
"**/__tests__/**/*.ts",
44+
"**/__tests__/**/*.tsx"
45+
],
46+
"linter": {
47+
"rules": {
48+
"suspicious": {
49+
"noExplicitAny": "off"
50+
}
51+
}
52+
}
53+
}
54+
]
3455
}

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "vintasend-aws-s3-attachments",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "Implementation of AWS S3 Attachments for VintaSend",
55
"main": "dist/index.js",
66
"scripts": {
77
"build": "tsc",
88
"prepublishOnly": "npm run build",
9+
"prepare": "husky",
10+
"lint": "biome check .",
11+
"format": "biome check --write .",
912
"test": "vitest run",
1013
"test:watch": "vitest",
1114
"test:coverage": "vitest run --coverage"
@@ -18,10 +21,12 @@
1821
"dependencies": {
1922
"@aws-sdk/client-s3": "^3.1000.0",
2023
"@aws-sdk/s3-request-presigner": "^3.1000.0",
21-
"vintasend": "^0.10.0"
24+
"vintasend": "^0.11.0"
2225
},
2326
"devDependencies": {
27+
"@biomejs/biome": "^2.4.5",
2428
"@vitest/coverage-v8": "^4.0.18",
29+
"husky": "^9.1.7",
2530
"typescript": "^5.9.3",
2631
"vitest": "^4.0.18"
2732
}

0 commit comments

Comments
 (0)