@mkvlrn/config 3.0.4 → 3.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Mike Valeriano <mkvlrn@gmail.com>
3
+ Copyright (c) 2026 Mike Valeriano <mkvlrn@gmail.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@mkvlrn/config",
3
3
  "description": "Opinionated configurations for biome and typescript",
4
- "version": "3.0.4",
4
+ "version": "3.0.6",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
- "author": "Mike Valeriano <mkvlrn@proton.me>",
7
+ "author": "Mike Valeriano <mkvlrn@gmail.com>",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git@github.com:mkvlrn/tools"
@@ -16,7 +16,7 @@
16
16
  "tsconfig"
17
17
  ],
18
18
  "engines": {
19
- "node": "22.x"
19
+ "node": "24"
20
20
  },
21
21
  "files": [
22
22
  "src"
package/src/biome.jsonc CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
2
+ "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
3
3
  "root": false,
4
4
  "assist": {
5
5
  "actions": {
@@ -17,6 +17,11 @@
17
17
  "unsafeParameterDecoratorsEnabled": true
18
18
  }
19
19
  },
20
+ "css": {
21
+ "parser": {
22
+ "tailwindDirectives": true
23
+ }
24
+ },
20
25
  "formatter": {
21
26
  "enabled": true,
22
27
  "formatWithErrors": true,
@@ -56,8 +61,12 @@
56
61
  "useLiteralKeys": "off"
57
62
  },
58
63
  "correctness": {
59
- // bundler mode for imports, no need for extensions
64
+ // path alias already uses ts extensions
60
65
  "useImportExtensions": "off"
66
+ },
67
+ "style": {
68
+ // this is a silly rule
69
+ "useExportsLast": "off"
61
70
  }
62
71
  }
63
72
  }