@fluidframework/fluid-runner 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 +14 -14
- package/.eslintrc.cjs +0 -47
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 { minimalDeprecated } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/fluid-runner",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.81.0",
|
|
4
4
|
"description": "Utility for running various functionality inside a Fluid Framework environment",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -71,26 +71,26 @@
|
|
|
71
71
|
"temp-directory": "nyc/.nyc_output"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@fluidframework/aqueduct": "~2.
|
|
75
|
-
"@fluidframework/container-definitions": "~2.
|
|
76
|
-
"@fluidframework/container-loader": "~2.
|
|
77
|
-
"@fluidframework/core-interfaces": "~2.
|
|
78
|
-
"@fluidframework/driver-definitions": "~2.
|
|
79
|
-
"@fluidframework/odsp-driver": "~2.
|
|
80
|
-
"@fluidframework/odsp-driver-definitions": "~2.
|
|
81
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
74
|
+
"@fluidframework/aqueduct": "~2.81.0",
|
|
75
|
+
"@fluidframework/container-definitions": "~2.81.0",
|
|
76
|
+
"@fluidframework/container-loader": "~2.81.0",
|
|
77
|
+
"@fluidframework/core-interfaces": "~2.81.0",
|
|
78
|
+
"@fluidframework/driver-definitions": "~2.81.0",
|
|
79
|
+
"@fluidframework/odsp-driver": "~2.81.0",
|
|
80
|
+
"@fluidframework/odsp-driver-definitions": "~2.81.0",
|
|
81
|
+
"@fluidframework/telemetry-utils": "~2.81.0",
|
|
82
82
|
"@json2csv/plainjs": "^7.0.6",
|
|
83
83
|
"yargs": "17.7.2"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
87
87
|
"@biomejs/biome": "~1.9.3",
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
89
|
-
"@fluid-tools/build-cli": "^0.
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "~2.81.0",
|
|
89
|
+
"@fluid-tools/build-cli": "^0.63.0",
|
|
90
90
|
"@fluidframework/build-common": "^2.0.3",
|
|
91
|
-
"@fluidframework/build-tools": "^0.
|
|
92
|
-
"@fluidframework/eslint-config-fluid": "~2.
|
|
93
|
-
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.
|
|
91
|
+
"@fluidframework/build-tools": "^0.63.0",
|
|
92
|
+
"@fluidframework/eslint-config-fluid": "~2.81.0",
|
|
93
|
+
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.80.0",
|
|
94
94
|
"@microsoft/api-extractor": "7.52.11",
|
|
95
95
|
"@types/mocha": "^10.0.10",
|
|
96
96
|
"@types/node": "^18.19.0",
|
package/.eslintrc.cjs
DELETED
|
@@ -1,47 +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: [
|
|
8
|
-
require.resolve("@fluidframework/eslint-config-fluid/minimal-deprecated"),
|
|
9
|
-
"prettier",
|
|
10
|
-
],
|
|
11
|
-
parserOptions: {
|
|
12
|
-
project: [
|
|
13
|
-
"./tsconfig.json",
|
|
14
|
-
"./tsconfig.bin.lint.json",
|
|
15
|
-
"./src/test/tsconfig.json",
|
|
16
|
-
"./src/test/tsconfig.cjs.lint.json",
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
rules: {
|
|
20
|
-
"@typescript-eslint/no-non-null-assertion": "off",
|
|
21
|
-
"@typescript-eslint/no-use-before-define": "off",
|
|
22
|
-
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
23
|
-
"import-x/no-nodejs-modules": "off",
|
|
24
|
-
"unicorn/filename-case": [
|
|
25
|
-
"error",
|
|
26
|
-
{
|
|
27
|
-
cases: {
|
|
28
|
-
camelCase: true,
|
|
29
|
-
pascalCase: true,
|
|
30
|
-
},
|
|
31
|
-
ignore: ["fluid-runner", "sample-executable"],
|
|
32
|
-
},
|
|
33
|
-
],
|
|
34
|
-
|
|
35
|
-
// #region TODO: remove these once this config has been updated to use our "recommended" base instead of our deprecated minimal one.
|
|
36
|
-
"@typescript-eslint/consistent-type-exports": [
|
|
37
|
-
"error",
|
|
38
|
-
{ fixMixedExportsWithInlineTypeSpecifier: true },
|
|
39
|
-
],
|
|
40
|
-
"@typescript-eslint/consistent-type-imports": [
|
|
41
|
-
"error",
|
|
42
|
-
{ fixStyle: "inline-type-imports" },
|
|
43
|
-
],
|
|
44
|
-
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
45
|
-
// #endregion
|
|
46
|
-
},
|
|
47
|
-
};
|