Skip to content

Commit 8edfffc

Browse files
committed
Release vintasend-medplum@0.11.0
1 parent 30e3a21 commit 8edfffc

17 files changed

Lines changed: 5799 additions & 5630 deletions

.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-
"ignore": []
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: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
{
22
"name": "vintasend-medplum",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "",
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",
11-
"test:coverage": "vitest run --coverage",
12-
"compile-templates": "ts-node src/scripts/compile-pug-templates.ts"
14+
"test:coverage": "vitest run --coverage"
1315
},
1416
"files": [
1517
"dist"
@@ -21,15 +23,17 @@
2123
"@medplum/fhirtypes": "^5.1.1",
2224
"pdfmake": "^0.2.5",
2325
"pug": "^3.0.3",
24-
"vintasend": "^0.10.0"
26+
"vintasend": "^0.11.0"
2527
},
2628
"devDependencies": {
29+
"@biomejs/biome": "^2.4.5",
2730
"@medplum/definitions": "^5.1.1",
2831
"@medplum/mock": "^5.1.1",
2932
"@types/node": "^22.0.0",
3033
"@types/pdfmake": "^0.2.12",
3134
"@types/pug": "^2.0.10",
3235
"@vitest/coverage-v8": "4.0.18",
36+
"husky": "^9.1.7",
3337
"ts-node": "^10.9.2",
3438
"typescript": "^5.9.3",
3539
"vitest": "4.0.18",

0 commit comments

Comments
 (0)