@fluidframework/core-utils 2.0.0-rc.5.0.4 → 2.0.0-rc.5.0.5
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.
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/dist/index.d.ts"
|
|
5
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-utils",
|
|
3
|
-
"version": "2.0.0-rc.5.0.
|
|
3
|
+
"version": "2.0.0-rc.5.0.5",
|
|
4
4
|
"description": "Not intended for use outside the Fluid client repo.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -14,12 +14,18 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
+
"trimmedAPI": {
|
|
18
|
+
"types": {
|
|
19
|
+
"import": "./lib/public.d.ts",
|
|
20
|
+
"require": "./dist/public.d.ts"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
17
23
|
"import": {
|
|
18
|
-
"types": "./lib/
|
|
24
|
+
"types": "./lib/index.d.ts",
|
|
19
25
|
"default": "./lib/index.js"
|
|
20
26
|
},
|
|
21
27
|
"require": {
|
|
22
|
-
"types": "./dist/
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
23
29
|
"default": "./dist/index.js"
|
|
24
30
|
}
|
|
25
31
|
},
|
|
@@ -45,7 +51,7 @@
|
|
|
45
51
|
}
|
|
46
52
|
},
|
|
47
53
|
"main": "lib/index.js",
|
|
48
|
-
"types": "lib/
|
|
54
|
+
"types": "lib/index.d.ts",
|
|
49
55
|
"c8": {
|
|
50
56
|
"all": true,
|
|
51
57
|
"cache-dir": "nyc/.cache",
|
|
@@ -69,7 +75,7 @@
|
|
|
69
75
|
"devDependencies": {
|
|
70
76
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
71
77
|
"@biomejs/biome": "^1.7.3",
|
|
72
|
-
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.5.0.
|
|
78
|
+
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.5.0.5 <2.0.0-rc.5.1.0",
|
|
73
79
|
"@fluid-tools/benchmark": "^0.47.0",
|
|
74
80
|
"@fluid-tools/build-cli": "^0.39.0",
|
|
75
81
|
"@fluidframework/build-common": "^2.0.3",
|
|
@@ -95,6 +101,7 @@
|
|
|
95
101
|
"sinon": "^17.0.1",
|
|
96
102
|
"typescript": "~5.4.5"
|
|
97
103
|
},
|
|
104
|
+
"exportsComments": "The 'trimmedAPI' export condition is set as a workaround for 'flub generate entrypoints', which expects `exports` to contain an entry for all entrypoints. The custom condition effectively hides the public entrypoint unless the 'trimmedAPI' condition is set manually.",
|
|
98
105
|
"typeValidation": {
|
|
99
106
|
"broken": {}
|
|
100
107
|
},
|
|
@@ -116,6 +123,7 @@
|
|
|
116
123
|
"check:biome": "biome check . --formatter-enabled=true",
|
|
117
124
|
"check:exports": "concurrently \"npm:check:exports:*\"",
|
|
118
125
|
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
|
126
|
+
"check:exports:cjs:index": "api-extractor run --config api-extractor/api-extractor-lint-index.cjs.json",
|
|
119
127
|
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
|
120
128
|
"check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json",
|
|
121
129
|
"check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json",
|