-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge branch 'main' of https://github.com/Microsoft/FluidFramework in…
…to RuntimeCompatibility
- Loading branch information
Showing
259 changed files
with
1,757 additions
and
984 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
"fluid-framework": minor | ||
"@fluidframework/fluid-static": minor | ||
"@fluidframework/map": minor | ||
"@fluidframework/shared-object-base": minor | ||
"@fluidframework/tree": minor | ||
--- | ||
|
||
Replace SharedObjectClass with new ISharedObjectKind type. | ||
|
||
The static objects used as SharedObjectClass now explicitly implement the new ISharedObjectKind type. | ||
SharedObjectClass has been removed as ISharedObjectKind now fills that role. | ||
LoadableObjectCtor has been inlined as it only had one use: an external user of it can replace it with `(new (...args: any[]) => T)`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ | |
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.13.3", | ||
"@biomejs/biome": "^1.6.1", | ||
"@biomejs/biome": "^1.6.2", | ||
"@fluid-tools/build-cli": "^0.34.0", | ||
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/[email protected]", | ||
"@fluidframework/build-common": "^2.0.3", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
`flub modify` | ||
============= | ||
|
||
Modify commands are used to modify projects to add or remove dependencies, update Fluid imports, etc. | ||
|
||
* [`flub modify fluid-imports`](#flub-modify-fluid-imports) | ||
|
||
## `flub modify fluid-imports` | ||
|
||
Rewrite imports for Fluid Framework APIs to use the correct subpath import (/alpha, /beta. etc.) | ||
|
||
``` | ||
USAGE | ||
$ flub modify fluid-imports [-v | --quiet] [--tsconfig <value>] [--data <value>] [--organize] [--onlyInternal] | ||
FLAGS | ||
--data=<value> Path to a data file containing raw API level data. | ||
--onlyInternal Use /internal for all non-public APIs instead of /alpha or /beta. | ||
--organize Organize the imports in any file that is modified. Note that this can make it more difficult to | ||
see the rewritten import changes. | ||
--tsconfig=<value> [default: ./tsconfig.json] Path to a tsconfig file that will be used to load project files. | ||
LOGGING FLAGS | ||
-v, --verbose Enable verbose logging. | ||
--quiet Disable all logging. | ||
DESCRIPTION | ||
Rewrite imports for Fluid Framework APIs to use the correct subpath import (/alpha, /beta. etc.) | ||
``` | ||
|
||
_See code: [src/commands/modify/fluid-imports.ts](https://github.com/microsoft/FluidFramework/blob/main/build-tools/packages/build-cli/src/commands/modify/fluid-imports.ts)_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.