@fluidframework/aqueduct 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 +22 -19
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/aqueduct",
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": "A set of implementations for Fluid Framework interfaces.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -67,29 +67,29 @@
67
67
  "temp-directory": "nyc/.nyc_output"
68
68
  },
69
69
  "dependencies": {
70
- "@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.270401",
71
- "@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.270401",
72
- "@fluidframework/container-runtime": "2.0.0-dev-rc.5.0.0.270401",
73
- "@fluidframework/container-runtime-definitions": "2.0.0-dev-rc.5.0.0.270401",
74
- "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.270401",
75
- "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.270401",
76
- "@fluidframework/datastore": "2.0.0-dev-rc.5.0.0.270401",
77
- "@fluidframework/datastore-definitions": "2.0.0-dev-rc.5.0.0.270401",
78
- "@fluidframework/map": "2.0.0-dev-rc.5.0.0.270401",
79
- "@fluidframework/request-handler": "2.0.0-dev-rc.5.0.0.270401",
80
- "@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.270401",
81
- "@fluidframework/runtime-utils": "2.0.0-dev-rc.5.0.0.270401",
82
- "@fluidframework/shared-object-base": "2.0.0-dev-rc.5.0.0.270401",
83
- "@fluidframework/synthesize": "2.0.0-dev-rc.5.0.0.270401"
70
+ "@fluid-internal/client-utils": "2.0.0-dev-rc.5.0.0.271045",
71
+ "@fluidframework/container-definitions": "2.0.0-dev-rc.5.0.0.271045",
72
+ "@fluidframework/container-runtime": "2.0.0-dev-rc.5.0.0.271045",
73
+ "@fluidframework/container-runtime-definitions": "2.0.0-dev-rc.5.0.0.271045",
74
+ "@fluidframework/core-interfaces": "2.0.0-dev-rc.5.0.0.271045",
75
+ "@fluidframework/core-utils": "2.0.0-dev-rc.5.0.0.271045",
76
+ "@fluidframework/datastore": "2.0.0-dev-rc.5.0.0.271045",
77
+ "@fluidframework/datastore-definitions": "2.0.0-dev-rc.5.0.0.271045",
78
+ "@fluidframework/map": "2.0.0-dev-rc.5.0.0.271045",
79
+ "@fluidframework/request-handler": "2.0.0-dev-rc.5.0.0.271045",
80
+ "@fluidframework/runtime-definitions": "2.0.0-dev-rc.5.0.0.271045",
81
+ "@fluidframework/runtime-utils": "2.0.0-dev-rc.5.0.0.271045",
82
+ "@fluidframework/shared-object-base": "2.0.0-dev-rc.5.0.0.271045",
83
+ "@fluidframework/synthesize": "2.0.0-dev-rc.5.0.0.271045"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@arethetypeswrong/cli": "^0.15.2",
87
87
  "@biomejs/biome": "^1.7.3",
88
- "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.270401",
89
- "@fluid-tools/build-cli": "^0.39.0-264124",
88
+ "@fluid-internal/mocha-test-setup": "2.0.0-dev-rc.5.0.0.271045",
89
+ "@fluid-tools/build-cli": "^0.39.0",
90
90
  "@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.0.0-rc.4.0.0",
91
91
  "@fluidframework/build-common": "^2.0.3",
92
- "@fluidframework/build-tools": "^0.39.0-264124",
92
+ "@fluidframework/build-tools": "^0.39.0",
93
93
  "@fluidframework/eslint-config-fluid": "^5.3.0",
94
94
  "@microsoft/api-extractor": "^7.45.1",
95
95
  "@types/mocha": "^9.1.1",
@@ -127,13 +127,16 @@
127
127
  "build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
128
128
  "build:test:esm": "tsc --project ./src/test/tsconfig.json",
129
129
  "check:are-the-types-wrong": "attw --pack .",
130
+ "check:biome": "biome check . --formatter-enabled=true",
131
+ "check:format": "npm run check:prettier",
130
132
  "check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
131
133
  "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
132
134
  "ci:build:docs": "api-extractor run",
133
135
  "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
134
136
  "eslint": "eslint --format stylish src",
135
137
  "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
136
- "format": "fluid-build --task format .",
138
+ "format": "npm run format:prettier",
139
+ "format:biome": "biome check . --formatter-enabled=true --apply",
137
140
  "format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
138
141
  "lint": "fluid-build . --task lint",
139
142
  "lint:fix": "fluid-build . --task eslint:fix --task format",