@fluidframework/test-utils 2.0.0-rc.5.0.0 → 2.1.0-274160
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/api-extractor/api-extractor.legacy.json +4 -0
- package/api-report/test-utils.alpha.api.md +0 -52
- package/api-report/test-utils.beta.api.md +0 -52
- package/api-report/test-utils.public.api.md +0 -52
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.d.ts.map +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.d.ts.map +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +30 -39
- package/src/packageVersion.ts +1 -1
|
@@ -4,58 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
import { ConfigTypes } from '@fluidframework/core-interfaces';
|
|
8
|
-
import { ContainerRuntime } from '@fluidframework/container-runtime/internal';
|
|
9
|
-
import { ContainerRuntimeFactoryWithDefaultDataStore } from '@fluidframework/aqueduct/internal';
|
|
10
|
-
import { FluidDataStoreRuntime } from '@fluidframework/datastore/internal';
|
|
11
|
-
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
12
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions/internal';
|
|
13
|
-
import { ICodeDetailsLoader } from '@fluidframework/container-definitions/internal';
|
|
14
|
-
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
15
|
-
import { IContainer } from '@fluidframework/container-definitions/internal';
|
|
16
|
-
import { IContainerContext } from '@fluidframework/container-definitions/internal';
|
|
17
|
-
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
|
|
18
|
-
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime/internal';
|
|
19
|
-
import { IDataStore } from '@fluidframework/runtime-definitions/internal';
|
|
20
|
-
import { IDocumentService } from '@fluidframework/driver-definitions/internal';
|
|
21
|
-
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions/internal';
|
|
22
|
-
import { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
23
|
-
import { IFluidCodeDetails } from '@fluidframework/container-definitions/internal';
|
|
24
|
-
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
25
|
-
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
26
|
-
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
27
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions/internal';
|
|
28
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
29
|
-
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
30
|
-
import { IFluidModule } from '@fluidframework/container-definitions/internal';
|
|
31
|
-
import { IFluidModuleWithDetails } from '@fluidframework/container-definitions/internal';
|
|
32
|
-
import { IHostLoader } from '@fluidframework/container-definitions/internal';
|
|
33
|
-
import { ILoaderOptions } from '@fluidframework/container-definitions/internal';
|
|
34
|
-
import { ILoaderProps } from '@fluidframework/container-loader/internal';
|
|
35
|
-
import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime/internal';
|
|
36
|
-
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions/internal';
|
|
37
|
-
import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
38
|
-
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
39
|
-
import { IProvideRuntimeFactory } from '@fluidframework/container-definitions/internal';
|
|
40
|
-
import { IRequest } from '@fluidframework/core-interfaces';
|
|
41
|
-
import { IRequestHeader } from '@fluidframework/core-interfaces';
|
|
42
|
-
import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
|
|
43
|
-
import { IResponse } from '@fluidframework/core-interfaces';
|
|
44
|
-
import { IRuntime } from '@fluidframework/container-definitions/internal';
|
|
45
|
-
import { ISharedMap } from '@fluidframework/map/internal';
|
|
46
|
-
import { ISummarizer } from '@fluidframework/container-runtime/internal';
|
|
47
|
-
import { ISummaryContext } from '@fluidframework/driver-definitions/internal';
|
|
48
|
-
import { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
49
|
-
import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
|
|
50
|
-
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
51
|
-
import { ITelemetryGenericEventExt } from '@fluidframework/telemetry-utils/internal';
|
|
52
|
-
import { ITelemetryLoggerPropertyBags } from '@fluidframework/telemetry-utils/internal';
|
|
53
|
-
import { ITestDriver } from '@fluid-internal/test-driver-definitions';
|
|
54
|
-
import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
|
|
55
|
-
import { Loader } from '@fluidframework/container-loader/internal';
|
|
56
|
-
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions/internal';
|
|
57
|
-
import { RuntimeRequestHandler } from '@fluidframework/request-handler/internal';
|
|
58
|
-
|
|
59
7
|
// @alpha
|
|
60
8
|
export function createAndAttachContainer(source: IFluidCodeDetails, loader: IHostLoader, attachRequest: IRequest): Promise<IContainer>;
|
|
61
9
|
|
|
@@ -4,58 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
import { ConfigTypes } from '@fluidframework/core-interfaces';
|
|
8
|
-
import { ContainerRuntime } from '@fluidframework/container-runtime/internal';
|
|
9
|
-
import { ContainerRuntimeFactoryWithDefaultDataStore } from '@fluidframework/aqueduct/internal';
|
|
10
|
-
import { FluidDataStoreRuntime } from '@fluidframework/datastore/internal';
|
|
11
|
-
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
12
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions/internal';
|
|
13
|
-
import { ICodeDetailsLoader } from '@fluidframework/container-definitions/internal';
|
|
14
|
-
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
15
|
-
import { IContainer } from '@fluidframework/container-definitions/internal';
|
|
16
|
-
import { IContainerContext } from '@fluidframework/container-definitions/internal';
|
|
17
|
-
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
|
|
18
|
-
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime/internal';
|
|
19
|
-
import { IDataStore } from '@fluidframework/runtime-definitions/internal';
|
|
20
|
-
import { IDocumentService } from '@fluidframework/driver-definitions/internal';
|
|
21
|
-
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions/internal';
|
|
22
|
-
import { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
23
|
-
import { IFluidCodeDetails } from '@fluidframework/container-definitions/internal';
|
|
24
|
-
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
25
|
-
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
26
|
-
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
27
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions/internal';
|
|
28
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
29
|
-
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
30
|
-
import { IFluidModule } from '@fluidframework/container-definitions/internal';
|
|
31
|
-
import { IFluidModuleWithDetails } from '@fluidframework/container-definitions/internal';
|
|
32
|
-
import { IHostLoader } from '@fluidframework/container-definitions/internal';
|
|
33
|
-
import { ILoaderOptions } from '@fluidframework/container-definitions/internal';
|
|
34
|
-
import { ILoaderProps } from '@fluidframework/container-loader/internal';
|
|
35
|
-
import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime/internal';
|
|
36
|
-
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions/internal';
|
|
37
|
-
import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
38
|
-
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
39
|
-
import { IProvideRuntimeFactory } from '@fluidframework/container-definitions/internal';
|
|
40
|
-
import { IRequest } from '@fluidframework/core-interfaces';
|
|
41
|
-
import { IRequestHeader } from '@fluidframework/core-interfaces';
|
|
42
|
-
import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
|
|
43
|
-
import { IResponse } from '@fluidframework/core-interfaces';
|
|
44
|
-
import { IRuntime } from '@fluidframework/container-definitions/internal';
|
|
45
|
-
import { ISharedMap } from '@fluidframework/map/internal';
|
|
46
|
-
import { ISummarizer } from '@fluidframework/container-runtime/internal';
|
|
47
|
-
import { ISummaryContext } from '@fluidframework/driver-definitions/internal';
|
|
48
|
-
import { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
49
|
-
import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
|
|
50
|
-
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
51
|
-
import { ITelemetryGenericEventExt } from '@fluidframework/telemetry-utils/internal';
|
|
52
|
-
import { ITelemetryLoggerPropertyBags } from '@fluidframework/telemetry-utils/internal';
|
|
53
|
-
import { ITestDriver } from '@fluid-internal/test-driver-definitions';
|
|
54
|
-
import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
|
|
55
|
-
import { Loader } from '@fluidframework/container-loader/internal';
|
|
56
|
-
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions/internal';
|
|
57
|
-
import { RuntimeRequestHandler } from '@fluidframework/request-handler/internal';
|
|
58
|
-
|
|
59
7
|
// (No @packageDocumentation comment for this package)
|
|
60
8
|
|
|
61
9
|
```
|
|
@@ -4,58 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
```ts
|
|
6
6
|
|
|
7
|
-
import { ConfigTypes } from '@fluidframework/core-interfaces';
|
|
8
|
-
import { ContainerRuntime } from '@fluidframework/container-runtime/internal';
|
|
9
|
-
import { ContainerRuntimeFactoryWithDefaultDataStore } from '@fluidframework/aqueduct/internal';
|
|
10
|
-
import { FluidDataStoreRuntime } from '@fluidframework/datastore/internal';
|
|
11
|
-
import { FluidObject } from '@fluidframework/core-interfaces';
|
|
12
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions/internal';
|
|
13
|
-
import { ICodeDetailsLoader } from '@fluidframework/container-definitions/internal';
|
|
14
|
-
import { IConfigProviderBase } from '@fluidframework/core-interfaces';
|
|
15
|
-
import { IContainer } from '@fluidframework/container-definitions/internal';
|
|
16
|
-
import { IContainerContext } from '@fluidframework/container-definitions/internal';
|
|
17
|
-
import { IContainerRuntime } from '@fluidframework/container-runtime-definitions/internal';
|
|
18
|
-
import { IContainerRuntimeOptions } from '@fluidframework/container-runtime/internal';
|
|
19
|
-
import { IDataStore } from '@fluidframework/runtime-definitions/internal';
|
|
20
|
-
import { IDocumentService } from '@fluidframework/driver-definitions/internal';
|
|
21
|
-
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions/internal';
|
|
22
|
-
import { IDocumentStorageService } from '@fluidframework/driver-definitions/internal';
|
|
23
|
-
import { IFluidCodeDetails } from '@fluidframework/container-definitions/internal';
|
|
24
|
-
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
25
|
-
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
26
|
-
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
27
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions/internal';
|
|
28
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
29
|
-
import { IFluidLoadable } from '@fluidframework/core-interfaces';
|
|
30
|
-
import { IFluidModule } from '@fluidframework/container-definitions/internal';
|
|
31
|
-
import { IFluidModuleWithDetails } from '@fluidframework/container-definitions/internal';
|
|
32
|
-
import { IHostLoader } from '@fluidframework/container-definitions/internal';
|
|
33
|
-
import { ILoaderOptions } from '@fluidframework/container-definitions/internal';
|
|
34
|
-
import { ILoaderProps } from '@fluidframework/container-loader/internal';
|
|
35
|
-
import { IOnDemandSummarizeOptions } from '@fluidframework/container-runtime/internal';
|
|
36
|
-
import { IProvideFluidCodeDetailsComparer } from '@fluidframework/container-definitions/internal';
|
|
37
|
-
import { IProvideFluidDataStoreFactory } from '@fluidframework/runtime-definitions/internal';
|
|
38
|
-
import { IProvideFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
39
|
-
import { IProvideRuntimeFactory } from '@fluidframework/container-definitions/internal';
|
|
40
|
-
import { IRequest } from '@fluidframework/core-interfaces';
|
|
41
|
-
import { IRequestHeader } from '@fluidframework/core-interfaces';
|
|
42
|
-
import { IResolvedUrl } from '@fluidframework/driver-definitions/internal';
|
|
43
|
-
import { IResponse } from '@fluidframework/core-interfaces';
|
|
44
|
-
import { IRuntime } from '@fluidframework/container-definitions/internal';
|
|
45
|
-
import { ISharedMap } from '@fluidframework/map/internal';
|
|
46
|
-
import { ISummarizer } from '@fluidframework/container-runtime/internal';
|
|
47
|
-
import { ISummaryContext } from '@fluidframework/driver-definitions/internal';
|
|
48
|
-
import { ISummaryTree } from '@fluidframework/driver-definitions';
|
|
49
|
-
import { ITelemetryBaseEvent } from '@fluidframework/core-interfaces';
|
|
50
|
-
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
51
|
-
import { ITelemetryGenericEventExt } from '@fluidframework/telemetry-utils/internal';
|
|
52
|
-
import { ITelemetryLoggerPropertyBags } from '@fluidframework/telemetry-utils/internal';
|
|
53
|
-
import { ITestDriver } from '@fluid-internal/test-driver-definitions';
|
|
54
|
-
import { IUrlResolver } from '@fluidframework/driver-definitions/internal';
|
|
55
|
-
import { Loader } from '@fluidframework/container-loader/internal';
|
|
56
|
-
import { NamedFluidDataStoreRegistryEntries } from '@fluidframework/runtime-definitions/internal';
|
|
57
|
-
import { RuntimeRequestHandler } from '@fluidframework/request-handler/internal';
|
|
58
|
-
|
|
59
7
|
// (No @packageDocumentation comment for this package)
|
|
60
8
|
|
|
61
9
|
```
|
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/test-utils";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.1.0-274160";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,+BAA+B,CAAC;AACpD,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,+BAA+B,CAAC;AACpD,eAAO,MAAM,UAAU,iBAAiB,CAAC"}
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/test-utils";
|
|
11
|
-
exports.pkgVersion = "2.
|
|
11
|
+
exports.pkgVersion = "2.1.0-274160";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,4BAA4B,CAAC;AACvC,QAAA,UAAU,GAAG,
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,4BAA4B,CAAC;AACvC,QAAA,UAAU,GAAG,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/test-utils\";\nexport const pkgVersion = \"2.1.0-274160\";\n"]}
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/test-utils";
|
|
8
|
-
export declare const pkgVersion = "2.
|
|
8
|
+
export declare const pkgVersion = "2.1.0-274160";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,+BAA+B,CAAC;AACpD,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,+BAA+B,CAAC;AACpD,eAAO,MAAM,UAAU,iBAAiB,CAAC"}
|
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,4BAA4B,CAAC;AACpD,MAAM,CAAC,MAAM,UAAU,GAAG,
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,4BAA4B,CAAC;AACpD,MAAM,CAAC,MAAM,UAAU,GAAG,cAAc,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/test-utils\";\nexport const pkgVersion = \"2.1.0-274160\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/test-utils",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0-274160",
|
|
4
4
|
"description": "Utilities for Fluid tests",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -67,25 +67,25 @@
|
|
|
67
67
|
"temp-directory": "nyc/.nyc_output"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@fluid-internal/test-driver-definitions": "
|
|
71
|
-
"@fluidframework/aqueduct": "
|
|
72
|
-
"@fluidframework/container-definitions": "
|
|
73
|
-
"@fluidframework/container-loader": "
|
|
74
|
-
"@fluidframework/container-runtime": "
|
|
75
|
-
"@fluidframework/container-runtime-definitions": "
|
|
76
|
-
"@fluidframework/core-interfaces": "
|
|
77
|
-
"@fluidframework/core-utils": "
|
|
78
|
-
"@fluidframework/datastore": "
|
|
79
|
-
"@fluidframework/datastore-definitions": "
|
|
80
|
-
"@fluidframework/driver-definitions": "
|
|
81
|
-
"@fluidframework/driver-utils": "
|
|
82
|
-
"@fluidframework/local-driver": "
|
|
83
|
-
"@fluidframework/map": "
|
|
84
|
-
"@fluidframework/request-handler": "
|
|
85
|
-
"@fluidframework/routerlicious-driver": "
|
|
86
|
-
"@fluidframework/runtime-definitions": "
|
|
87
|
-
"@fluidframework/runtime-utils": "
|
|
88
|
-
"@fluidframework/telemetry-utils": "
|
|
70
|
+
"@fluid-internal/test-driver-definitions": "2.1.0-274160",
|
|
71
|
+
"@fluidframework/aqueduct": "2.1.0-274160",
|
|
72
|
+
"@fluidframework/container-definitions": "2.1.0-274160",
|
|
73
|
+
"@fluidframework/container-loader": "2.1.0-274160",
|
|
74
|
+
"@fluidframework/container-runtime": "2.1.0-274160",
|
|
75
|
+
"@fluidframework/container-runtime-definitions": "2.1.0-274160",
|
|
76
|
+
"@fluidframework/core-interfaces": "2.1.0-274160",
|
|
77
|
+
"@fluidframework/core-utils": "2.1.0-274160",
|
|
78
|
+
"@fluidframework/datastore": "2.1.0-274160",
|
|
79
|
+
"@fluidframework/datastore-definitions": "2.1.0-274160",
|
|
80
|
+
"@fluidframework/driver-definitions": "2.1.0-274160",
|
|
81
|
+
"@fluidframework/driver-utils": "2.1.0-274160",
|
|
82
|
+
"@fluidframework/local-driver": "2.1.0-274160",
|
|
83
|
+
"@fluidframework/map": "2.1.0-274160",
|
|
84
|
+
"@fluidframework/request-handler": "2.1.0-274160",
|
|
85
|
+
"@fluidframework/routerlicious-driver": "2.1.0-274160",
|
|
86
|
+
"@fluidframework/runtime-definitions": "2.1.0-274160",
|
|
87
|
+
"@fluidframework/runtime-utils": "2.1.0-274160",
|
|
88
|
+
"@fluidframework/telemetry-utils": "2.1.0-274160",
|
|
89
89
|
"best-random": "^1.0.0",
|
|
90
90
|
"debug": "^4.3.4",
|
|
91
91
|
"mocha": "^10.2.0",
|
|
@@ -94,12 +94,12 @@
|
|
|
94
94
|
"devDependencies": {
|
|
95
95
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
96
96
|
"@biomejs/biome": "^1.7.3",
|
|
97
|
-
"@fluid-internal/mocha-test-setup": "
|
|
97
|
+
"@fluid-internal/mocha-test-setup": "2.1.0-274160",
|
|
98
98
|
"@fluid-tools/build-cli": "^0.39.0",
|
|
99
99
|
"@fluidframework/build-common": "^2.0.3",
|
|
100
100
|
"@fluidframework/build-tools": "^0.39.0",
|
|
101
101
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
102
|
-
"@fluidframework/test-utils-previous": "npm:@fluidframework/test-utils@2.0.0-rc.
|
|
102
|
+
"@fluidframework/test-utils-previous": "npm:@fluidframework/test-utils@2.0.0-rc.5.0.0",
|
|
103
103
|
"@microsoft/api-extractor": "^7.45.1",
|
|
104
104
|
"@types/debug": "^4.1.5",
|
|
105
105
|
"@types/diff": "^3.5.1",
|
|
@@ -120,20 +120,7 @@
|
|
|
120
120
|
"typescript": "~5.4.5"
|
|
121
121
|
},
|
|
122
122
|
"typeValidation": {
|
|
123
|
-
"broken": {
|
|
124
|
-
"InterfaceDeclaration_IProvideTestFluidObject": {
|
|
125
|
-
"forwardCompat": false,
|
|
126
|
-
"backCompat": false
|
|
127
|
-
},
|
|
128
|
-
"InterfaceDeclaration_ITestFluidObject": {
|
|
129
|
-
"forwardCompat": false,
|
|
130
|
-
"backCompat": false
|
|
131
|
-
},
|
|
132
|
-
"ClassDeclaration_TestFluidObject": {
|
|
133
|
-
"forwardCompat": false,
|
|
134
|
-
"backCompat": false
|
|
135
|
-
}
|
|
136
|
-
}
|
|
123
|
+
"broken": {}
|
|
137
124
|
},
|
|
138
125
|
"scripts": {
|
|
139
126
|
"api": "fluid-build . --task api",
|
|
@@ -142,7 +129,9 @@
|
|
|
142
129
|
"build": "fluid-build . --task build",
|
|
143
130
|
"build:compile": "fluid-build . --task compile",
|
|
144
131
|
"build:compile:min": "npm run build:compile",
|
|
145
|
-
"build:docs": "
|
|
132
|
+
"build:docs": "concurrently \"npm:build:docs:*\"",
|
|
133
|
+
"build:docs:current": "api-extractor run --local",
|
|
134
|
+
"build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
|
|
146
135
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
147
136
|
"build:genver": "gen-version",
|
|
148
137
|
"build:test": "npm run build:test:esm && npm run build:test:cjs",
|
|
@@ -158,7 +147,9 @@
|
|
|
158
147
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
159
148
|
"check:format": "npm run check:biome",
|
|
160
149
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
161
|
-
"ci:build:docs": "
|
|
150
|
+
"ci:build:docs": "concurrently \"npm:ci:build:docs:*\"",
|
|
151
|
+
"ci:build:docs:current": "api-extractor run",
|
|
152
|
+
"ci:build:docs:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
162
153
|
"clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
163
154
|
"eslint": "eslint --format stylish src",
|
|
164
155
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
@@ -173,7 +164,7 @@
|
|
|
173
164
|
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
|
|
174
165
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
175
166
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
176
|
-
"typetests:gen": "flub generate typetests --dir . -v
|
|
167
|
+
"typetests:gen": "flub generate typetests --dir . -v",
|
|
177
168
|
"typetests:prepare": "flub typetests --dir . --reset --previous --normalize"
|
|
178
169
|
}
|
|
179
170
|
}
|
package/src/packageVersion.ts
CHANGED