@fluidframework/request-handler 2.113.0-411909 → 2.114.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/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/request-handler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.114.0",
|
|
4
4
|
"description": "A simple request handling library for Fluid Framework",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,21 +69,21 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/container-runtime-definitions": "2.
|
|
73
|
-
"@fluidframework/core-interfaces": "2.
|
|
74
|
-
"@fluidframework/core-utils": "2.
|
|
75
|
-
"@fluidframework/runtime-definitions": "2.
|
|
76
|
-
"@fluidframework/runtime-utils": "2.
|
|
72
|
+
"@fluidframework/container-runtime-definitions": "~2.114.0",
|
|
73
|
+
"@fluidframework/core-interfaces": "~2.114.0",
|
|
74
|
+
"@fluidframework/core-utils": "~2.114.0",
|
|
75
|
+
"@fluidframework/runtime-definitions": "~2.114.0",
|
|
76
|
+
"@fluidframework/runtime-utils": "~2.114.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
79
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
80
80
|
"@biomejs/biome": "~2.4.5",
|
|
81
|
-
"@fluid-internal/mocha-test-setup": "2.
|
|
81
|
+
"@fluid-internal/mocha-test-setup": "~2.114.0",
|
|
82
82
|
"@fluid-tools/build-cli": "^0.65.0",
|
|
83
83
|
"@fluidframework/build-common": "^2.0.3",
|
|
84
84
|
"@fluidframework/build-tools": "^0.65.0",
|
|
85
85
|
"@fluidframework/eslint-config-fluid": "^13.0.0",
|
|
86
|
-
"@fluidframework/request-handler-previous": "npm:@fluidframework/request-handler@2.
|
|
86
|
+
"@fluidframework/request-handler-previous": "npm:@fluidframework/request-handler@2.112.0",
|
|
87
87
|
"@microsoft/api-extractor": "7.58.1",
|
|
88
88
|
"@types/diff": "^3.5.1",
|
|
89
89
|
"@types/mocha": "^10.0.10",
|
|
@@ -105,9 +105,6 @@
|
|
|
105
105
|
"entrypoint": "legacy"
|
|
106
106
|
},
|
|
107
107
|
"scripts": {
|
|
108
|
-
"api": "fluid-build . --task api",
|
|
109
|
-
"api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
|
|
110
|
-
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
111
108
|
"build": "fluid-build . --task build",
|
|
112
109
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
113
110
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
@@ -115,8 +112,11 @@
|
|
|
115
112
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
116
113
|
"build:compile": "fluid-build . --task compile",
|
|
117
114
|
"build:docs": "api-extractor run --local",
|
|
115
|
+
"build:entrypoints": "fluid-build . --task build:entrypoints",
|
|
116
|
+
"build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
|
|
117
|
+
"build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
118
118
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
119
|
-
"build:test": "npm
|
|
119
|
+
"build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
|
|
120
120
|
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
|
121
121
|
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
|
122
122
|
"check:are-the-types-wrong": "attw --pack .",
|