@fluidframework/debugger 2.0.0-dev-rc.5.0.0.270401 → 2.0.0-dev-rc.5.0.0.271045

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.
Files changed (2) hide show
  1. package/biome.jsonc +4 -0
  2. package/package.json +11 -8
package/biome.jsonc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3
+ "extends": ["../../../biome.jsonc"]
4
+ }
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.270401",
3
+ "version": "2.0.0-dev-rc.5.0.0.271045",
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.270401",
51
- "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.270401",
52
- "@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.270401",
53
- "@fluidframework/replay-driver": "2.0.0-dev-rc.5.0.0.270401",
50
+ "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.271045",
51
+ "@fluidframework/driver-definitions": "2.0.0-dev-rc.5.0.0.271045",
52
+ "@fluidframework/driver-utils": "2.0.0-dev-rc.5.0.0.271045",
53
+ "@fluidframework/replay-driver": "2.0.0-dev-rc.5.0.0.271045",
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-264124",
59
+ "@fluid-tools/build-cli": "^0.39.0",
60
60
  "@fluidframework/build-common": "^2.0.3",
61
- "@fluidframework/build-tools": "^0.39.0-264124",
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": "fluid-build --task 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",