@fluidframework/tree-agent-ses 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 +4 -0
- package/eslint.config.mts +4 -4
- package/package.json +7 -7
- package/.eslintrc.cjs +0 -54
package/CHANGELOG.md
CHANGED
package/eslint.config.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*
|
|
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/tree-agent-ses",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.81.0",
|
|
4
4
|
"description": "SES integration helpers for @fluidframework/tree-agent",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,18 +69,18 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/tree-agent": "~2.
|
|
72
|
+
"@fluidframework/tree-agent": "~2.81.0",
|
|
73
73
|
"ses": "^1.14.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
77
77
|
"@biomejs/biome": "~1.9.3",
|
|
78
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
79
|
-
"@fluid-tools/build-cli": "^0.
|
|
78
|
+
"@fluid-internal/mocha-test-setup": "~2.81.0",
|
|
79
|
+
"@fluid-tools/build-cli": "^0.63.0",
|
|
80
80
|
"@fluidframework/build-common": "^2.0.3",
|
|
81
|
-
"@fluidframework/build-tools": "^0.
|
|
82
|
-
"@fluidframework/eslint-config-fluid": "~2.
|
|
83
|
-
"@fluidframework/tree": "~2.
|
|
81
|
+
"@fluidframework/build-tools": "^0.63.0",
|
|
82
|
+
"@fluidframework/eslint-config-fluid": "~2.81.0",
|
|
83
|
+
"@fluidframework/tree": "~2.81.0",
|
|
84
84
|
"@microsoft/api-extractor": "7.52.11",
|
|
85
85
|
"@types/mocha": "^10.0.10",
|
|
86
86
|
"@types/node": "^18.19.0",
|
package/.eslintrc.cjs
DELETED
|
@@ -1,54 +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"],
|
|
10
|
-
},
|
|
11
|
-
rules: {
|
|
12
|
-
// Allow reaching into FluidFramework package paths that end with alpha, beta, legacy, or internal
|
|
13
|
-
"import-x/no-internal-modules": [
|
|
14
|
-
"error",
|
|
15
|
-
{
|
|
16
|
-
allow: [
|
|
17
|
-
"@fluidframework/*/alpha",
|
|
18
|
-
"@fluidframework/*/beta",
|
|
19
|
-
"@fluidframework/*/legacy",
|
|
20
|
-
"@fluidframework/*/internal",
|
|
21
|
-
],
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
},
|
|
25
|
-
overrides: [
|
|
26
|
-
{
|
|
27
|
-
files: ["src/test/**/*"],
|
|
28
|
-
parserOptions: {
|
|
29
|
-
project: ["./src/test/tsconfig.json"],
|
|
30
|
-
},
|
|
31
|
-
rules: {
|
|
32
|
-
"import-x/no-internal-modules": [
|
|
33
|
-
"error",
|
|
34
|
-
{
|
|
35
|
-
allow: [
|
|
36
|
-
"*/index.js",
|
|
37
|
-
"@fluidframework/*/alpha",
|
|
38
|
-
"@fluidframework/*/beta",
|
|
39
|
-
"@fluidframework/*/legacy",
|
|
40
|
-
"@fluidframework/*/internal",
|
|
41
|
-
],
|
|
42
|
-
},
|
|
43
|
-
],
|
|
44
|
-
"import-x/no-unresolved": "off",
|
|
45
|
-
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
46
|
-
"@typescript-eslint/no-unsafe-call": "off",
|
|
47
|
-
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
48
|
-
"@typescript-eslint/no-unsafe-return": "off",
|
|
49
|
-
"@typescript-eslint/no-unsafe-argument": "off",
|
|
50
|
-
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
51
|
-
},
|
|
52
|
-
},
|
|
53
|
-
],
|
|
54
|
-
};
|