@fluidframework/undo-redo 2.74.0-370705 → 2.80.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 +8 -0
- package/eslint.config.mts +49 -0
- package/package.json +18 -17
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/**
|
|
3
|
+
* GENERATED FILE - DO NOT EDIT DIRECTLY.
|
|
4
|
+
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
|
|
5
|
+
*/
|
|
6
|
+
import type { Linter } from "eslint";
|
|
7
|
+
import { recommended } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
|
+
|
|
9
|
+
const config: Linter.Config[] = [
|
|
10
|
+
...recommended,
|
|
11
|
+
{
|
|
12
|
+
rules: {
|
|
13
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
14
|
+
"no-case-declarations": "off",
|
|
15
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
16
|
+
"error",
|
|
17
|
+
{
|
|
18
|
+
"fixStyle": "inline-type-imports",
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
files: ["**/*.{ts,tsx}"],
|
|
26
|
+
ignores: ["**/src/test/**", "**/tests/**", "**/*.spec.ts", "**/*.test.ts"],
|
|
27
|
+
rules: {
|
|
28
|
+
"@typescript-eslint/consistent-type-exports": [
|
|
29
|
+
"error",
|
|
30
|
+
{
|
|
31
|
+
"fixMixedExportsWithInlineTypeSpecifier": true,
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
files: ["*.spec.ts", "src/test/**"],
|
|
38
|
+
rules: {
|
|
39
|
+
"import-x/no-nodejs-modules": [
|
|
40
|
+
"error",
|
|
41
|
+
{
|
|
42
|
+
"allow": ["node:assert"],
|
|
43
|
+
},
|
|
44
|
+
],
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
];
|
|
48
|
+
|
|
49
|
+
export default config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/undo-redo",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.80.0",
|
|
4
4
|
"description": "Undo Redo",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -59,35 +59,36 @@
|
|
|
59
59
|
"temp-directory": "nyc/.nyc_output"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@fluid-internal/client-utils": "2.
|
|
63
|
-
"@fluidframework/map": "2.
|
|
64
|
-
"@fluidframework/matrix": "2.
|
|
65
|
-
"@fluidframework/merge-tree": "2.
|
|
66
|
-
"@fluidframework/sequence": "2.
|
|
62
|
+
"@fluid-internal/client-utils": "~2.80.0",
|
|
63
|
+
"@fluidframework/map": "~2.80.0",
|
|
64
|
+
"@fluidframework/matrix": "~2.80.0",
|
|
65
|
+
"@fluidframework/merge-tree": "~2.80.0",
|
|
66
|
+
"@fluidframework/sequence": "~2.80.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@arethetypeswrong/cli": "^0.
|
|
69
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
70
70
|
"@biomejs/biome": "~1.9.3",
|
|
71
|
-
"@fluid-internal/mocha-test-setup": "2.
|
|
72
|
-
"@fluid-tools/build-cli": "^0.
|
|
71
|
+
"@fluid-internal/mocha-test-setup": "~2.80.0",
|
|
72
|
+
"@fluid-tools/build-cli": "^0.62.0",
|
|
73
73
|
"@fluidframework/build-common": "^2.0.3",
|
|
74
|
-
"@fluidframework/build-tools": "^0.
|
|
75
|
-
"@fluidframework/eslint-config-fluid": "2.
|
|
76
|
-
"@fluidframework/test-runtime-utils": "2.
|
|
77
|
-
"@fluidframework/undo-redo-previous": "npm:@fluidframework/undo-redo@2.
|
|
74
|
+
"@fluidframework/build-tools": "^0.62.0",
|
|
75
|
+
"@fluidframework/eslint-config-fluid": "~2.80.0",
|
|
76
|
+
"@fluidframework/test-runtime-utils": "~2.80.0",
|
|
77
|
+
"@fluidframework/undo-redo-previous": "npm:@fluidframework/undo-redo@2.74.0",
|
|
78
78
|
"@microsoft/api-extractor": "7.52.11",
|
|
79
79
|
"@types/diff": "^3.5.1",
|
|
80
80
|
"@types/mocha": "^10.0.10",
|
|
81
81
|
"@types/node": "^18.19.0",
|
|
82
82
|
"c8": "^10.1.3",
|
|
83
|
-
"concurrently": "^
|
|
83
|
+
"concurrently": "^9.2.1",
|
|
84
84
|
"copyfiles": "^2.4.1",
|
|
85
|
-
"cross-env": "^
|
|
85
|
+
"cross-env": "^10.1.0",
|
|
86
86
|
"diff": "^3.5.0",
|
|
87
|
-
"eslint": "~
|
|
87
|
+
"eslint": "~9.39.1",
|
|
88
|
+
"jiti": "^2.6.1",
|
|
88
89
|
"mocha": "^10.8.2",
|
|
89
90
|
"mocha-multi-reporters": "^1.5.1",
|
|
90
|
-
"rimraf": "^
|
|
91
|
+
"rimraf": "^6.1.2",
|
|
91
92
|
"typescript": "~5.4.5"
|
|
92
93
|
},
|
|
93
94
|
"typeValidation": {
|