@fluidframework/debugger 2.0.0-dev-rc.5.0.0.270401 → 2.0.0-dev-rc.5.0.0.270987
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/biome.jsonc +4 -0
- package/package.json +11 -8
package/biome.jsonc
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/debugger",
|
|
3
|
-
"version": "2.0.0-dev-rc.5.0.0.
|
|
3
|
+
"version": "2.0.0-dev-rc.5.0.0.270987",
|
|
4
4
|
"description": "Fluid Debugger - a tool to play through history of a file",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,18 +47,18 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.
|
|
51
|
-
"@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.
|
|
52
|
-
"@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.
|
|
53
|
-
"@fluidframework/replay-driver": "2.0.0-dev-rc.5.0.0.
|
|
50
|
+
"@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.270987",
|
|
51
|
+
"@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.270987",
|
|
52
|
+
"@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.270987",
|
|
53
|
+
"@fluidframework/replay-driver": "2.0.0-dev-rc.5.0.0.270987",
|
|
54
54
|
"jsonschema": "^1.2.6"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
58
58
|
"@biomejs/biome": "^1.7.3",
|
|
59
|
-
"@fluid-tools/build-cli": "^0.39.0
|
|
59
|
+
"@fluid-tools/build-cli": "^0.39.0",
|
|
60
60
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
|
-
"@fluidframework/build-tools": "^0.39.0
|
|
61
|
+
"@fluidframework/build-tools": "^0.39.0",
|
|
62
62
|
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.0.0-rc.4.0.0",
|
|
63
63
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
64
64
|
"@microsoft/api-extractor": "^7.45.1",
|
|
@@ -88,13 +88,16 @@
|
|
|
88
88
|
"build:docs": "api-extractor run --local",
|
|
89
89
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
90
90
|
"check:are-the-types-wrong": "attw --pack .",
|
|
91
|
+
"check:biome": "biome check . --formatter-enabled=true",
|
|
92
|
+
"check:format": "npm run check:prettier",
|
|
91
93
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
92
94
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
93
95
|
"ci:build:docs": "api-extractor run",
|
|
94
96
|
"clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
|
95
97
|
"eslint": "eslint --format stylish src",
|
|
96
98
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
97
|
-
"format": "
|
|
99
|
+
"format": "npm run format:prettier",
|
|
100
|
+
"format:biome": "biome check . --formatter-enabled=true --apply",
|
|
98
101
|
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
99
102
|
"lint": "fluid-build . --task lint",
|
|
100
103
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|