@fluidframework/core-utils 2.0.0-dev.4.4.0.162253 → 2.0.0-dev.5.2.0.169897
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/dist/tsdoc-metadata.json +11 -0
- package/package.json +8 -10
package/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.34.9"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/core-utils",
|
|
3
|
-
"version": "2.0.0-dev.
|
|
3
|
+
"version": "2.0.0-dev.5.2.0.169897",
|
|
4
4
|
"description": "Not intended for use outside the Fluid client repo.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@fluid-tools/benchmark": "^0.47.0",
|
|
39
|
-
"@fluid-tools/build-cli": "^0.
|
|
40
|
-
"@fluidframework/build-common": "^1.
|
|
41
|
-
"@fluidframework/build-tools": "^0.
|
|
39
|
+
"@fluid-tools/build-cli": "^0.20.0-169245",
|
|
40
|
+
"@fluidframework/build-common": "^1.2.0",
|
|
41
|
+
"@fluidframework/build-tools": "^0.20.0-169245",
|
|
42
42
|
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
43
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.
|
|
43
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.5.2.0.169897",
|
|
44
44
|
"@microsoft/api-extractor": "^7.34.4",
|
|
45
45
|
"@types/mocha": "^9.1.1",
|
|
46
46
|
"@types/node": "^14.18.38",
|
|
@@ -66,13 +66,11 @@
|
|
|
66
66
|
"scripts": {
|
|
67
67
|
"bench": "mocha --timeout 999999 --perfMode --parentProcess --fgrep @Benchmark --reporter \"../../../node_modules/@fluid-tools/benchmark/dist/MochaReporter.js\"",
|
|
68
68
|
"bench:profile": "mocha --v8-prof --timeout 999999 --perfMode --fgrep @Benchmark --reporter \"../../../node_modules/@fluid-tools/benchmark/dist/MochaReporter.js\" && node --prof-process isolate-0x*-v8.log > profile.txt && rm isolate-0x*-v8.log && cat profile.txt",
|
|
69
|
-
"build": "
|
|
70
|
-
"build:commonjs": "
|
|
71
|
-
"build:compile": "
|
|
69
|
+
"build": "fluid-build . --task build",
|
|
70
|
+
"build:commonjs": "fluid-build . --task commonjs",
|
|
71
|
+
"build:compile": "fluid-build . --task compile",
|
|
72
72
|
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
73
73
|
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
74
|
-
"build:full": "npm run build",
|
|
75
|
-
"build:full:compile": "npm run build:compile",
|
|
76
74
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
77
75
|
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
78
76
|
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|