@fluidframework/odsp-driver-definitions 2.113.1 → 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 +4 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/odsp-driver-definitions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.114.0",
|
|
4
4
|
"description": "Socket storage implementation for SPO and ODC",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"main": "lib/index.js",
|
|
48
48
|
"types": "lib/public.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/driver-definitions": "~2.
|
|
50
|
+
"@fluidframework/driver-definitions": "~2.114.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@arethetypeswrong/cli": "^0.18.2",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"@fluidframework/build-common": "^2.0.3",
|
|
57
57
|
"@fluidframework/build-tools": "^0.65.0",
|
|
58
58
|
"@fluidframework/eslint-config-fluid": "^13.0.0",
|
|
59
|
-
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.
|
|
59
|
+
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.112.0",
|
|
60
60
|
"@microsoft/api-extractor": "7.58.1",
|
|
61
61
|
"concurrently": "^10.0.3",
|
|
62
62
|
"copyfiles": "^2.4.1",
|
|
@@ -71,9 +71,6 @@
|
|
|
71
71
|
"entrypoint": "legacy"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
|
-
"api": "fluid-build . --task api",
|
|
75
|
-
"api-extractor:commonjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
|
|
76
|
-
"api-extractor:esnext": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
77
74
|
"build": "fluid-build . --task build",
|
|
78
75
|
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
79
76
|
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
@@ -81,8 +78,11 @@
|
|
|
81
78
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
82
79
|
"build:compile": "fluid-build . --task compile",
|
|
83
80
|
"build:docs": "api-extractor run --local",
|
|
81
|
+
"build:entrypoints": "fluid-build . --task build:entrypoints",
|
|
82
|
+
"build:entrypoints:cjs": "flub generate entrypoints --resolutionConditions require --outFileLegacyBeta legacy --outDir ./dist",
|
|
83
|
+
"build:entrypoints:esm": "flub generate entrypoints --outFileLegacyBeta legacy --outDir ./lib --node10TypeCompat",
|
|
84
84
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
85
|
-
"build:test": "npm
|
|
85
|
+
"build:test": "concurrently npm:build:test:esm npm:build:test:cjs",
|
|
86
86
|
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
|
87
87
|
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
|
88
88
|
"check:are-the-types-wrong": "attw --pack .",
|