@fgv/ts-http-storage 5.1.0-27 → 5.1.0-29

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.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.57.7"
8
+ "packageVersion": "7.58.7"
9
9
  }
10
10
  ]
11
11
  }
@@ -0,0 +1,16 @@
1
+ // ESLint 9 flat config
2
+ const nodeProfile = require('@rushstack/eslint-config/flat/profile/node');
3
+ const packletsPlugin = require('@rushstack/eslint-config/flat/mixins/packlets');
4
+ const tsdocPlugin = require('@rushstack/eslint-config/flat/mixins/tsdoc');
5
+
6
+ module.exports = [
7
+ ...nodeProfile,
8
+ packletsPlugin,
9
+ ...tsdocPlugin,
10
+ {
11
+ // Override specific rules if needed
12
+ rules: {
13
+ '@rushstack/packlets/mechanics': 'warn'
14
+ }
15
+ }
16
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fgv/ts-http-storage",
3
- "version": "5.1.0-27",
3
+ "version": "5.1.0-29",
4
4
  "description": "Reusable HTTP storage services for FileTree-style backends",
5
5
  "main": "lib/index.js",
6
6
  "types": "dist/ts-http-storage.d.ts",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "hono": "~4.7.11",
29
- "@fgv/ts-utils": "5.1.0-27"
29
+ "@fgv/ts-utils": "5.1.0-29"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@microsoft/api-documenter": "^7.28.2",
@@ -47,9 +47,9 @@
47
47
  "typedoc": "~0.28.16",
48
48
  "typedoc-plugin-markdown": "~4.9.0",
49
49
  "@rushstack/heft-jest-plugin": "1.2.6",
50
- "@fgv/ts-utils-jest": "5.1.0-27",
51
- "@fgv/heft-dual-rig": "5.1.0-27",
52
- "@fgv/typedoc-compact-theme": "5.1.0-27"
50
+ "@fgv/ts-utils-jest": "5.1.0-29",
51
+ "@fgv/heft-dual-rig": "5.1.0-29",
52
+ "@fgv/typedoc-compact-theme": "5.1.0-29"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "heft build --clean",