tools(client+build-tools): update Biome to 1.8.3 (#21869)
Changes: 1. Remove production dependency in @fluid-example/bubblebench-shared-tree 2. Update versions to ~1.8.3 (and set config to want ~) 3. Handle deprecations a. Replace "javascript.formatter.trailingComma" with "...trailingCommas" b. Replace cli argument `--apply` with `--write` 4. Apply formatting updates 5. Add Biome to npm-package-json-script-dep 6. Remove unused `--formatter-enabled=true` from commands 7. Add missing biome devDeps in build-tools Under 1.7.3 VS Code extensions users could experience server connection failures and need 1.8 version to get support from Biome. See [biomejs/biome-vscode#261](https://github.com/biomejs/biome-vscode/issues/261)
This commit is contained in:
Родитель
059c25a752
Коммит
b70b836ee2
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -36,7 +36,7 @@
|
|||
"tinylicious": "^5.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -79,7 +79,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -95,7 +95,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.0.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -19,14 +19,14 @@
|
|||
"build:genver": "gen-version",
|
||||
"build:test": "npm run build:test:esm",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -92,7 +92,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -132,7 +132,7 @@
|
|||
"arrowParentheses": "always",
|
||||
"jsxQuoteStyle": "double",
|
||||
"semicolons": "always",
|
||||
"trailingComma": "all",
|
||||
"trailingCommas": "all",
|
||||
"quoteProperties": "preserve",
|
||||
"quoteStyle": "double",
|
||||
"bracketSpacing": true
|
||||
|
@ -158,7 +158,7 @@
|
|||
"javascript": {
|
||||
"formatter": {
|
||||
"jsxQuoteStyle": "single",
|
||||
"trailingComma": "es5",
|
||||
"trailingCommas": "es5",
|
||||
"quoteStyle": "single"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
"clean:nyc": "rimraf --glob \"nyc/**\"",
|
||||
"commit": "git-cz",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"generate:packageList": "concurrently \"npm:generate:packageList:*\"",
|
||||
"generate:packageList:internal-build": "flub list --no-private -g build-tools --feed internal-build --outFile feeds/internal-build.txt",
|
||||
"generate:packageList:internal-dev": "flub list --no-private -g build-tools --feed internal-dev --outFile feeds/internal-dev.txt",
|
||||
|
@ -69,7 +69,7 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@commitlint/cli": "^17.6.6",
|
||||
"@commitlint/config-conventional": "^17.6.6",
|
||||
"@commitlint/cz-commitlint": "^17.5.0",
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"lint": "npm run eslint",
|
||||
"lint:fix": "npm run eslint:fix",
|
||||
"postpack": "npm run clean:manifest",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"lint": "npm run eslint",
|
||||
"lint:fix": "npm run eslint:fix",
|
||||
"list-repo-files": "cd ../../.. && git ls-files -co --exclude-standard",
|
||||
|
@ -67,6 +67,7 @@
|
|||
"yaml": "^2.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
"@types/async": "^3.2.20",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"lint": "npm run eslint",
|
||||
"lint:fix": "npm run eslint:fix",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
|
@ -48,6 +48,7 @@
|
|||
"webpack": "^5.88.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
"@microsoft/api-extractor": "^7.45.1",
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"lint": "npm run eslint",
|
||||
"lint:fix": "npm run eslint:fix",
|
||||
"postpack": "npm run clean:manifest",
|
||||
|
@ -48,6 +48,7 @@
|
|||
"semver": "^7.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
"@oclif/test": "^3.2.12",
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check --apply .",
|
||||
"format:biome": "biome check --write .",
|
||||
"lint": "npm run eslint",
|
||||
"lint:fix": "npm run eslint:fix",
|
||||
"postpack": "npm run clean:manifest",
|
||||
|
@ -86,6 +86,7 @@
|
|||
"table": "^6.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-private/readme-command": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -20,8 +20,8 @@ importers:
|
|||
.:
|
||||
devDependencies:
|
||||
'@biomejs/biome':
|
||||
specifier: ^1.7.3
|
||||
version: 1.7.3
|
||||
specifier: ~1.8.3
|
||||
version: 1.8.3
|
||||
'@commitlint/cli':
|
||||
specifier: ^17.6.6
|
||||
version: 17.6.6
|
||||
|
@ -423,6 +423,9 @@ importers:
|
|||
specifier: ^2.3.1
|
||||
version: 2.3.1
|
||||
devDependencies:
|
||||
'@biomejs/biome':
|
||||
specifier: ~1.8.3
|
||||
version: 1.8.3
|
||||
'@fluidframework/build-common':
|
||||
specifier: ^2.0.3
|
||||
version: 2.0.3
|
||||
|
@ -490,6 +493,9 @@ importers:
|
|||
specifier: ^5.88.1
|
||||
version: 5.88.1
|
||||
devDependencies:
|
||||
'@biomejs/biome':
|
||||
specifier: ~1.8.3
|
||||
version: 1.8.3
|
||||
'@fluidframework/build-common':
|
||||
specifier: ^2.0.3
|
||||
version: 2.0.3
|
||||
|
@ -536,6 +542,9 @@ importers:
|
|||
specifier: ^7.5.4
|
||||
version: 7.5.4
|
||||
devDependencies:
|
||||
'@biomejs/biome':
|
||||
specifier: ~1.8.3
|
||||
version: 1.8.3
|
||||
'@fluidframework/build-common':
|
||||
specifier: ^2.0.3
|
||||
version: 2.0.3
|
||||
|
@ -618,6 +627,9 @@ importers:
|
|||
specifier: ^6.8.1
|
||||
version: 6.8.1
|
||||
devDependencies:
|
||||
'@biomejs/biome':
|
||||
specifier: ~1.8.3
|
||||
version: 1.8.3
|
||||
'@fluid-private/readme-command':
|
||||
specifier: workspace:~
|
||||
version: link:../readme-command
|
||||
|
@ -1648,24 +1660,24 @@ packages:
|
|||
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
|
||||
dev: true
|
||||
|
||||
/@biomejs/biome@1.7.3:
|
||||
resolution: {integrity: sha512-ogFQI+fpXftr+tiahA6bIXwZ7CSikygASdqMtH07J2cUzrpjyTMVc9Y97v23c7/tL1xCZhM+W9k4hYIBm7Q6cQ==}
|
||||
/@biomejs/biome@1.8.3:
|
||||
resolution: {integrity: sha512-/uUV3MV+vyAczO+vKrPdOW0Iaet7UnJMU4bNMinggGJTAnBPjCoLEYcyYtYHNnUNYlv4xZMH6hVIQCAozq8d5w==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
optionalDependencies:
|
||||
'@biomejs/cli-darwin-arm64': 1.7.3
|
||||
'@biomejs/cli-darwin-x64': 1.7.3
|
||||
'@biomejs/cli-linux-arm64': 1.7.3
|
||||
'@biomejs/cli-linux-arm64-musl': 1.7.3
|
||||
'@biomejs/cli-linux-x64': 1.7.3
|
||||
'@biomejs/cli-linux-x64-musl': 1.7.3
|
||||
'@biomejs/cli-win32-arm64': 1.7.3
|
||||
'@biomejs/cli-win32-x64': 1.7.3
|
||||
'@biomejs/cli-darwin-arm64': 1.8.3
|
||||
'@biomejs/cli-darwin-x64': 1.8.3
|
||||
'@biomejs/cli-linux-arm64': 1.8.3
|
||||
'@biomejs/cli-linux-arm64-musl': 1.8.3
|
||||
'@biomejs/cli-linux-x64': 1.8.3
|
||||
'@biomejs/cli-linux-x64-musl': 1.8.3
|
||||
'@biomejs/cli-win32-arm64': 1.8.3
|
||||
'@biomejs/cli-win32-x64': 1.8.3
|
||||
dev: true
|
||||
|
||||
/@biomejs/cli-darwin-arm64@1.7.3:
|
||||
resolution: {integrity: sha512-eDvLQWmGRqrPIRY7AIrkPHkQ3visEItJKkPYSHCscSDdGvKzYjmBJwG1Gu8+QC5ed6R7eiU63LEC0APFBobmfQ==}
|
||||
/@biomejs/cli-darwin-arm64@1.8.3:
|
||||
resolution: {integrity: sha512-9DYOjclFpKrH/m1Oz75SSExR8VKvNSSsLnVIqdnKexj6NwmiMlKk94Wa1kZEdv6MCOHGHgyyoV57Cw8WzL5n3A==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
|
@ -1673,8 +1685,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-darwin-x64@1.7.3:
|
||||
resolution: {integrity: sha512-JXCaIseKRER7dIURsVlAJacnm8SG5I0RpxZ4ya3dudASYUc68WGl4+FEN03ABY3KMIq7hcK1tzsJiWlmXyosZg==}
|
||||
/@biomejs/cli-darwin-x64@1.8.3:
|
||||
resolution: {integrity: sha512-UeW44L/AtbmOF7KXLCoM+9PSgPo0IDcyEUfIoOXYeANaNXXf9mLUwV1GeF2OWjyic5zj6CnAJ9uzk2LT3v/wAw==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
|
@ -1682,8 +1694,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-linux-arm64-musl@1.7.3:
|
||||
resolution: {integrity: sha512-c8AlO45PNFZ1BYcwaKzdt46kYbuP6xPGuGQ6h4j3XiEDpyseRRUy/h+6gxj07XovmyxKnSX9GSZ6nVbZvcVUAw==}
|
||||
/@biomejs/cli-linux-arm64-musl@1.8.3:
|
||||
resolution: {integrity: sha512-9yjUfOFN7wrYsXt/T/gEWfvVxKlnh3yBpnScw98IF+oOeCYb5/b/+K7YNqKROV2i1DlMjg9g/EcN9wvj+NkMuQ==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
@ -1691,8 +1703,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-linux-arm64@1.7.3:
|
||||
resolution: {integrity: sha512-phNTBpo7joDFastnmZsFjYcDYobLTx4qR4oPvc9tJ486Bd1SfEVPHEvJdNJrMwUQK56T+TRClOQd/8X1nnjA9w==}
|
||||
/@biomejs/cli-linux-arm64@1.8.3:
|
||||
resolution: {integrity: sha512-fed2ji8s+I/m8upWpTJGanqiJ0rnlHOK3DdxsyVLZQ8ClY6qLuPc9uehCREBifRJLl/iJyQpHIRufLDeotsPtw==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
@ -1700,8 +1712,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-linux-x64-musl@1.7.3:
|
||||
resolution: {integrity: sha512-UdEHKtYGWEX3eDmVWvQeT+z05T9/Sdt2+F/7zmMOFQ7boANeX8pcO6EkJPK3wxMudrApsNEKT26rzqK6sZRTRA==}
|
||||
/@biomejs/cli-linux-x64-musl@1.8.3:
|
||||
resolution: {integrity: sha512-UHrGJX7PrKMKzPGoEsooKC9jXJMa28TUSMjcIlbDnIO4EAavCoVmNQaIuUSH0Ls2mpGMwUIf+aZJv657zfWWjA==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
@ -1709,8 +1721,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-linux-x64@1.7.3:
|
||||
resolution: {integrity: sha512-vnedYcd5p4keT3iD48oSKjOIRPYcjSNNbd8MO1bKo9ajg3GwQXZLAH+0Cvlr+eMsO67/HddWmscSQwTFrC/uPA==}
|
||||
/@biomejs/cli-linux-x64@1.8.3:
|
||||
resolution: {integrity: sha512-I8G2QmuE1teISyT8ie1HXsjFRz9L1m5n83U1O6m30Kw+kPMPSKjag6QGUn+sXT8V+XWIZxFFBoTDEDZW2KPDDw==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
@ -1718,8 +1730,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-win32-arm64@1.7.3:
|
||||
resolution: {integrity: sha512-unNCDqUKjujYkkSxs7gFIfdasttbDC4+z0kYmcqzRk6yWVoQBL4dNLcCbdnJS+qvVDNdI9rHp2NwpQ0WAdla4Q==}
|
||||
/@biomejs/cli-win32-arm64@1.8.3:
|
||||
resolution: {integrity: sha512-J+Hu9WvrBevfy06eU1Na0lpc7uR9tibm9maHynLIoAjLZpQU3IW+OKHUtyL8p6/3pT2Ju5t5emReeIS2SAxhkQ==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
|
@ -1727,8 +1739,8 @@ packages:
|
|||
dev: true
|
||||
optional: true
|
||||
|
||||
/@biomejs/cli-win32-x64@1.7.3:
|
||||
resolution: {integrity: sha512-ZmByhbrnmz/UUFYB622CECwhKIPjJLLPr5zr3edhu04LzbfcOrz16VYeNq5dpO1ADG70FORhAJkaIGdaVBG00w==}
|
||||
/@biomejs/cli-win32-x64@1.8.3:
|
||||
resolution: {integrity: sha512-/PJ59vA1pnQeKahemaQf4Nyj7IKUvGQSc3Ze1uIGi+Wvr1xF7rGobSrAAG01T/gUDG21vkDsZYM03NAmPiVkqg==}
|
||||
engines: {node: '>=14.21.3'}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
|
|
|
@ -82,6 +82,7 @@ module.exports = {
|
|||
{
|
||||
label: "Must use tilde dependency ranges",
|
||||
dependencies: [
|
||||
"@biomejs/biome",
|
||||
"eslint-plugin-*",
|
||||
"eslint-config-prettier",
|
||||
"eslint",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"@fluidframework/runtime-utils": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -24,14 +24,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -58,7 +58,7 @@
|
|||
"style-loader": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -50,7 +50,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
|
@ -25,7 +25,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -64,7 +64,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,45 +26,46 @@ interface IDataObjectGridToolbarAddItemPickerProps {
|
|||
toolbarOptions: IToolbarOption[];
|
||||
}
|
||||
|
||||
const DataObjectGridToolbarAddItemPicker: React.FC<IDataObjectGridToolbarAddItemPickerProps> =
|
||||
(props: React.PropsWithChildren<IDataObjectGridToolbarAddItemPickerProps>) => {
|
||||
const { toolbarOptions } = props;
|
||||
const [open, setOpen] = React.useState<boolean>(false);
|
||||
const DataObjectGridToolbarAddItemPicker: React.FC<
|
||||
IDataObjectGridToolbarAddItemPickerProps
|
||||
> = (props: React.PropsWithChildren<IDataObjectGridToolbarAddItemPickerProps>) => {
|
||||
const { toolbarOptions } = props;
|
||||
const [open, setOpen] = React.useState<boolean>(false);
|
||||
|
||||
const itemsButton = (
|
||||
<Button
|
||||
icon={open ? <ChevronUpFilled /> : <ChevronDownFilled />}
|
||||
className="data-grid-toolbar-top-level-button"
|
||||
onClick={() => setOpen(!open)}
|
||||
>
|
||||
{"Add Items"}
|
||||
</Button>
|
||||
);
|
||||
const itemButtonList = toolbarOptions.map((toolbarOption) => (
|
||||
<Button
|
||||
className="data-grid-toolbar-option-button"
|
||||
key={`toolbarButton-${toolbarOption.key}`}
|
||||
icon={iconMap[toolbarOption.fabricIconName]}
|
||||
onClick={() => {
|
||||
toolbarOption.create();
|
||||
setOpen(false);
|
||||
}}
|
||||
>
|
||||
{toolbarOption.friendlyName}
|
||||
</Button>
|
||||
));
|
||||
const itemsButton = (
|
||||
<Button
|
||||
icon={open ? <ChevronUpFilled /> : <ChevronDownFilled />}
|
||||
className="data-grid-toolbar-top-level-button"
|
||||
onClick={() => setOpen(!open)}
|
||||
>
|
||||
{"Add Items"}
|
||||
</Button>
|
||||
);
|
||||
const itemButtonList = toolbarOptions.map((toolbarOption) => (
|
||||
<Button
|
||||
className="data-grid-toolbar-option-button"
|
||||
key={`toolbarButton-${toolbarOption.key}`}
|
||||
icon={iconMap[toolbarOption.fabricIconName]}
|
||||
onClick={() => {
|
||||
toolbarOption.create();
|
||||
setOpen(false);
|
||||
}}
|
||||
>
|
||||
{toolbarOption.friendlyName}
|
||||
</Button>
|
||||
));
|
||||
|
||||
return (
|
||||
<Collapsible
|
||||
open={open}
|
||||
trigger={itemsButton}
|
||||
className="data-grid-toolbar-tool"
|
||||
openedClassName="data-grid-toolbar-tool"
|
||||
>
|
||||
{itemButtonList}
|
||||
</Collapsible>
|
||||
);
|
||||
};
|
||||
return (
|
||||
<Collapsible
|
||||
open={open}
|
||||
trigger={itemsButton}
|
||||
className="data-grid-toolbar-tool"
|
||||
openedClassName="data-grid-toolbar-tool"
|
||||
>
|
||||
{itemButtonList}
|
||||
</Collapsible>
|
||||
);
|
||||
};
|
||||
|
||||
interface IDataObjectGridToolbarProps {
|
||||
editable: boolean;
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -51,7 +51,7 @@
|
|||
"process": "^0.11.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -18,14 +18,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"style-loader": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -59,7 +59,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -51,7 +51,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -51,7 +51,7 @@
|
|||
"use-resize-observer": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -63,7 +63,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -51,7 +51,6 @@
|
|||
"webpack:dev": "webpack --env development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@fluid-example/bubblebench-common": "workspace:~",
|
||||
"@fluid-example/example-utils": "workspace:~",
|
||||
"@fluidframework/aqueduct": "workspace:~",
|
||||
|
@ -61,7 +60,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
|
@ -24,7 +24,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"webpack-dev-server": "~4.15.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -24,14 +24,14 @@
|
|||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"build:test": "npm run build:test:esm",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -59,7 +59,7 @@
|
|||
"@fluidframework/tree": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/benchmark": "^0.48.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob coverage dist lib nyc \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
|
@ -26,7 +26,7 @@
|
|||
"format": "npm run format:biome",
|
||||
"format-and-build": "npm run format && npm run build",
|
||||
"format-and-compile": "npm run format && npm run build:compile",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -55,7 +55,7 @@
|
|||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -60,7 +60,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
|
@ -35,7 +35,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -67,7 +67,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -51,7 +51,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -17,14 +17,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -46,7 +46,7 @@
|
|||
"@fluidframework/map": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -27,14 +27,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -45,7 +45,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -17,14 +17,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -59,7 +59,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -44,7 +44,7 @@
|
|||
"@fluidframework/map": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -26,14 +26,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -42,7 +42,7 @@
|
|||
"@fluid-example/example-utils": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -27,14 +27,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -44,7 +44,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -27,14 +27,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -44,7 +44,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -27,14 +27,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format"
|
||||
|
@ -44,7 +44,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:copy": "copyfiles -u 1 \"src/**/*.css\" lib/",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
|
@ -35,7 +35,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -78,7 +78,7 @@
|
|||
"react": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
|
@ -24,7 +24,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -57,7 +57,7 @@
|
|||
"simplemde": "^1.11.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
"build:test": "npm run build:test:esm",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "echo skip concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -90,7 +90,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-version-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"build:test": "npm run build:test:esm",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -88,7 +88,7 @@
|
|||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-example/webpack-fluid-loader": "workspace:~",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-version-utils": "workspace:~",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src tests",
|
||||
"eslint:fix": "eslint --format stylish src tests --fix",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../.prettierignore",
|
||||
"good-fences": "gf",
|
||||
"lint": "fluid-build . --task lint",
|
||||
|
@ -81,7 +81,7 @@
|
|||
"valid-url": "^1.0.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/container-definitions": "workspace:~",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -44,7 +44,7 @@
|
|||
"style-loader": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib bundleAnalysis \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -46,7 +46,7 @@
|
|||
"fluid-framework": "workspace:~"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@cerner/duplicate-package-checker-webpack-plugin": "~2.3.0",
|
||||
"@fluid-tools/version-tools": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"build:docs": "api-extractor run --local",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "api-extractor run --config ./api-extractor-lint.json",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
|
@ -42,7 +42,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -79,7 +79,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -39,14 +39,14 @@
|
|||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"build:webpack": "npm run webpack",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -112,7 +112,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"style-loader": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -61,7 +61,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -61,7 +61,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -60,7 +60,7 @@
|
|||
"uuid": "^9.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"react-dom": "^17.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -18,14 +18,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"style-loader": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
"build": "fluid-build . --task build",
|
||||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"vue": "~3.4.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -18,14 +18,14 @@
|
|||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"build:webpack": "npm run webpack",
|
||||
"build:webpack:dev": "webpack --env.clean",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -79,7 +79,7 @@
|
|||
"react-virtualized-auto-sizer": "^1.0.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@types/jest": "29.5.3",
|
||||
|
|
|
@ -31,14 +31,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -46,7 +46,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"copyfiles": "^2.4.1",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"build:test": "npm run build:test:cjs",
|
||||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
|
@ -48,7 +48,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -92,7 +92,7 @@
|
|||
"@babel/core": "^7.24.4",
|
||||
"@babel/eslint-parser": "^7.24.1",
|
||||
"@babel/plugin-proposal-decorators": "^7.24.1",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/test-runtime-utils": "workspace:~",
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
|
@ -47,7 +47,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -90,7 +90,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -19,14 +19,14 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
||||
"build:test": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"traverse": "0.6.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
||||
|
@ -44,7 +44,7 @@
|
|||
"eslint": "eslint src",
|
||||
"eslint:fix": "eslint src --fix",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -76,7 +76,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-experimental/property-common": "workspace:~",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-drivers": "workspace:~",
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
"build:copy-resources": "copyfiles -u 2 \"dist/assets/**/*\" lib/assets",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"build:webpack": "webpack --config webpack.svgs.cjs && copyfiles -u 2 \"dist/assets/**/*\" lib/assets",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -69,7 +69,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.24.4",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-experimental/property-binder": "workspace:~",
|
||||
"@fluid-experimental/property-changeset": "workspace:~",
|
||||
"@fluid-experimental/property-dds": "workspace:~",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"build:compile": "fluid-build . --task compile",
|
||||
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
||||
"build:test": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
|
@ -32,7 +32,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -73,7 +73,7 @@
|
|||
"underscore": "^1.13.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -39,14 +39,14 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -61,7 +61,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
||||
|
|
|
@ -13,13 +13,13 @@
|
|||
"main": "src/index.js",
|
||||
"types": "src/index.d.ts",
|
||||
"scripts": {
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob nyc",
|
||||
"coverage": "npx nyc --silent --cwd .. --nycrc-path `pwd`/.nycrc npm run test && npx nyc --no-clean --silent --cwd .. --nycrc-path `pwd`/.nycrc npm run test:changeset && npx nyc --no-clean --cwd .. --nycrc-path `pwd`/.nycrc npm run test:common",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -44,7 +44,7 @@
|
|||
"traverse": "0.6.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-experimental/property-properties": "workspace:~",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:format": "npm run check:biome",
|
||||
"check:prettier": "prettier --check . --cache --ignore-path ../../../../.prettierignore",
|
||||
"clean": "rimraf --glob dist \"**/*.tsbuildinfo\" \"**/*.build.log\" lib nyc",
|
||||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -57,7 +57,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
"@fluidframework/test-runtime-utils": "workspace:~",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -98,7 +98,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-experimental/attributable-map-previous": "npm:@fluid-experimental/attributable-map@2.0.0",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -92,7 +92,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -50,7 +50,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -92,7 +92,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -93,7 +93,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
"javascript": {
|
||||
"formatter": {
|
||||
"jsxQuoteStyle": "single",
|
||||
"trailingComma": "es5",
|
||||
"trailingCommas": "es5",
|
||||
"quoteStyle": "single"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"build:docs": "api-extractor run --local",
|
||||
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
||||
"check:are-the-types-wrong": "attw --pack . --exclude-entrypoints ./test/EditLog",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:EditLog": "echo AB#8147 skip api-extractor run --config api-extractor/api-extractor-lint-EditLog.cjs.json",
|
||||
|
@ -56,7 +56,7 @@
|
|||
"eslint": "eslint src",
|
||||
"eslint:fix": "eslint src --fix",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -92,7 +92,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
"@fluid-private/test-drivers": "workspace:~",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"build:docs": "api-extractor run --local",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -44,7 +44,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -62,7 +62,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"build:docs": "api-extractor run --local",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -45,7 +45,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -62,7 +62,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack . --entrypoints .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
|
||||
|
@ -61,7 +61,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -106,7 +106,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -460,6 +460,7 @@ module.exports = {
|
|||
commandPackages: [
|
||||
["api-extractor", "@microsoft/api-extractor"],
|
||||
["attw", "@arethetypeswrong/cli"],
|
||||
["biome", "@biomejs/biome"],
|
||||
["c8", "c8"],
|
||||
["concurrently", "concurrently"],
|
||||
["copyfiles", "copyfiles"],
|
||||
|
|
10
package.json
10
package.json
|
@ -31,7 +31,7 @@
|
|||
"bundle-analysis:run": "flub run bundleStats --dangerfile build-tools/packages/build-cli/lib/library/dangerfile.cjs",
|
||||
"changeset": "flub changeset add --releaseGroup client",
|
||||
"check:are-the-types-wrong": "fluid-build --task check:are-the-types-wrong",
|
||||
"check:format:repo": "biome check . --formatter-enabled=true",
|
||||
"check:format:repo": "biome check .",
|
||||
"check:versions": "flub check buildVersion -g client --path .",
|
||||
"check:versions:fix": "flub check buildVersion -g client --path . --fix",
|
||||
"checks": "fluid-build --task checks",
|
||||
|
@ -58,10 +58,10 @@
|
|||
"format": "fluid-build --task format",
|
||||
"format:biome": "fluid-build --task format:biome",
|
||||
"format:changed": "npm run format:changed:main",
|
||||
"format:changed:main": "biome check --formatter-enabled=true --apply --changed --since=main",
|
||||
"format:changed:next": "biome check --formatter-enabled=true --apply --changed --since=next",
|
||||
"format:changed:main": "biome check --write --changed --since=main",
|
||||
"format:changed:next": "biome check --write --changed --since=next",
|
||||
"format:prettier": "fluid-build --task format:prettier",
|
||||
"format:repo": "biome check . --formatter-enabled=true --apply",
|
||||
"format:repo": "biome check . --write",
|
||||
"generate:packageList": "fluid-build --task generate:packageList",
|
||||
"generate:packageList:internal-build": "flub list client --no-private --feed internal-build --outFile feeds/internal-build.txt",
|
||||
"generate:packageList:internal-dev": "flub list client --no-private --feed internal-dev --outFile feeds/internal-dev.txt",
|
||||
|
@ -153,7 +153,7 @@
|
|||
"temp-directory": "nyc/.nyc_output"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@changesets/cli": "^2.26.1",
|
||||
"@fluid-private/changelog-generator-wrapper": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
"build:test:mocha:esm": "tsc --project ./src/test/mocha/tsconfig.json",
|
||||
"build:test:types": "tsc --project ./src/test/types/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack . --exclude-entrypoints internal-api-report",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:indexBrowser": "api-extractor run --config api-extractor/api-extractor-lint-indexBrowser.cjs.json",
|
||||
|
@ -87,7 +87,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -132,7 +132,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/client-utils-previous": "npm:@fluid-internal/client-utils@2.0.0",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -82,7 +82,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -98,7 +98,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -82,7 +82,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -94,7 +94,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -81,7 +81,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -118,7 +118,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/benchmark": "^0.47.0",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
"build:docs": "api-extractor run --local",
|
||||
"build:esnext": "tsc --project ./tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -78,7 +78,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -93,7 +93,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
"@fluidframework/build-tools": "^0.40.0",
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
|
||||
|
@ -62,7 +62,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -107,7 +107,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -80,7 +80,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -125,7 +125,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -94,7 +94,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
"@fluidframework/build-common": "^2.0.3",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -80,7 +80,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -135,7 +135,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -82,7 +82,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -134,7 +134,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack . --exclude-entrypoints ./internal/test",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -91,7 +91,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -145,7 +145,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
"@fluid-private/test-pairwise-generator": "workspace:~",
|
||||
|
|
|
@ -934,9 +934,7 @@ export function TestPack(verbose = true): {
|
|||
}
|
||||
if (verbose) {
|
||||
log(
|
||||
`total time ${(totalTime / 1000000).toFixed(1)} check time ${(
|
||||
checkTime / 1000000
|
||||
).toFixed(1)}`,
|
||||
`total time ${(totalTime / 1000000).toFixed(1)} check time ${(checkTime / 1000000).toFixed(1)}`,
|
||||
);
|
||||
}
|
||||
// log(server.getText());
|
||||
|
|
|
@ -175,9 +175,7 @@ function measureFetch(startFile: string, withBookmarks = false): void {
|
|||
}
|
||||
const et = elapsedMicroseconds(clockStart);
|
||||
console.log(
|
||||
`fetch of ${count / reps} runs over ${client.getLength()} total chars took ${(
|
||||
et / count
|
||||
).toFixed(1)} microseconds per run`,
|
||||
`fetch of ${count / reps} runs over ${client.getLength()} total chars took ${(et / count).toFixed(1)} microseconds per run`,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -80,7 +80,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -128,7 +128,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
||||
|
@ -49,7 +49,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -93,7 +93,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack .",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -80,7 +80,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -126,7 +126,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
"@fluid-tools/build-cli": "^0.40.0",
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
||||
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
||||
"check:are-the-types-wrong": "attw --pack . --exclude-entrypoints ./internal/test/intervalCollection",
|
||||
"check:biome": "biome check . --formatter-enabled=true",
|
||||
"check:biome": "biome check .",
|
||||
"check:exports": "concurrently \"npm:check:exports:*\"",
|
||||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
||||
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
||||
|
@ -90,7 +90,7 @@
|
|||
"eslint": "eslint --format stylish src",
|
||||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
||||
"format": "npm run format:biome",
|
||||
"format:biome": "biome check . --formatter-enabled=true --apply",
|
||||
"format:biome": "biome check . --write",
|
||||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
||||
"lint": "fluid-build . --task lint",
|
||||
"lint:fix": "fluid-build . --task eslint:fix --task format",
|
||||
|
@ -148,7 +148,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@arethetypeswrong/cli": "^0.15.2",
|
||||
"@biomejs/biome": "^1.7.3",
|
||||
"@biomejs/biome": "~1.8.3",
|
||||
"@fluid-internal/mocha-test-setup": "workspace:~",
|
||||
"@fluid-private/stochastic-test-utils": "workspace:~",
|
||||
"@fluid-private/test-dds-utils": "workspace:~",
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче