@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 +4 -0
- package/eslint.config.mts +4 -0
- package/package.json +4 -4
- package/biome.jsonc +0 -4
package/CHANGELOG.md
CHANGED
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.
|
|
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.
|
|
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": "
|
|
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