@fluidframework/core-interfaces 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.
Files changed (2) hide show
  1. package/biome.jsonc +4 -0
  2. package/package.json +7 -4
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/core-interfaces",
3
- "version": "2.0.0-dev-rc.5.0.0.270401",
3
+ "version": "2.0.0-dev-rc.5.0.0.270987",
4
4
  "description": "Fluid object interfaces",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -49,9 +49,9 @@
49
49
  "devDependencies": {
50
50
  "@arethetypeswrong/cli": "^0.15.2",
51
51
  "@biomejs/biome": "^1.7.3",
52
- "@fluid-tools/build-cli": "^0.39.0-264124",
52
+ "@fluid-tools/build-cli": "^0.39.0",
53
53
  "@fluidframework/build-common": "^2.0.3",
54
- "@fluidframework/build-tools": "^0.39.0-264124",
54
+ "@fluidframework/build-tools": "^0.39.0",
55
55
  "@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.0.0-rc.4.0.0",
56
56
  "@fluidframework/eslint-config-fluid": "^5.3.0",
57
57
  "@microsoft/api-extractor": "^7.45.1",
@@ -78,6 +78,8 @@
78
78
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
79
79
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
80
80
  "check:are-the-types-wrong": "attw --pack .",
81
+ "check:biome": "biome check . --formatter-enabled=true",
82
+ "check:format": "npm run check:prettier",
81
83
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
82
84
  "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
83
85
  "ci:build": "npm run build:compile",
@@ -87,7 +89,8 @@
87
89
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
88
90
  "eslint": "eslint --format stylish src",
89
91
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
90
- "format": "fluid-build --task format .",
92
+ "format": "npm run format:prettier",
93
+ "format:biome": "biome check . --formatter-enabled=true --apply",
91
94
  "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
92
95
  "lint": "fluid-build . --task lint",
93
96
  "lint:fix": "fluid-build . --task eslint:fix --task format",