@fluidframework/core-interfaces 2.80.0 → 2.81.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.81.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.80.0
4
8
 
5
9
  ### Minor Changes
package/eslint.config.mts CHANGED
@@ -1,8 +1,8 @@
1
- /* eslint-disable */
2
- /**
3
- * GENERATED FILE - DO NOT EDIT DIRECTLY.
4
- * To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
5
4
  */
5
+
6
6
  import type { Linter } from "eslint";
7
7
  import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/core-interfaces",
3
- "version": "2.80.0",
3
+ "version": "2.81.0",
4
4
  "description": "Fluid object interfaces",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -83,11 +83,11 @@
83
83
  "devDependencies": {
84
84
  "@arethetypeswrong/cli": "^0.18.2",
85
85
  "@biomejs/biome": "~1.9.3",
86
- "@fluid-tools/build-cli": "^0.62.0",
86
+ "@fluid-tools/build-cli": "^0.63.0",
87
87
  "@fluidframework/build-common": "^2.0.3",
88
- "@fluidframework/build-tools": "^0.62.0",
89
- "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.74.0",
90
- "@fluidframework/eslint-config-fluid": "~2.80.0",
88
+ "@fluidframework/build-tools": "^0.63.0",
89
+ "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.80.0",
90
+ "@fluidframework/eslint-config-fluid": "~2.81.0",
91
91
  "@microsoft/api-extractor": "7.52.11",
92
92
  "@types/mocha": "^10.0.10",
93
93
  "@types/node": "^18.19.0",
@@ -110,11 +110,7 @@
110
110
  }
111
111
  },
112
112
  "typeValidation": {
113
- "broken": {
114
- "TypeAlias_FluidErrorTypes": {
115
- "backCompat": false
116
- }
117
- },
113
+ "broken": {},
118
114
  "entrypoint": "legacy"
119
115
  },
120
116
  "scripts": {
package/.eslintrc.cjs DELETED
@@ -1,33 +0,0 @@
1
- /*!
2
- * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
- * Licensed under the MIT License.
4
- */
5
-
6
- module.exports = {
7
- extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
8
- parserOptions: {
9
- project: [
10
- "./tsconfig.json",
11
- "./src/test/tsconfig.json",
12
- "./src/test/tsconfig.no-exactOptionalPropertyTypes.json",
13
- ],
14
- },
15
- rules: {
16
- // TODO: Enabling this may require breaking changes.
17
- "@typescript-eslint/consistent-indexed-object-style": "off",
18
- },
19
- overrides: [
20
- {
21
- // Rules only for test files
22
- files: ["*.spec.ts", "src/test/**"],
23
- rules: {
24
- "import-x/no-internal-modules": [
25
- "error",
26
- {
27
- "allow": ["@fluidframework/*/internal{,/**}"],
28
- },
29
- ],
30
- },
31
- },
32
- ],
33
- };