@fluidframework/core-utils 2.1.0-276985 → 2.1.0-281041
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/api-extractor/api-extractor.current.json +5 -0
- package/api-extractor/api-extractor.legacy.json +1 -1
- package/api-extractor.json +1 -1
- package/api-report/core-utils.legacy.public.api.md +9 -0
- package/dist/legacy.d.ts +1 -1
- package/dist/public.d.ts +1 -1
- package/internal.d.ts +1 -1
- package/legacy.d.ts +1 -1
- package/lib/legacy.d.ts +1 -1
- package/lib/public.d.ts +1 -1
- package/package.json +16 -14
|
@@ -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-report.esm.current.json",
|
|
4
|
+
"mainEntryPointFilePath": "<projectFolder>/lib/public.d.ts"
|
|
5
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-
|
|
3
|
+
"extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json"
|
|
4
4
|
}
|
package/api-extractor.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
|
-
"extends": "../../../common/build/build-common/api-extractor-
|
|
3
|
+
"extends": "../../../common/build/build-common/api-extractor-model.esm.json"
|
|
4
4
|
}
|
package/dist/legacy.d.ts
CHANGED
package/dist/public.d.ts
CHANGED
package/internal.d.ts
CHANGED
package/legacy.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
/*
|
|
7
7
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
8
|
-
* Generated by "flub generate entrypoints" in @
|
|
8
|
+
* Generated by "flub generate entrypoints" in @fluid-tools/build-cli.
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
export * from "./lib/legacy.js";
|
package/lib/legacy.d.ts
CHANGED
package/lib/public.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-utils",
|
|
3
|
-
"version": "2.1.0-
|
|
3
|
+
"version": "2.1.0-281041",
|
|
4
4
|
"description": "Not intended for use outside the Fluid client repo.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -68,13 +68,13 @@
|
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
71
|
-
"@biomejs/biome": "
|
|
72
|
-
"@fluid-internal/mocha-test-setup": "2.1.0-
|
|
71
|
+
"@biomejs/biome": "~1.8.3",
|
|
72
|
+
"@fluid-internal/mocha-test-setup": "2.1.0-281041",
|
|
73
73
|
"@fluid-tools/benchmark": "^0.47.0",
|
|
74
|
-
"@fluid-tools/build-cli": "^0.
|
|
74
|
+
"@fluid-tools/build-cli": "^0.40.0",
|
|
75
75
|
"@fluidframework/build-common": "^2.0.3",
|
|
76
|
-
"@fluidframework/build-tools": "^0.
|
|
77
|
-
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.0.0
|
|
76
|
+
"@fluidframework/build-tools": "^0.40.0",
|
|
77
|
+
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.0.0",
|
|
78
78
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
79
79
|
"@microsoft/api-extractor": "^7.45.1",
|
|
80
80
|
"@types/mocha": "^9.1.1",
|
|
@@ -105,17 +105,18 @@
|
|
|
105
105
|
"bench": "mocha --recursive \"lib/test/**/*.spec.*js\" --timeout 999999 --perfMode --parentProcess --fgrep @Benchmark --reporter @fluid-tools/benchmark/dist/MochaReporter.js",
|
|
106
106
|
"bench:profile": "mocha --recursive \"lib/test/**/*.spec.*js\" --v8-prof --v8-logfile=profile.log --v8-no-logfile-per-isolate --timeout 999999 --perfMode --fgrep @Benchmark --reporter @fluid-tools/benchmark/dist/MochaReporter.js && node --prof-process profile.log > profile.txt && rimraf profile.log && echo See results in profile.txt",
|
|
107
107
|
"build": "fluid-build . --task build",
|
|
108
|
+
"build:api-reports": "concurrently \"npm:build:api-reports:*\"",
|
|
109
|
+
"build:api-reports:current": "api-extractor run --local --config api-extractor/api-extractor.current.json",
|
|
110
|
+
"build:api-reports:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
|
|
108
111
|
"build:commonjs": "fluid-build . --task commonjs",
|
|
109
112
|
"build:compile": "fluid-build . --task compile",
|
|
110
|
-
"build:docs": "
|
|
111
|
-
"build:docs:current": "api-extractor run --local",
|
|
112
|
-
"build:docs:legacy": "api-extractor run --local --config api-extractor/api-extractor.legacy.json",
|
|
113
|
+
"build:docs": "api-extractor run --local",
|
|
113
114
|
"build:esnext": "tsc --project ./tsconfig.json",
|
|
114
115
|
"build:test": "npm run build:test:esm && npm run build:test:cjs",
|
|
115
116
|
"build:test:cjs": "fluid-tsc commonjs --project ./src/test/tsconfig.cjs.json",
|
|
116
117
|
"build:test:esm": "tsc --project ./src/test/tsconfig.json",
|
|
117
118
|
"check:are-the-types-wrong": "attw --pack .",
|
|
118
|
-
"check:biome": "biome check .
|
|
119
|
+
"check:biome": "biome check .",
|
|
119
120
|
"check:exports": "concurrently \"npm:check:exports:*\"",
|
|
120
121
|
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json",
|
|
121
122
|
"check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json",
|
|
@@ -124,14 +125,15 @@
|
|
|
124
125
|
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json",
|
|
125
126
|
"check:format": "npm run check:biome",
|
|
126
127
|
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore",
|
|
127
|
-
"ci:build:
|
|
128
|
-
"ci:build:
|
|
129
|
-
"ci:build:
|
|
128
|
+
"ci:build:api-reports": "concurrently \"npm:ci:build:api-reports:*\"",
|
|
129
|
+
"ci:build:api-reports:current": "api-extractor run --config api-extractor/api-extractor.current.json",
|
|
130
|
+
"ci:build:api-reports:legacy": "api-extractor run --config api-extractor/api-extractor.legacy.json",
|
|
131
|
+
"ci:build:docs": "api-extractor run",
|
|
130
132
|
"clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|
|
131
133
|
"eslint": "eslint --format stylish src",
|
|
132
134
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
133
135
|
"format": "npm run format:biome",
|
|
134
|
-
"format:biome": "biome check . --
|
|
136
|
+
"format:biome": "biome check . --write",
|
|
135
137
|
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore",
|
|
136
138
|
"lint": "fluid-build . --task lint",
|
|
137
139
|
"lint:fix": "fluid-build . --task eslint:fix --task format",
|