@fluidframework/container-definitions 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/container-definitions
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/container-definitions",
3
- "version": "2.80.0",
3
+ "version": "2.81.0",
4
4
  "description": "Fluid container definitions",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -47,17 +47,17 @@
47
47
  "main": "lib/index.js",
48
48
  "types": "lib/public.d.ts",
49
49
  "dependencies": {
50
- "@fluidframework/core-interfaces": "~2.80.0",
51
- "@fluidframework/driver-definitions": "~2.80.0"
50
+ "@fluidframework/core-interfaces": "~2.81.0",
51
+ "@fluidframework/driver-definitions": "~2.81.0"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@arethetypeswrong/cli": "^0.18.2",
55
55
  "@biomejs/biome": "~1.9.3",
56
- "@fluid-tools/build-cli": "^0.62.0",
56
+ "@fluid-tools/build-cli": "^0.63.0",
57
57
  "@fluidframework/build-common": "^2.0.3",
58
- "@fluidframework/build-tools": "^0.62.0",
59
- "@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.74.0",
60
- "@fluidframework/eslint-config-fluid": "~2.80.0",
58
+ "@fluidframework/build-tools": "^0.63.0",
59
+ "@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.80.0",
60
+ "@fluidframework/eslint-config-fluid": "~2.81.0",
61
61
  "@microsoft/api-extractor": "7.52.11",
62
62
  "concurrently": "^9.2.1",
63
63
  "copyfiles": "^2.4.1",
@@ -67,11 +67,7 @@
67
67
  "typescript": "~5.4.5"
68
68
  },
69
69
  "typeValidation": {
70
- "broken": {
71
- "TypeAlias_ContainerErrorTypes": {
72
- "backCompat": false
73
- }
74
- },
70
+ "broken": {},
75
71
  "entrypoint": "legacy"
76
72
  },
77
73
  "scripts": {
package/.eslintrc.cjs DELETED
@@ -1,28 +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: ["./tsconfig.json", "./src/test/tsconfig.json"],
10
- },
11
- rules: {
12
- // TODO: Enabling this may require breaking changes.
13
- "@typescript-eslint/consistent-indexed-object-style": "off",
14
-
15
- // Disabled because the rule is crashing on this package - AB#51780
16
- "@typescript-eslint/unbound-method": "off",
17
- },
18
- overrides: [
19
- {
20
- // Rules only for test files
21
- files: ["*.spec.ts", "src/test/**"],
22
- rules: {
23
- // Test files are run in node only so additional node libraries can be used.
24
- "import-x/no-nodejs-modules": ["error", { allow: ["assert"] }],
25
- },
26
- },
27
- ],
28
- };