Skip to content

Commit

Permalink
build(client): Bump build-tools dependencies to 0.46.0 (microsoft#22482)
Browse files Browse the repository at this point in the history
Updates the build-tools to 0.46.0 in the client release group.

Primary changes:

The biggest changes in this release are in the type tests.

- The tests are now output in order sorted by type name.
- New in 0.46, the type tests no longer depend on any other build task,
so the task config has been updated accordingly. Also, the default
entrypoint that is tested in each package is now explicitly recorded in
package.json (those changes are in microsoft#22495).

Additional changes:

- The config now has a version property set to 1. This is a schema
version that we can change as needed when we make schema changes to the
config(s).
- The `"check:exports"` task config for test-loader-utils needed manual
updates because it does not have an api task. It has been updated with a
custom task definition.
- Several packages had task overrides that were incomplete/incorrect
because they did not inherit the global task config. Those packages have
been updated to inherit the global config.
- The same packages from the previous step also have an additional task
config for the "build:esnext" task to depend on typetests:gen; this is
needed so that ESM and CJS can be built separately. The packages in
question do not have a build:test task since they build tests as part of
their standard build. Without the build:esnext -> typetests:gen task dep
in each package, the ESM builds would not trigger typetest generation as
they should.
  • Loading branch information
tylerbutler authored Sep 14, 2024
1 parent d2995da commit 42ecec2
Show file tree
Hide file tree
Showing 204 changed files with 6,001 additions and 5,831 deletions.
2 changes: 1 addition & 1 deletion azure/packages/azure-local-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.0.0",
Expand Down
4 changes: 2 additions & 2 deletions azure/packages/azure-service-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.2",
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/[email protected]",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@microsoft/api-extractor": "7.47.8",
"@types/jsrsasign": "^10.5.12",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,42 +20,42 @@ declare type MakeUnusedImportErrorsGoAway<T> = TypeOnly<T> | MinimalType<T> | Fu
* If this test starts failing, it indicates a change that is not forward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Interface_IUser": {"forwardCompat": false}
* "Enum_ScopeType": {"forwardCompat": false}
*/
declare type old_as_current_for_Interface_IUser = requireAssignableTo<TypeOnly<old.IUser>, TypeOnly<current.IUser>>
declare type old_as_current_for_Enum_ScopeType = requireAssignableTo<TypeOnly<old.ScopeType>, TypeOnly<current.ScopeType>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Interface_IUser": {"backCompat": false}
* "Enum_ScopeType": {"backCompat": false}
*/
declare type current_as_old_for_Interface_IUser = requireAssignableTo<TypeOnly<current.IUser>, TypeOnly<old.IUser>>
declare type current_as_old_for_Enum_ScopeType = requireAssignableTo<TypeOnly<current.ScopeType>, TypeOnly<old.ScopeType>>

/*
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Enum_ScopeType": {"forwardCompat": false}
* "Function_generateToken": {"backCompat": false}
*/
declare type old_as_current_for_Enum_ScopeType = requireAssignableTo<TypeOnly<old.ScopeType>, TypeOnly<current.ScopeType>>
declare type current_as_old_for_Function_generateToken = requireAssignableTo<TypeOnly<typeof current.generateToken>, TypeOnly<typeof old.generateToken>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* Validate forward compatibility by using the old type in place of the current type.
* If this test starts failing, it indicates a change that is not forward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Enum_ScopeType": {"backCompat": false}
* "Interface_IUser": {"forwardCompat": false}
*/
declare type current_as_old_for_Enum_ScopeType = requireAssignableTo<TypeOnly<current.ScopeType>, TypeOnly<old.ScopeType>>
declare type old_as_current_for_Interface_IUser = requireAssignableTo<TypeOnly<old.IUser>, TypeOnly<current.IUser>>

/*
* Validate backward compatibility by using the current type in place of the old type.
* If this test starts failing, it indicates a change that is not backward compatible.
* To acknowledge the breaking change, add the following to package.json under
* typeValidation.broken:
* "Function_generateToken": {"backCompat": false}
* "Interface_IUser": {"backCompat": false}
*/
declare type current_as_old_for_Function_generateToken = requireAssignableTo<TypeOnly<typeof current.generateToken>, TypeOnly<typeof old.generateToken>>
declare type current_as_old_for_Interface_IUser = requireAssignableTo<TypeOnly<current.IUser>, TypeOnly<old.IUser>>
4 changes: 2 additions & 2 deletions azure/packages/test/scenario-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/attributable-map/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/node": "^18.19.0",
"eslint": "~8.55.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/collaborative-textarea/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@fluidframework/test-utils": "workspace:~",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/contact-collection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/data-object-grid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/presence-tracker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/task-selection/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/apps/tree-comparison/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmarks/bubblebench/baseline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/benchmarks/bubblebench/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.18",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmarks/bubblebench/ot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmarks/bubblebench/shared-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^9.0.11",
Expand Down
2 changes: 1 addition & 1 deletion examples/benchmarks/tablebench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@fluid-internal/mocha-test-setup": "workspace:~",
"@fluid-tools/benchmark": "^0.50.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/id-compressor": "workspace:~",
"@types/mocha": "^9.1.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/client-logger/app-insights-logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@testing-library/dom": "^8.2.0",
"@testing-library/jest-dom": "^5.16.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/canvas/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/clicker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@fluidframework/test-utils": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/codemirror": "5.60.7",
"@types/node": "^18.19.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/diceroller/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/inventory-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/monaco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"css-loader": "^7.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"copyfiles": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/multiview/container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@fluidframework/test-tools": "^1.0.195075",
"@types/jest": "29.5.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"eslint": "~8.55.0",
"prettier": "~3.0.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/data-objects/multiview/interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
},
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluid-tools/build-cli": "^0.44.0",
"@fluid-tools/build-cli": "^0.46.0",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"eslint": "~8.55.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"copyfiles": "^2.4.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"copyfiles": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/multiview/triangle-view/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"devDependencies": {
"@biomejs/biome": "~1.8.3",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"copyfiles": "^2.4.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/prosemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/node": "^18.19.0",
"@types/orderedmap": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-objects/smde/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@biomejs/biome": "~1.8.3",
"@fluid-example/webpack-fluid-loader": "workspace:~",
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/build-tools": "^0.44.0",
"@fluidframework/build-tools": "^0.46.0",
"@fluidframework/eslint-config-fluid": "^5.4.0",
"@types/react": "^17.0.44",
"@types/simplemde": "^1.11.7",
Expand Down
Loading

0 comments on commit 42ecec2

Please sign in to comment.