@fluidframework/synthesize 2.60.0 → 2.61.0-355516
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/.mocharc.cjs +1 -2
- package/dist/legacy.d.ts +2 -1
- package/lib/legacy.d.ts +2 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +15 -15
package/.mocharc.cjs
CHANGED
package/dist/legacy.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @
|
|
12
|
+
// #region @legacyBeta APIs
|
|
13
13
|
AsyncFluidObjectProvider,
|
|
14
14
|
AsyncOptionalFluidObjectProvider,
|
|
15
15
|
AsyncRequiredFluidObjectProvider,
|
|
@@ -18,4 +18,5 @@ export {
|
|
|
18
18
|
FluidObjectSymbolProvider,
|
|
19
19
|
IFluidDependencySynthesizer,
|
|
20
20
|
IProvideFluidDependencySynthesizer
|
|
21
|
+
// #endregion
|
|
21
22
|
} from "./index.js";
|
package/lib/legacy.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export {
|
|
12
|
-
// @
|
|
12
|
+
// #region @legacyBeta APIs
|
|
13
13
|
AsyncFluidObjectProvider,
|
|
14
14
|
AsyncOptionalFluidObjectProvider,
|
|
15
15
|
AsyncRequiredFluidObjectProvider,
|
|
@@ -18,4 +18,5 @@ export {
|
|
|
18
18
|
FluidObjectSymbolProvider,
|
|
19
19
|
IFluidDependencySynthesizer,
|
|
20
20
|
IProvideFluidDependencySynthesizer
|
|
21
|
+
// #endregion
|
|
21
22
|
} from "./index.js";
|
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/synthesize",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.0-355516",
|
|
4
4
|
"description": "A library for synthesizing scope objects.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,24 +69,24 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/core-utils": "
|
|
72
|
+
"@fluidframework/core-utils": "2.61.0-355516"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
76
76
|
"@biomejs/biome": "~1.9.3",
|
|
77
|
-
"@fluid-internal/mocha-test-setup": "
|
|
78
|
-
"@fluid-tools/build-cli": "^0.
|
|
77
|
+
"@fluid-internal/mocha-test-setup": "2.61.0-355516",
|
|
78
|
+
"@fluid-tools/build-cli": "^0.58.1",
|
|
79
79
|
"@fluidframework/build-common": "^2.0.3",
|
|
80
|
-
"@fluidframework/build-tools": "^0.
|
|
81
|
-
"@fluidframework/core-interfaces": "
|
|
82
|
-
"@fluidframework/datastore": "
|
|
80
|
+
"@fluidframework/build-tools": "^0.58.1",
|
|
81
|
+
"@fluidframework/core-interfaces": "2.61.0-355516",
|
|
82
|
+
"@fluidframework/datastore": "2.61.0-355516",
|
|
83
83
|
"@fluidframework/eslint-config-fluid": "^6.0.0",
|
|
84
|
-
"@fluidframework/runtime-utils": "
|
|
85
|
-
"@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.
|
|
86
|
-
"@microsoft/api-extractor": "7.52.
|
|
84
|
+
"@fluidframework/runtime-utils": "2.61.0-355516",
|
|
85
|
+
"@fluidframework/synthesize-previous": "npm:@fluidframework/synthesize@2.60.0",
|
|
86
|
+
"@microsoft/api-extractor": "7.52.11",
|
|
87
87
|
"@types/mocha": "^10.0.10",
|
|
88
88
|
"@types/node": "^18.19.0",
|
|
89
|
-
"c8": "^
|
|
89
|
+
"c8": "^10.1.3",
|
|
90
90
|
"concurrently": "^8.2.1",
|
|
91
91
|
"copyfiles": "^2.4.1",
|
|
92
92
|
"cross-env": "^7.0.3",
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
},
|
|
103
103
|
"scripts": {
|
|
104
104
|
"api": "fluid-build . --task api",
|
|
105
|
-
"api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
|
|
106
|
-
"api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
|
|
105
|
+
"api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
|
|
106
|
+
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
107
107
|
"build": "fluid-build . --task build",
|
|
108
108
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
109
109
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
@@ -138,8 +138,8 @@
|
|
|
138
138
|
"test": "npm run test:mocha",
|
|
139
139
|
"test:coverage": "c8 npm test",
|
|
140
140
|
"test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
|
|
141
|
-
"test:mocha:cjs": "
|
|
142
|
-
"test:mocha:esm": "mocha
|
|
141
|
+
"test:mocha:cjs": "cross-env MOCHA_SPEC=dist/test mocha",
|
|
142
|
+
"test:mocha:esm": "mocha",
|
|
143
143
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
144
144
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
145
145
|
"typetests:gen": "flub generate typetests --dir . -v",
|