@fluidframework/core-interfaces 2.81.1 → 2.82.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/core-interfaces
2
2
 
3
+ ## 2.82.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.81.0
4
8
 
5
9
  Dependency updates only.
package/eslint.config.mts CHANGED
@@ -25,6 +25,10 @@ const config: Linter.Config[] = [
25
25
  },
26
26
  },
27
27
  {
28
+ // Override @typescript-eslint/parser to use explicit project list instead of projectService.
29
+ // This package has a special tsconfig (tsconfig.no-exactOptionalPropertyTypes.json) for
30
+ // testing exactOptionalPropertyTypes=false. That file is excluded from the main test
31
+ // tsconfig, so typescript-eslint's projectService can't discover it automatically.
28
32
  files: ["**/*.ts", "**/*.tsx", "**/*.mts", "**/*.cts"],
29
33
  languageOptions: {
30
34
  parserOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-interfaces",
3
- "version": "2.81.1",
3
+ "version": "2.82.0",
4
4
  "description": "Fluid object interfaces",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -87,10 +87,10 @@
87
87
  "@fluidframework/build-common": "^2.0.3",
88
88
  "@fluidframework/build-tools": "^0.63.0",
89
89
  "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.81.0",
90
- "@fluidframework/eslint-config-fluid": "~2.81.1",
90
+ "@fluidframework/eslint-config-fluid": "~2.82.0",
91
91
  "@microsoft/api-extractor": "7.52.11",
92
92
  "@types/mocha": "^10.0.10",
93
- "@types/node": "^18.19.0",
93
+ "@types/node": "~20.19.30",
94
94
  "c8": "^10.1.3",
95
95
  "concurrently": "^9.2.1",
96
96
  "copyfiles": "^2.4.1",
@@ -145,7 +145,7 @@
145
145
  "ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
146
146
  "ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
147
147
  "ci:build:docs": "api-extractor run",
148
- "clean": "rimraf --glob dist lib {alpha,beta,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
148
+ "clean": "rimraf --glob dist lib {alpha,beta,legacy}.d.ts legacy \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
149
149
  "eslint": "eslint --quiet --format stylish src",
150
150
  "eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
151
151
  "format": "npm run format:biome",
package/biome.jsonc DELETED
@@ -1,4 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3
- "extends": ["../../../biome.jsonc"]
4
- }