@fluid-experimental/property-dds 2.0.0-internal.7.0.0 → 2.0.0-internal.7.2.0
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 +8 -0
- package/api-extractor.json +10 -1
- package/api-report/property-dds.api.md +276 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +27 -28
package/CHANGELOG.md
CHANGED
package/api-extractor.json
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "@fluidframework/build-common/api-extractor-
|
|
3
|
+
"extends": "@fluidframework/build-common/api-extractor-base.json",
|
|
4
|
+
|
|
5
|
+
// TODO: Fix violations and remove these rule overrides
|
|
6
|
+
"messages": {
|
|
7
|
+
"extractorMessageReporting": {
|
|
8
|
+
"ae-missing-release-tag": {
|
|
9
|
+
"logLevel": "none"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
4
13
|
}
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
## API Report File for "@fluid-experimental/property-dds"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
/// <reference types="node" />
|
|
8
|
+
|
|
9
|
+
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
10
|
+
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
11
|
+
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
12
|
+
import { IChannelStorageService } from '@fluidframework/datastore-definitions';
|
|
13
|
+
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
14
|
+
import { IFluidSerializer } from '@fluidframework/shared-object-base';
|
|
15
|
+
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
16
|
+
import { ISummaryTreeWithStats } from '@fluidframework/runtime-definitions';
|
|
17
|
+
import { NodeProperty } from '@fluid-experimental/property-properties';
|
|
18
|
+
import { SharedObject } from '@fluidframework/shared-object-base';
|
|
19
|
+
|
|
20
|
+
// @public (undocumented)
|
|
21
|
+
export abstract class CompressedPropertyTreeFactory implements IChannelFactory {
|
|
22
|
+
// (undocumented)
|
|
23
|
+
abstract get attributes(): any;
|
|
24
|
+
// (undocumented)
|
|
25
|
+
create(document: IFluidDataStoreRuntime, id: string, requestUrl?: string): SharedPropertyTree;
|
|
26
|
+
// (undocumented)
|
|
27
|
+
abstract getDecodeFce(): any;
|
|
28
|
+
// (undocumented)
|
|
29
|
+
getEncDec(): ISharedPropertyTreeEncDec;
|
|
30
|
+
// (undocumented)
|
|
31
|
+
abstract getEncodeFce(): any;
|
|
32
|
+
// (undocumented)
|
|
33
|
+
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes, url?: string): Promise<SharedPropertyTree>;
|
|
34
|
+
// (undocumented)
|
|
35
|
+
abstract newPropertyTree(id: string, runtime: IFluidDataStoreRuntime, attributes: IChannelAttributes, options: SharedPropertyTreeOptions, propertyTreeConfig: IPropertyTreeConfig): SharedPropertyTree;
|
|
36
|
+
// (undocumented)
|
|
37
|
+
abstract get type(): any;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// @public
|
|
41
|
+
export class DeflatedPropertyTree extends SharedPropertyTree {
|
|
42
|
+
// (undocumented)
|
|
43
|
+
static create(runtime: IFluidDataStoreRuntime, id?: string, queryString?: string): DeflatedPropertyTree;
|
|
44
|
+
// (undocumented)
|
|
45
|
+
static getFactory(): IChannelFactory;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// @public (undocumented)
|
|
49
|
+
export class DeflatedPropertyTreeFactory extends CompressedPropertyTreeFactory {
|
|
50
|
+
// (undocumented)
|
|
51
|
+
static readonly Attributes: IChannelAttributes;
|
|
52
|
+
// (undocumented)
|
|
53
|
+
get attributes(): IChannelAttributes;
|
|
54
|
+
// (undocumented)
|
|
55
|
+
create(document: IFluidDataStoreRuntime, id: string, requestUrl?: string): DeflatedPropertyTree;
|
|
56
|
+
// (undocumented)
|
|
57
|
+
getDecodeFce(): any;
|
|
58
|
+
// (undocumented)
|
|
59
|
+
getEncodeFce(): any;
|
|
60
|
+
// (undocumented)
|
|
61
|
+
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes, url?: string): Promise<DeflatedPropertyTree>;
|
|
62
|
+
// (undocumented)
|
|
63
|
+
newPropertyTree(id: string, runtime: IFluidDataStoreRuntime, attributes: IChannelAttributes, options: SharedPropertyTreeOptions, propertyTreeConfig: IPropertyTreeConfig): SharedPropertyTree;
|
|
64
|
+
// (undocumented)
|
|
65
|
+
static readonly Type = "DeflatedPropertyTree:84534a0fe613522101f6";
|
|
66
|
+
// (undocumented)
|
|
67
|
+
get type(): string;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public (undocumented)
|
|
71
|
+
export interface IPropertyTreeConfig {
|
|
72
|
+
// (undocumented)
|
|
73
|
+
encDec: ISharedPropertyTreeEncDec;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// @public (undocumented)
|
|
77
|
+
export interface IPropertyTreeMessage {
|
|
78
|
+
// (undocumented)
|
|
79
|
+
changeSet: SerializedChangeSet;
|
|
80
|
+
// (undocumented)
|
|
81
|
+
guid: string;
|
|
82
|
+
// (undocumented)
|
|
83
|
+
localBranchStart: string | undefined;
|
|
84
|
+
// (undocumented)
|
|
85
|
+
metadata: Metadata;
|
|
86
|
+
// (undocumented)
|
|
87
|
+
op: OpKind;
|
|
88
|
+
// (undocumented)
|
|
89
|
+
rebaseMetaInformation?: Map<any, any>;
|
|
90
|
+
// (undocumented)
|
|
91
|
+
referenceGuid: string;
|
|
92
|
+
// (undocumented)
|
|
93
|
+
remoteHeadGuid: string;
|
|
94
|
+
// (undocumented)
|
|
95
|
+
useMH?: boolean;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// @public (undocumented)
|
|
99
|
+
export interface IRemotePropertyTreeMessage extends IPropertyTreeMessage {
|
|
100
|
+
// (undocumented)
|
|
101
|
+
sequenceNumber: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// @public (undocumented)
|
|
105
|
+
export interface ISharedPropertyTreeEncDec {
|
|
106
|
+
// (undocumented)
|
|
107
|
+
messageEncoder: {
|
|
108
|
+
encode: (IPropertyTreeMessage: any) => IPropertyTreeMessage;
|
|
109
|
+
decode: (IPropertyTreeMessage: any) => IPropertyTreeMessage;
|
|
110
|
+
};
|
|
111
|
+
// (undocumented)
|
|
112
|
+
summaryEncoder: {
|
|
113
|
+
encode: (ISnapshotSummary: any) => Buffer;
|
|
114
|
+
decode: (Buffer: any) => ISnapshotSummary;
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public (undocumented)
|
|
119
|
+
export interface ISnapshotSummary {
|
|
120
|
+
// (undocumented)
|
|
121
|
+
remoteChanges?: IPropertyTreeMessage[];
|
|
122
|
+
// (undocumented)
|
|
123
|
+
remoteHeadGuid: string;
|
|
124
|
+
// (undocumented)
|
|
125
|
+
remoteTipView?: SerializedChangeSet;
|
|
126
|
+
// (undocumented)
|
|
127
|
+
unrebasedRemoteChanges?: Record<string, IRemotePropertyTreeMessage>;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// @public (undocumented)
|
|
131
|
+
export class LZ4PropertyTree extends SharedPropertyTree {
|
|
132
|
+
// (undocumented)
|
|
133
|
+
static create(runtime: IFluidDataStoreRuntime, id?: string, queryString?: string): LZ4PropertyTree;
|
|
134
|
+
// (undocumented)
|
|
135
|
+
static getFactory(): IChannelFactory;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// @public (undocumented)
|
|
139
|
+
export class LZ4PropertyTreeFactory extends CompressedPropertyTreeFactory {
|
|
140
|
+
// (undocumented)
|
|
141
|
+
static readonly Attributes: IChannelAttributes;
|
|
142
|
+
// (undocumented)
|
|
143
|
+
get attributes(): IChannelAttributes;
|
|
144
|
+
// (undocumented)
|
|
145
|
+
create(document: IFluidDataStoreRuntime, id: string, requestUrl?: string): LZ4PropertyTree;
|
|
146
|
+
// (undocumented)
|
|
147
|
+
getDecodeFce(): any;
|
|
148
|
+
// (undocumented)
|
|
149
|
+
getEncodeFce(): any;
|
|
150
|
+
// (undocumented)
|
|
151
|
+
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes, url?: string): Promise<LZ4PropertyTree>;
|
|
152
|
+
// (undocumented)
|
|
153
|
+
newPropertyTree(id: string, runtime: IFluidDataStoreRuntime, attributes: IChannelAttributes, options: SharedPropertyTreeOptions, propertyTreeConfig: IPropertyTreeConfig): SharedPropertyTree;
|
|
154
|
+
// (undocumented)
|
|
155
|
+
static readonly Type = "LZ4PropertyTree:84534a0fe613522101f6";
|
|
156
|
+
// (undocumented)
|
|
157
|
+
get type(): string;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
// @public (undocumented)
|
|
161
|
+
export type Metadata = any;
|
|
162
|
+
|
|
163
|
+
// @public (undocumented)
|
|
164
|
+
export const enum OpKind {
|
|
165
|
+
// (undocumented)
|
|
166
|
+
ChangeSet = 0
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// @public
|
|
170
|
+
export class PropertyTreeFactory implements IChannelFactory {
|
|
171
|
+
// (undocumented)
|
|
172
|
+
static readonly Attributes: IChannelAttributes;
|
|
173
|
+
// (undocumented)
|
|
174
|
+
get attributes(): IChannelAttributes;
|
|
175
|
+
// (undocumented)
|
|
176
|
+
create(document: IFluidDataStoreRuntime, id: string, requestUrl?: string): SharedPropertyTree;
|
|
177
|
+
// (undocumented)
|
|
178
|
+
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes, url?: string): Promise<SharedPropertyTree>;
|
|
179
|
+
// (undocumented)
|
|
180
|
+
static readonly Type = "PropertyTree:01EP5J4Y6C284JR6ATVPPHRJ4E";
|
|
181
|
+
// (undocumented)
|
|
182
|
+
get type(): string;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
// @public (undocumented)
|
|
186
|
+
export type SerializedChangeSet = any;
|
|
187
|
+
|
|
188
|
+
// @public
|
|
189
|
+
export class SharedPropertyTree extends SharedObject {
|
|
190
|
+
constructor(id: string, runtime: IFluidDataStoreRuntime, attributes: IChannelAttributes, options: SharedPropertyTreeOptions, propertyTreeConfig?: IPropertyTreeConfig);
|
|
191
|
+
// (undocumented)
|
|
192
|
+
get activeCommit(): IPropertyTreeMessage;
|
|
193
|
+
// (undocumented)
|
|
194
|
+
protected applyStashedOp(): void;
|
|
195
|
+
// (undocumented)
|
|
196
|
+
get changeSet(): SerializedChangeSet;
|
|
197
|
+
// (undocumented)
|
|
198
|
+
commit(metadata?: Metadata, submitEmptyChange?: boolean): void;
|
|
199
|
+
static create(runtime: IFluidDataStoreRuntime, id?: string, queryString?: string): SharedPropertyTree;
|
|
200
|
+
// (undocumented)
|
|
201
|
+
enqueuedMessages: IPropertyTreeMessage[];
|
|
202
|
+
static getFactory(): IChannelFactory;
|
|
203
|
+
// (undocumented)
|
|
204
|
+
getRebasedChanges(startGuid: string, endGuid?: string): IPropertyTreeMessage[];
|
|
205
|
+
// (undocumented)
|
|
206
|
+
getUnrebasedChange(guid: string): IRemotePropertyTreeMessage;
|
|
207
|
+
// (undocumented)
|
|
208
|
+
headCommitGuid: string;
|
|
209
|
+
// (undocumented)
|
|
210
|
+
protected loadCore(storage: IChannelStorageService): Promise<void>;
|
|
211
|
+
// (undocumented)
|
|
212
|
+
localChanges: IPropertyTreeMessage[];
|
|
213
|
+
protected logIfEnabled(message: any): void;
|
|
214
|
+
// (undocumented)
|
|
215
|
+
notificationDelayScope: number;
|
|
216
|
+
protected onConnect(): void;
|
|
217
|
+
// (undocumented)
|
|
218
|
+
protected onDisconnect(): void;
|
|
219
|
+
// (undocumented)
|
|
220
|
+
options: SharedPropertyTreeOptions;
|
|
221
|
+
popNotificationDelayScope(): void;
|
|
222
|
+
protected processCore(message: ISequencedDocumentMessage, local: boolean, localOpMetadata: unknown): void;
|
|
223
|
+
// (undocumented)
|
|
224
|
+
propertyTreeConfig: IPropertyTreeConfig;
|
|
225
|
+
// (undocumented)
|
|
226
|
+
static prune(minimumSequenceNumber: number, remoteChanges: IPropertyTreeMessage[], unrebasedRemoteChanges: Record<string, IRemotePropertyTreeMessage>): {
|
|
227
|
+
remoteChanges: IPropertyTreeMessage[];
|
|
228
|
+
unrebasedRemoteChanges: Record<string, IRemotePropertyTreeMessage>;
|
|
229
|
+
prunedCount: number;
|
|
230
|
+
};
|
|
231
|
+
// (undocumented)
|
|
232
|
+
pruneHistory(): void;
|
|
233
|
+
pushNotificationDelayScope(): void;
|
|
234
|
+
// (undocumented)
|
|
235
|
+
remoteChanges: IPropertyTreeMessage[];
|
|
236
|
+
// (undocumented)
|
|
237
|
+
remoteTipView: SerializedChangeSet;
|
|
238
|
+
// (undocumented)
|
|
239
|
+
_reportDirtinessToView(): void;
|
|
240
|
+
// (undocumented)
|
|
241
|
+
protected reSubmitCore(content: any, localOpMetadata: unknown): void;
|
|
242
|
+
// (undocumented)
|
|
243
|
+
get root(): NodeProperty;
|
|
244
|
+
// (undocumented)
|
|
245
|
+
_root: any;
|
|
246
|
+
// (undocumented)
|
|
247
|
+
skipSequenceNumber: number;
|
|
248
|
+
// (undocumented)
|
|
249
|
+
stopTransmission(stop: boolean): void;
|
|
250
|
+
// (undocumented)
|
|
251
|
+
summarizeCore(serializer: IFluidSerializer): ISummaryTreeWithStats;
|
|
252
|
+
// (undocumented)
|
|
253
|
+
tipView: SerializedChangeSet;
|
|
254
|
+
// (undocumented)
|
|
255
|
+
transmissionsHaveBeenStopped: boolean;
|
|
256
|
+
// (undocumented)
|
|
257
|
+
unrebasedRemoteChanges: Record<string, IRemotePropertyTreeMessage>;
|
|
258
|
+
// (undocumented)
|
|
259
|
+
useMH: boolean;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
// @public (undocumented)
|
|
263
|
+
export interface SharedPropertyTreeOptions {
|
|
264
|
+
// (undocumented)
|
|
265
|
+
clientFiltering?: boolean;
|
|
266
|
+
// (undocumented)
|
|
267
|
+
disablePartialCheckout?: boolean;
|
|
268
|
+
// (undocumented)
|
|
269
|
+
paths?: string[];
|
|
270
|
+
// (undocumented)
|
|
271
|
+
useMH?: boolean;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// (No @packageDocumentation comment for this package)
|
|
275
|
+
|
|
276
|
+
```
|
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/property-dds",
|
|
3
|
-
"version": "2.0.0-internal.7.
|
|
3
|
+
"version": "2.0.0-internal.7.2.0",
|
|
4
4
|
"description": "definition of the property distributed data store",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
"module": "lib/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fluid-experimental/property-changeset": ">=2.0.0-internal.7.
|
|
19
|
-
"@fluid-experimental/property-properties": ">=2.0.0-internal.7.
|
|
20
|
-
"@fluid-internal/client-utils": ">=2.0.0-internal.7.
|
|
21
|
-
"@fluidframework/container-definitions": ">=2.0.0-internal.7.
|
|
22
|
-
"@fluidframework/core-interfaces": ">=2.0.0-internal.7.
|
|
23
|
-
"@fluidframework/datastore-definitions": ">=2.0.0-internal.7.
|
|
18
|
+
"@fluid-experimental/property-changeset": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
19
|
+
"@fluid-experimental/property-properties": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
20
|
+
"@fluid-internal/client-utils": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
21
|
+
"@fluidframework/container-definitions": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
22
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
23
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
24
24
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
25
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-internal.7.
|
|
26
|
-
"@fluidframework/runtime-utils": ">=2.0.0-internal.7.
|
|
27
|
-
"@fluidframework/shared-object-base": ">=2.0.0-internal.7.
|
|
25
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
26
|
+
"@fluidframework/runtime-utils": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
27
|
+
"@fluidframework/shared-object-base": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
28
28
|
"axios": "^0.26.0",
|
|
29
29
|
"buffer": "^6.0.3",
|
|
30
30
|
"fastest-json-copy": "^1.0.1",
|
|
@@ -35,34 +35,33 @@
|
|
|
35
35
|
"uuid": "^9.0.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@fluid-experimental/property-common": ">=2.0.0-internal.7.
|
|
39
|
-
"@fluid-internal/test-drivers": ">=2.0.0-internal.7.
|
|
40
|
-
"@fluidframework/build-common": "^2.0.
|
|
41
|
-
"@fluidframework/build-tools": "^0.
|
|
42
|
-
"@fluidframework/container-loader": ">=2.0.0-internal.7.
|
|
43
|
-
"@fluidframework/driver-definitions": ">=2.0.0-internal.7.
|
|
44
|
-
"@fluidframework/eslint-config-fluid": "^
|
|
45
|
-
"@fluidframework/local-driver": ">=2.0.0-internal.7.
|
|
46
|
-
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.7.
|
|
47
|
-
"@fluidframework/sequence": ">=2.0.0-internal.7.
|
|
38
|
+
"@fluid-experimental/property-common": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
39
|
+
"@fluid-internal/test-drivers": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
40
|
+
"@fluidframework/build-common": "^2.0.3",
|
|
41
|
+
"@fluidframework/build-tools": "^0.26.1",
|
|
42
|
+
"@fluidframework/container-loader": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
43
|
+
"@fluidframework/driver-definitions": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
44
|
+
"@fluidframework/eslint-config-fluid": "^3.0.0",
|
|
45
|
+
"@fluidframework/local-driver": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
46
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
47
|
+
"@fluidframework/sequence": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
48
48
|
"@fluidframework/server-local-server": "^2.0.1",
|
|
49
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.7.
|
|
50
|
-
"@fluidframework/test-utils": ">=2.0.0-internal.7.
|
|
49
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
50
|
+
"@fluidframework/test-utils": ">=2.0.0-internal.7.2.0 <2.0.0-internal.7.3.0",
|
|
51
51
|
"@microsoft/api-extractor": "^7.37.0",
|
|
52
52
|
"@types/lodash": "^4.14.118",
|
|
53
53
|
"@types/mocha": "^9.1.1",
|
|
54
54
|
"@types/node": "^16.18.38",
|
|
55
55
|
"chai": "^4.2.0",
|
|
56
|
-
"copyfiles": "^2.4.1",
|
|
57
56
|
"cross-env": "^7.0.3",
|
|
58
57
|
"easy-table": "^1.1.1",
|
|
59
58
|
"env-cmd": "^10.1.0",
|
|
60
|
-
"eslint": "~8.
|
|
59
|
+
"eslint": "~8.50.0",
|
|
61
60
|
"mocha": "^10.2.0",
|
|
62
61
|
"mocha-json-output-reporter": "^2.0.1",
|
|
63
62
|
"mocha-multi-reporters": "^1.5.1",
|
|
64
63
|
"moment": "^2.21.0",
|
|
65
|
-
"prettier": "~
|
|
64
|
+
"prettier": "~3.0.3",
|
|
66
65
|
"rimraf": "^4.4.0",
|
|
67
66
|
"typescript": "~5.1.6"
|
|
68
67
|
},
|
|
@@ -73,11 +72,11 @@
|
|
|
73
72
|
"scripts": {
|
|
74
73
|
"build": "fluid-build . --task build",
|
|
75
74
|
"build:compile": "fluid-build . --task compile",
|
|
76
|
-
"build:docs": "api-extractor run --local
|
|
75
|
+
"build:docs": "api-extractor run --local",
|
|
77
76
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
78
77
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
79
|
-
"ci:build:docs": "api-extractor run
|
|
80
|
-
"clean": "rimraf --glob
|
|
78
|
+
"ci:build:docs": "api-extractor run",
|
|
79
|
+
"clean": "rimraf --glob dist lib \"*.tsbuildinfo\" \"*.build.log\" _api-extractor-temp nyc",
|
|
81
80
|
"eslint": "eslint src",
|
|
82
81
|
"eslint:fix": "eslint src --fix",
|
|
83
82
|
"format": "npm run prettier:fix",
|