@fluidframework/fluid-runner 2.60.0 → 2.61.0-355054
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/internal.d.ts +1 -1
- package/legacy.d.ts +1 -1
- package/lib/legacy.d.ts +2 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +19 -19
package/.mocharc.cjs
CHANGED
package/dist/legacy.d.ts
CHANGED
package/internal.d.ts
CHANGED
package/legacy.d.ts
CHANGED
package/lib/legacy.d.ts
CHANGED
package/lib/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/fluid-runner",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.0-355054",
|
|
4
4
|
"description": "Utility for running various functionality inside a Fluid Framework environment",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -71,31 +71,31 @@
|
|
|
71
71
|
"temp-directory": "nyc/.nyc_output"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@fluidframework/aqueduct": "
|
|
75
|
-
"@fluidframework/container-definitions": "
|
|
76
|
-
"@fluidframework/container-loader": "
|
|
77
|
-
"@fluidframework/core-interfaces": "
|
|
78
|
-
"@fluidframework/driver-definitions": "
|
|
79
|
-
"@fluidframework/odsp-driver": "
|
|
80
|
-
"@fluidframework/odsp-driver-definitions": "
|
|
81
|
-
"@fluidframework/telemetry-utils": "
|
|
74
|
+
"@fluidframework/aqueduct": "2.61.0-355054",
|
|
75
|
+
"@fluidframework/container-definitions": "2.61.0-355054",
|
|
76
|
+
"@fluidframework/container-loader": "2.61.0-355054",
|
|
77
|
+
"@fluidframework/core-interfaces": "2.61.0-355054",
|
|
78
|
+
"@fluidframework/driver-definitions": "2.61.0-355054",
|
|
79
|
+
"@fluidframework/odsp-driver": "2.61.0-355054",
|
|
80
|
+
"@fluidframework/odsp-driver-definitions": "2.61.0-355054",
|
|
81
|
+
"@fluidframework/telemetry-utils": "2.61.0-355054",
|
|
82
82
|
"@json2csv/plainjs": "^7.0.6",
|
|
83
83
|
"yargs": "17.7.2"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@arethetypeswrong/cli": "^0.17.1",
|
|
87
87
|
"@biomejs/biome": "~1.9.3",
|
|
88
|
-
"@fluid-internal/mocha-test-setup": "
|
|
89
|
-
"@fluid-tools/build-cli": "^0.
|
|
88
|
+
"@fluid-internal/mocha-test-setup": "2.61.0-355054",
|
|
89
|
+
"@fluid-tools/build-cli": "^0.58.2",
|
|
90
90
|
"@fluidframework/build-common": "^2.0.3",
|
|
91
|
-
"@fluidframework/build-tools": "^0.
|
|
91
|
+
"@fluidframework/build-tools": "^0.58.2",
|
|
92
92
|
"@fluidframework/eslint-config-fluid": "^6.0.0",
|
|
93
|
-
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.
|
|
94
|
-
"@microsoft/api-extractor": "7.52.
|
|
93
|
+
"@fluidframework/fluid-runner-previous": "npm:@fluidframework/fluid-runner@2.60.0",
|
|
94
|
+
"@microsoft/api-extractor": "7.52.11",
|
|
95
95
|
"@types/mocha": "^10.0.10",
|
|
96
96
|
"@types/node": "^18.19.0",
|
|
97
97
|
"@types/yargs": "^17.0.32",
|
|
98
|
-
"c8": "^
|
|
98
|
+
"c8": "^10.1.3",
|
|
99
99
|
"concurrently": "^8.2.1",
|
|
100
100
|
"copyfiles": "^2.4.1",
|
|
101
101
|
"cross-env": "^7.0.3",
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
},
|
|
112
112
|
"scripts": {
|
|
113
113
|
"api": "fluid-build . --task api",
|
|
114
|
-
"api-extractor:commonjs": "flub generate entrypoints --outDir ./dist",
|
|
115
|
-
"api-extractor:esnext": "flub generate entrypoints --outDir ./lib --node10TypeCompat",
|
|
114
|
+
"api-extractor:commonjs": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./dist",
|
|
115
|
+
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
116
116
|
"build": "fluid-build . --task build",
|
|
117
117
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
118
118
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
"test": "npm run test:mocha",
|
|
148
148
|
"test:coverage": "c8 npm test",
|
|
149
149
|
"test:mocha": "npm run test:mocha:esm && npm run test:mocha:cjs",
|
|
150
|
-
"test:mocha:cjs": "
|
|
151
|
-
"test:mocha:esm": "mocha
|
|
150
|
+
"test:mocha:cjs": "cross-env MOCHA_SPEC=dist/test mocha",
|
|
151
|
+
"test:mocha:esm": "mocha",
|
|
152
152
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
153
153
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
154
154
|
"typetests:gen": "flub generate typetests --dir . -v",
|