@fluidframework/devtools 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 +10 -10
- package/.eslintrc.cjs +0 -28
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/devtools",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.81.0",
|
|
4
4
|
"description": "Fluid Framework developer tools",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -77,20 +77,20 @@
|
|
|
77
77
|
"temp-directory": "nyc/.nyc_output"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@fluidframework/container-definitions": "~2.
|
|
81
|
-
"@fluidframework/core-interfaces": "~2.
|
|
82
|
-
"@fluidframework/devtools-core": "~2.
|
|
83
|
-
"@fluidframework/fluid-static": "~2.
|
|
80
|
+
"@fluidframework/container-definitions": "~2.81.0",
|
|
81
|
+
"@fluidframework/core-interfaces": "~2.81.0",
|
|
82
|
+
"@fluidframework/devtools-core": "~2.81.0",
|
|
83
|
+
"@fluidframework/fluid-static": "~2.81.0"
|
|
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/devtools-previous": "npm:@fluidframework/devtools@2.
|
|
93
|
-
"@fluidframework/eslint-config-fluid": "~2.
|
|
91
|
+
"@fluidframework/build-tools": "^0.63.0",
|
|
92
|
+
"@fluidframework/devtools-previous": "npm:@fluidframework/devtools@2.80.0",
|
|
93
|
+
"@fluidframework/eslint-config-fluid": "~2.81.0",
|
|
94
94
|
"@microsoft/api-extractor": "7.52.11",
|
|
95
95
|
"@types/mocha": "^10.0.10",
|
|
96
96
|
"c8": "^10.1.3",
|
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"],
|
|
10
|
-
},
|
|
11
|
-
rules: {
|
|
12
|
-
// Disabled because they conflict with Prettier.
|
|
13
|
-
"unicorn/no-nested-ternary": "off",
|
|
14
|
-
|
|
15
|
-
// Disabled because it is incompatible with API-Extractor.
|
|
16
|
-
"@typescript-eslint/no-namespace": "off",
|
|
17
|
-
},
|
|
18
|
-
overrides: [
|
|
19
|
-
{
|
|
20
|
-
// Overrides for test files
|
|
21
|
-
files: ["*.spec.ts", "*.test.ts", "src/test/**"],
|
|
22
|
-
rules: {
|
|
23
|
-
"import-x/no-nodejs-modules": "off",
|
|
24
|
-
"unicorn/prefer-module": "off",
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
],
|
|
28
|
-
};
|