@fluidframework/core-utils 2.0.0-dev.7.3.0.209023 → 2.0.0-dev.7.3.0.209831
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +2 -2
- package/tsconfig.esnext.json +1 -2
- package/tsconfig.json +6 -4
package/README.md
CHANGED
|
@@ -3,7 +3,12 @@
|
|
|
3
3
|
This package is intended for sharing and promoting best-practice implementations of Fluid-agnostic utility functions
|
|
4
4
|
across packages in the Fluid Framework repo.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
<!-- AUTO-GENERATED-CONTENT:START (README_PACKAGE_SCOPE_NOTICE:scopeKind=INTERNAL) -->
|
|
7
|
+
|
|
8
|
+
**IMPORTANT: This package is intended strictly as an implementation detail of the Fluid Framework and is not intended for public consumption.**
|
|
9
|
+
**We make no stability guarantees regarding its APIs.**
|
|
10
|
+
|
|
11
|
+
<!-- AUTO-GENERATED-CONTENT:END -->
|
|
7
12
|
|
|
8
13
|
## Adding code to this package
|
|
9
14
|
|
|
@@ -61,8 +66,7 @@ package for more information including tools to convert between version schemes.
|
|
|
61
66
|
|
|
62
67
|
This project may contain Microsoft trademarks or logos for Microsoft projects, products, or services.
|
|
63
68
|
|
|
64
|
-
Use of these trademarks or logos must follow Microsoft's [Trademark & Brand
|
|
65
|
-
Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
69
|
+
Use of these trademarks or logos must follow Microsoft's [Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
|
66
70
|
|
|
67
71
|
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
|
68
72
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-utils",
|
|
3
|
-
"version": "2.0.0-dev.7.3.0.
|
|
3
|
+
"version": "2.0.0-dev.7.3.0.209831",
|
|
4
4
|
"description": "Not intended for use outside the Fluid client repo.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@fluidframework/build-common": "^2.0.3",
|
|
41
41
|
"@fluidframework/build-tools": "^0.26.1",
|
|
42
42
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
43
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.3.0.
|
|
43
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.3.0.209831",
|
|
44
44
|
"@microsoft/api-extractor": "^7.37.0",
|
|
45
45
|
"@types/mocha": "^9.1.1",
|
|
46
46
|
"@types/node": "^16.18.38",
|
package/tsconfig.esnext.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends":
|
|
2
|
+
"extends": [
|
|
3
|
+
"../../../common/build/build-common/tsconfig.base.json",
|
|
4
|
+
"../../../common/build/build-common/tsconfig.cjs.json",
|
|
5
|
+
],
|
|
6
|
+
"include": ["src/**/*"],
|
|
7
|
+
"exclude": ["src/test/**/*"],
|
|
3
8
|
"compilerOptions": {
|
|
4
9
|
"rootDir": "./src",
|
|
5
10
|
"outDir": "./dist",
|
|
6
|
-
"composite": true,
|
|
7
11
|
},
|
|
8
|
-
"include": ["src/**/*"],
|
|
9
|
-
"exclude": ["src/test/**/*"],
|
|
10
12
|
}
|