@fluidframework/legacy-dds 2.117.0 → 3.0.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 +36 -2
- package/{api-extractor.json → api-extractor/api-extractor-model.json} +1 -1
- package/dist/array/sharedArray.js +19 -6
- package/dist/array/sharedArray.js.map +1 -1
- package/dist/array/sharedArrayFactory.d.ts.map +1 -1
- package/dist/array/sharedArrayFactory.js +9 -9
- package/dist/array/sharedArrayFactory.js.map +1 -1
- package/dist/array/sharedArrayRevertible.js +2 -0
- package/dist/array/sharedArrayRevertible.js.map +1 -1
- 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/dist/signal/sharedSignalFactory.d.ts +1 -1
- package/dist/signal/sharedSignalFactory.d.ts.map +1 -1
- package/dist/signal/sharedSignalFactory.js +9 -9
- package/dist/signal/sharedSignalFactory.js.map +1 -1
- package/lib/array/sharedArray.js +19 -6
- package/lib/array/sharedArray.js.map +1 -1
- package/lib/array/sharedArrayFactory.d.ts.map +1 -1
- package/lib/array/sharedArrayFactory.js +9 -9
- package/lib/array/sharedArrayFactory.js.map +1 -1
- package/lib/array/sharedArrayRevertible.js +2 -0
- package/lib/array/sharedArrayRevertible.js.map +1 -1
- package/lib/legacy.d.ts +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/lib/public.d.ts +1 -1
- package/lib/signal/sharedSignalFactory.js +9 -9
- package/lib/signal/sharedSignalFactory.js.map +1 -1
- package/package.json +39 -59
- package/src/packageVersion.ts +1 -1
- package/tsconfig.json +1 -1
- package/internal.d.ts +0 -11
- package/legacy.d.ts +0 -11
- /package/api-extractor/{api-extractor.current.json → api-extractor-report.current.json} +0 -0
- /package/api-extractor/{api-extractor.legacy.json → api-extractor-report.legacy.json} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/legacy-dds",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Legacy DDSs for the Fluid Framework. These are not intended for use in new code.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,50 +14,30 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"require": {
|
|
22
|
-
"types": "./dist/public.d.ts",
|
|
23
|
-
"default": "./dist/index.js"
|
|
17
|
+
"types": "./lib/public.d.ts",
|
|
18
|
+
"default": "./lib/index.js",
|
|
19
|
+
"internal-entrypoint-generation": {
|
|
20
|
+
"types": "./dist/public.d.ts"
|
|
24
21
|
}
|
|
25
22
|
},
|
|
26
23
|
"./legacy": {
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"require": {
|
|
32
|
-
"types": "./dist/legacy.d.ts",
|
|
33
|
-
"default": "./dist/index.js"
|
|
24
|
+
"types": "./lib/legacy.d.ts",
|
|
25
|
+
"default": "./lib/index.js",
|
|
26
|
+
"internal-entrypoint-generation": {
|
|
27
|
+
"types": "./dist/legacy.d.ts"
|
|
34
28
|
}
|
|
35
29
|
},
|
|
36
30
|
"./internal": {
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
"default": "./lib/index.js"
|
|
40
|
-
},
|
|
41
|
-
"require": {
|
|
42
|
-
"types": "./dist/index.d.ts",
|
|
43
|
-
"default": "./dist/index.js"
|
|
44
|
-
}
|
|
31
|
+
"types": "./lib/index.d.ts",
|
|
32
|
+
"default": "./lib/index.js"
|
|
45
33
|
},
|
|
46
34
|
"./internal/test": {
|
|
47
35
|
"allow-ff-test-exports": {
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
"default": "./lib/test/index.js"
|
|
51
|
-
},
|
|
52
|
-
"require": {
|
|
53
|
-
"types": "./dist/test/index.d.ts",
|
|
54
|
-
"default": "./dist/test/index.js"
|
|
55
|
-
}
|
|
36
|
+
"types": "./lib/test/index.d.ts",
|
|
37
|
+
"default": "./lib/test/index.js"
|
|
56
38
|
}
|
|
57
39
|
}
|
|
58
40
|
},
|
|
59
|
-
"main": "lib/index.js",
|
|
60
|
-
"types": "lib/public.d.ts",
|
|
61
41
|
"c8": {
|
|
62
42
|
"all": true,
|
|
63
43
|
"cache-dir": "nyc/.cache",
|
|
@@ -81,29 +61,29 @@
|
|
|
81
61
|
"temp-directory": "nyc/.nyc_output"
|
|
82
62
|
},
|
|
83
63
|
"dependencies": {
|
|
84
|
-
"@fluid-internal/client-utils": "~
|
|
85
|
-
"@fluidframework/core-interfaces": "~
|
|
86
|
-
"@fluidframework/core-utils": "~
|
|
87
|
-
"@fluidframework/datastore-definitions": "~
|
|
88
|
-
"@fluidframework/driver-definitions": "~
|
|
89
|
-
"@fluidframework/driver-utils": "~
|
|
90
|
-
"@fluidframework/runtime-definitions": "~
|
|
91
|
-
"@fluidframework/runtime-utils": "~
|
|
92
|
-
"@fluidframework/shared-object-base": "~
|
|
64
|
+
"@fluid-internal/client-utils": "~3.0.0",
|
|
65
|
+
"@fluidframework/core-interfaces": "~3.0.0",
|
|
66
|
+
"@fluidframework/core-utils": "~3.0.0",
|
|
67
|
+
"@fluidframework/datastore-definitions": "~3.0.0",
|
|
68
|
+
"@fluidframework/driver-definitions": "~3.0.0",
|
|
69
|
+
"@fluidframework/driver-utils": "~3.0.0",
|
|
70
|
+
"@fluidframework/runtime-definitions": "~3.0.0",
|
|
71
|
+
"@fluidframework/runtime-utils": "~3.0.0",
|
|
72
|
+
"@fluidframework/shared-object-base": "~3.0.0",
|
|
93
73
|
"uuid": "^11.1.0"
|
|
94
74
|
},
|
|
95
75
|
"devDependencies": {
|
|
96
76
|
"@arethetypeswrong/cli": "^0.18.5",
|
|
97
77
|
"@biomejs/biome": "~2.4.5",
|
|
98
|
-
"@fluid-internal/mocha-test-setup": "~
|
|
99
|
-
"@fluid-private/stochastic-test-utils": "~
|
|
100
|
-
"@fluid-private/test-dds-utils": "~
|
|
78
|
+
"@fluid-internal/mocha-test-setup": "~3.0.0",
|
|
79
|
+
"@fluid-private/stochastic-test-utils": "~3.0.0",
|
|
80
|
+
"@fluid-private/test-dds-utils": "~3.0.0",
|
|
101
81
|
"@fluid-tools/build-cli": "^0.67.0",
|
|
102
82
|
"@fluidframework/build-common": "^2.0.3",
|
|
103
83
|
"@fluidframework/build-tools": "^0.67.0",
|
|
104
|
-
"@fluidframework/container-definitions": "~
|
|
84
|
+
"@fluidframework/container-definitions": "~3.0.0",
|
|
105
85
|
"@fluidframework/eslint-config-fluid": "^14.0.0",
|
|
106
|
-
"@fluidframework/test-runtime-utils": "~
|
|
86
|
+
"@fluidframework/test-runtime-utils": "~3.0.0",
|
|
107
87
|
"@microsoft/api-extractor": "7.58.1",
|
|
108
88
|
"@types/jest": "29.5.3",
|
|
109
89
|
"@types/mocha": "^10.0.10",
|
|
@@ -117,7 +97,7 @@
|
|
|
117
97
|
"mocha": "^11.7.5",
|
|
118
98
|
"mocha-multi-reporters": "^1.5.1",
|
|
119
99
|
"rimraf": "^6.1.3",
|
|
120
|
-
"typescript": "~
|
|
100
|
+
"typescript": "~6.0.3"
|
|
121
101
|
},
|
|
122
102
|
"typeValidation": {
|
|
123
103
|
"disabled": true
|
|
@@ -125,20 +105,21 @@
|
|
|
125
105
|
"scripts": {
|
|
126
106
|
"build": "fluid-build . --task build",
|
|
127
107
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
128
|
-
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
129
|
-
"build:api-reports:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
|
|
108
|
+
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor-report.current.json",
|
|
109
|
+
"build:api-reports:legacy": "api-extractor run --local --config api-extractor/api-extractor-report.legacy.json",
|
|
110
|
+
"build:cjs": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
130
111
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
131
112
|
"build:compile": "fluid-build . --task compile",
|
|
132
|
-
"build:docs": "api-extractor run --local",
|
|
113
|
+
"build:docs": "api-extractor run --local --config api-extractor/api-extractor-model.json",
|
|
133
114
|
"build:entrypoints": "fluid-build . --task build:entrypoints",
|
|
134
115
|
"build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
|
|
135
|
-
"build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib
|
|
136
|
-
"build:
|
|
116
|
+
"build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib",
|
|
117
|
+
"build:esm": "tsc --project ./tsconfig.json",
|
|
137
118
|
"build:genver": "gen-version",
|
|
138
119
|
"build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
|
|
139
120
|
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
|
140
121
|
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
|
141
|
-
"check:are-the-types-wrong": "attw --pack . --exclude-entrypoints ./internal/test",
|
|
122
|
+
"check:are-the-types-wrong": "attw --pack . --profile esm-only --exclude-entrypoints ./internal/test",
|
|
142
123
|
"check:biome": "biome check .",
|
|
143
124
|
"check:exports": "concurrently \"npm:check:exports:*\"",
|
|
144
125
|
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
|
@@ -148,9 +129,9 @@
|
|
|
148
129
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
149
130
|
"check:format": "npm run check:biome",
|
|
150
131
|
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
151
|
-
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
152
|
-
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
153
|
-
"ci:build:docs": "api-extractor run",
|
|
132
|
+
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor-report.current.json",
|
|
133
|
+
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor-report.legacy.json",
|
|
134
|
+
"ci:build:docs": "api-extractor run --config api-extractor/api-extractor-model.json",
|
|
154
135
|
"clean": "rimraf --glob dist lib {alpha,beta,internal,legacy}.d.ts \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
155
136
|
"eslint": "eslint --quiet --format stylish src",
|
|
156
137
|
"eslint:fix": "eslint --quiet --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
@@ -163,7 +144,6 @@
|
|
|
163
144
|
"test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
|
|
164
145
|
"test:mocha:cjs": "cross-env FLUID_TEST_MODULE_SYSTEM=CJS mocha",
|
|
165
146
|
"test:mocha:esm": "mocha",
|
|
166
|
-
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
|
|
167
|
-
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist"
|
|
147
|
+
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha"
|
|
168
148
|
}
|
|
169
149
|
}
|
package/src/packageVersion.ts
CHANGED
package/tsconfig.json
CHANGED
package/internal.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/*
|
|
7
|
-
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
8
|
-
* Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export * from "./lib/index.js";
|
package/legacy.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/*
|
|
7
|
-
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
8
|
-
* Generated by "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat" in @fluid-tools/build-cli.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export * from "./lib/legacy.js";
|
|
File without changes
|
|
File without changes
|