@fluidframework/driver-base 2.0.0-dev.7.4.0.217212 → 2.0.0-dev.7.4.0.221926
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/CHANGELOG.md +4 -0
- package/api-extractor.json +0 -3
- package/dist/driver-base-alpha.d.ts +2 -4
- package/dist/driver-base-beta.d.ts +6 -0
- package/dist/driver-base-public.d.ts +6 -0
- package/dist/packageVersion.cjs +1 -1
- package/dist/packageVersion.cjs.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/lib/documentDeltaConnection.d.ts.map +1 -1
- package/lib/driver-base-alpha.d.ts +2 -4
- package/lib/driver-base-beta.d.ts +6 -0
- package/lib/driver-base-public.d.ts +6 -0
- package/lib/driverUtils.d.ts.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.mjs +1 -1
- package/lib/packageVersion.mjs.map +1 -1
- package/package.json +11 -21
- package/src/packageVersion.ts +1 -1
package/CHANGELOG.md
CHANGED
package/api-extractor.json
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
3
|
"extends": "../../../common/build/build-common/api-extractor-base.json",
|
|
4
|
-
"dtsRollup": {
|
|
5
|
-
"enabled": true
|
|
6
|
-
},
|
|
7
4
|
"messages": {
|
|
8
5
|
"extractorMessageReporting": {
|
|
9
6
|
// TODO: Add missing documentation and remove this rule override
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
2
3
|
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
3
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
@@ -10,17 +11,14 @@ import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
|
10
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
11
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
12
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
13
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
14
16
|
import type { Socket } from 'socket.io-client';
|
|
15
17
|
|
|
16
18
|
/* Excluded from this release type: DocumentDeltaConnection */
|
|
17
19
|
|
|
18
|
-
/* Excluded from this release type: EventEmitterWithErrorHandling */
|
|
19
|
-
|
|
20
20
|
/* Excluded from this release type: getW3CData */
|
|
21
21
|
|
|
22
|
-
/* Excluded from this release type: ITelemetryLoggerExt */
|
|
23
|
-
|
|
24
22
|
/* Excluded from this release type: promiseRaceWithWinner */
|
|
25
23
|
|
|
26
24
|
/* Excluded from this release type: validateMessages */
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
3
|
+
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
2
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
3
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
4
6
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
7
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
9
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
5
10
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
6
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
7
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
8
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
9
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
10
16
|
import type { Socket } from 'socket.io-client';
|
|
11
17
|
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
3
|
+
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
2
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
3
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
4
6
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
7
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
9
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
5
10
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
6
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
7
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
8
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
9
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
10
16
|
import type { Socket } from 'socket.io-client';
|
|
11
17
|
|
package/dist/packageVersion.cjs
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/driver-base";
|
|
11
|
-
exports.pkgVersion = "2.0.0-dev.7.4.0.
|
|
11
|
+
exports.pkgVersion = "2.0.0-dev.7.4.0.221926";
|
|
12
12
|
//# sourceMappingURL=packageVersion.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.cjs","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,wBAAwB,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/driver-base\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.cjs","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,wBAAwB,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/driver-base\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.221926\";\n"]}
|
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/driver-base";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-dev.7.4.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-dev.7.4.0.221926";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/documentDeltaConnection.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"documentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/documentDeltaConnection.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
2
3
|
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
3
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
@@ -10,17 +11,14 @@ import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
|
10
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
11
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
12
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
13
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
14
16
|
import type { Socket } from 'socket.io-client';
|
|
15
17
|
|
|
16
18
|
/* Excluded from this release type: DocumentDeltaConnection */
|
|
17
19
|
|
|
18
|
-
/* Excluded from this release type: EventEmitterWithErrorHandling */
|
|
19
|
-
|
|
20
20
|
/* Excluded from this release type: getW3CData */
|
|
21
21
|
|
|
22
|
-
/* Excluded from this release type: ITelemetryLoggerExt */
|
|
23
|
-
|
|
24
22
|
/* Excluded from this release type: promiseRaceWithWinner */
|
|
25
23
|
|
|
26
24
|
/* Excluded from this release type: validateMessages */
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
3
|
+
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
2
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
3
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
4
6
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
7
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
9
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
5
10
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
6
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
7
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
8
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
9
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
10
16
|
import type { Socket } from 'socket.io-client';
|
|
11
17
|
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
2
|
+
import { EventEmitterWithErrorHandling } from '@fluidframework/telemetry-utils';
|
|
3
|
+
import { IAnyDriverError } from '@fluidframework/driver-definitions';
|
|
2
4
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
3
5
|
import { IConnect } from '@fluidframework/protocol-definitions';
|
|
4
6
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
7
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
8
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
9
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
5
10
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
6
11
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
7
12
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
8
13
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
14
|
+
import { ITelemetryLoggerExt } from '@fluidframework/telemetry-utils';
|
|
9
15
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
10
16
|
import type { Socket } from 'socket.io-client';
|
|
11
17
|
|
package/lib/driverUtils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"driverUtils.d.ts","sourceRoot":"","sources":["../src/driverUtils.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"driverUtils.d.ts","sourceRoot":"","sources":["../src/driverUtils.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAGI,EAAE,yBAAyB,EAAE,MAAM,sCAAsC;OACzE,EAAE,mBAAmB,EAAE,MAAM,iCAAiC;AAErE;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM;;;;;;;;;EA8E5D;AAED;;;;GAIG;AACH,wBAAsB,qBAAqB,CAAC,CAAC,EAC5C,QAAQ,EAAE,OAAO,CAAC,CAAC,CAAC,EAAE,GACpB,OAAO,CAAC;IAAE,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,CAAC,CAAA;CAAE,CAAC,CAMtC;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAC/B,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,yBAAyB,EAAE,EACrC,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,mBAAmB,EAC3B,MAAM,GAAE,OAAc,QAwCtB"}
|
package/lib/index.d.ts
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { DocumentDeltaConnection } from "./documentDeltaConnection";
|
|
6
|
-
export { getW3CData, promiseRaceWithWinner, validateMessages } from "./driverUtils";
|
|
5
|
+
export { DocumentDeltaConnection } from "./documentDeltaConnection.mjs";
|
|
6
|
+
export { getW3CData, promiseRaceWithWinner, validateMessages } from "./driverUtils.mjs";
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,uBAAuB,EAAE;OAC3B,EAAE,UAAU,EAAE,qBAAqB,EAAE,gBAAgB,EAAE"}
|
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/driver-base";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-dev.7.4.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-dev.7.4.0.221926";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.mjs
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export const pkgName = "@fluidframework/driver-base";
|
|
8
|
-
export const pkgVersion = "2.0.0-dev.7.4.0.
|
|
8
|
+
export const pkgVersion = "2.0.0-dev.7.4.0.221926";
|
|
9
9
|
//# sourceMappingURL=packageVersion.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.mjs","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,6BAA6B,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAAG,wBAAwB,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/driver-base\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.mjs","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,6BAA6B,CAAC;AACrD,MAAM,CAAC,MAAM,UAAU,GAAG,wBAAwB,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/driver-base\";\nexport const pkgVersion = \"2.0.0-dev.7.4.0.221926\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/driver-base",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.221926",
|
|
4
4
|
"description": "Shared driver code for Fluid driver implementations",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -11,18 +11,6 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
13
|
"sideEffects": false,
|
|
14
|
-
"exports": {
|
|
15
|
-
".": {
|
|
16
|
-
"import": {
|
|
17
|
-
"types": "./lib/index.d.ts",
|
|
18
|
-
"default": "./lib/index.mjs"
|
|
19
|
-
},
|
|
20
|
-
"require": {
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
|
-
"default": "./dist/index.cjs"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
14
|
"main": "dist/index.cjs",
|
|
27
15
|
"module": "lib/index.mjs",
|
|
28
16
|
"types": "dist/index.d.ts",
|
|
@@ -47,24 +35,25 @@
|
|
|
47
35
|
"temp-directory": "nyc/.nyc_output"
|
|
48
36
|
},
|
|
49
37
|
"dependencies": {
|
|
50
|
-
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.
|
|
51
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.
|
|
52
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.
|
|
53
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.
|
|
54
|
-
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.
|
|
38
|
+
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.221926",
|
|
39
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.221926",
|
|
40
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.221926",
|
|
41
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.221926",
|
|
42
|
+
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.221926",
|
|
55
43
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
56
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.
|
|
44
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.221926"
|
|
57
45
|
},
|
|
58
46
|
"devDependencies": {
|
|
47
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
59
48
|
"@fluid-tools/build-cli": "^0.28.0",
|
|
60
49
|
"@fluidframework/build-common": "^2.0.3",
|
|
61
50
|
"@fluidframework/build-tools": "^0.28.0",
|
|
62
51
|
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.0.0-internal.7.2.0",
|
|
63
52
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
64
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.
|
|
53
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.221926",
|
|
65
54
|
"@microsoft/api-extractor": "^7.38.3",
|
|
66
55
|
"@types/mocha": "^9.1.1",
|
|
67
|
-
"@types/node": "^
|
|
56
|
+
"@types/node": "^18.19.0",
|
|
68
57
|
"c8": "^7.7.1",
|
|
69
58
|
"copyfiles": "^2.4.1",
|
|
70
59
|
"cross-env": "^7.0.3",
|
|
@@ -109,6 +98,7 @@
|
|
|
109
98
|
"build:esnext": "tsc-multi --config ../../../common/build/build-common/tsc-multi.esm.json",
|
|
110
99
|
"build:genver": "gen-version",
|
|
111
100
|
"build:test": "tsc-multi --config ./tsc-multi.test.json",
|
|
101
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
112
102
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
113
103
|
"ci:build:docs": "api-extractor run",
|
|
114
104
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
package/src/packageVersion.ts
CHANGED