@fluidframework/core-utils
Advanced tools
+11
| /*! | ||
| * Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| /* | ||
| * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| * Generated by "flub generate entrypoints" in @fluid-tools/build-cli. | ||
| */ | ||
| export * from "./lib/alpha.js"; |
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/dist/alpha.d.ts" | ||
| } |
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/lib/alpha.d.ts" | ||
| } |
| ## Alpha API Report File for "@fluidframework/core-utils" | ||
| > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). | ||
| ```ts | ||
| // @alpha | ||
| export function emulateProductionBuild(enable?: boolean): void; | ||
| // @alpha | ||
| export function nonProductionConditionalsIncluded(): boolean; | ||
| // @alpha | ||
| export function onAssertionFailure(handler: (error: Error) => void): () => void; | ||
| // (No @packageDocumentation comment for this package) | ||
| ``` |
| /*! | ||
| * Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| /* | ||
| * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| * Generated by "flub generate entrypoints" in @fluid-tools/build-cli. | ||
| */ | ||
| export { | ||
| // #region @alpha APIs | ||
| emulateProductionBuild, | ||
| nonProductionConditionalsIncluded, | ||
| onAssertionFailure | ||
| // #endregion | ||
| } from "./index.js"; |
| /*! | ||
| * Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
| * Licensed under the MIT License. | ||
| */ | ||
| /* | ||
| * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
| * Generated by "flub generate entrypoints" in @fluid-tools/build-cli. | ||
| */ | ||
| export { | ||
| // #region @alpha APIs | ||
| emulateProductionBuild, | ||
| nonProductionConditionalsIncluded, | ||
| onAssertionFailure | ||
| // #endregion | ||
| } from "./index.js"; |
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.current.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/lib/public.d.ts" | ||
| "mainEntryPointFilePath": "<projectFolder>/lib/alpha.d.ts", | ||
| "apiReport": { | ||
| // The base config omits alpha. Explicitly opt into alpha reports (in addition to public/beta) for this package. | ||
| "reportVariants": ["public", "beta", "alpha"] | ||
| } | ||
| } |
+4
-0
| # @fluidframework/core-utils | ||
| ## 2.82.0 | ||
| Dependency updates only. | ||
| ## 2.81.0 | ||
@@ -4,0 +8,0 @@ |
+2
-2
@@ -143,3 +143,3 @@ /*! | ||
| * See {@link skipInProductionInner}. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -176,5 +176,5 @@ export declare function nonProductionConditionalsIncluded(): boolean; | ||
| * It catches some cases `configureDebugAsserts` can't, like dependency on side effects of failing asserts debug message callback. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
| export declare function emulateProductionBuild(enable?: boolean): void; | ||
| //# sourceMappingURL=assert.d.ts.map |
+2
-2
@@ -208,3 +208,3 @@ "use strict"; | ||
| * See {@link skipInProductionInner}. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -248,3 +248,3 @@ function nonProductionConditionalsIncluded() { | ||
| * It catches some cases `configureDebugAsserts` can't, like dependency on side effects of failing asserts debug message callback. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -251,0 +251,0 @@ function emulateProductionBuild(enable = true) { |
+2
-2
@@ -143,3 +143,3 @@ /*! | ||
| * See {@link skipInProductionInner}. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -176,5 +176,5 @@ export declare function nonProductionConditionalsIncluded(): boolean; | ||
| * It catches some cases `configureDebugAsserts` can't, like dependency on side effects of failing asserts debug message callback. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
| export declare function emulateProductionBuild(enable?: boolean): void; | ||
| //# sourceMappingURL=assert.d.ts.map |
+2
-2
@@ -200,3 +200,3 @@ /*! | ||
| * See {@link skipInProductionInner}. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -239,3 +239,3 @@ export function nonProductionConditionalsIncluded() { | ||
| * It catches some cases `configureDebugAsserts` can't, like dependency on side effects of failing asserts debug message callback. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -242,0 +242,0 @@ export function emulateProductionBuild(enable = true) { |
+16
-4
| { | ||
| "name": "@fluidframework/core-utils", | ||
| "version": "2.81.1", | ||
| "version": "2.82.0", | ||
| "description": "Not intended for use outside the Fluid client repo.", | ||
@@ -26,2 +26,12 @@ "homepage": "https://fluidframework.com", | ||
| }, | ||
| "./alpha": { | ||
| "import": { | ||
| "types": "./lib/alpha.d.ts", | ||
| "default": "./lib/index.js" | ||
| }, | ||
| "require": { | ||
| "types": "./dist/alpha.d.ts", | ||
| "default": "./dist/index.js" | ||
| } | ||
| }, | ||
| "./legacy": { | ||
@@ -73,3 +83,3 @@ "import": { | ||
| "@biomejs/biome": "~1.9.3", | ||
| "@fluid-internal/mocha-test-setup": "~2.81.1", | ||
| "@fluid-internal/mocha-test-setup": "~2.82.0", | ||
| "@fluid-tools/benchmark": "^0.52.0", | ||
@@ -80,6 +90,6 @@ "@fluid-tools/build-cli": "^0.63.0", | ||
| "@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.81.0", | ||
| "@fluidframework/eslint-config-fluid": "~2.81.1", | ||
| "@fluidframework/eslint-config-fluid": "~2.82.0", | ||
| "@microsoft/api-extractor": "7.52.11", | ||
| "@types/mocha": "^10.0.10", | ||
| "@types/node": "^18.19.0", | ||
| "@types/node": "~20.19.30", | ||
| "@types/sinon": "^17.0.3", | ||
@@ -124,4 +134,6 @@ "c8": "^10.1.3", | ||
| "check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.json", | ||
| "check:exports:cjs:alpha": "api-extractor run --config api-extractor/api-extractor-lint-alpha.cjs.json", | ||
| "check:exports:cjs:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.cjs.json", | ||
| "check:exports:cjs:public": "api-extractor run --config api-extractor/api-extractor-lint-public.cjs.json", | ||
| "check:exports:esm:alpha": "api-extractor run --config api-extractor/api-extractor-lint-alpha.esm.json", | ||
| "check:exports:esm:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json", | ||
@@ -128,0 +140,0 @@ "check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json", |
+2
-0
@@ -34,2 +34,4 @@ # @fluidframework/core-utils | ||
| To access the `alpha` APIs, import via `@fluidframework/core-utils/alpha`. | ||
| To access the `legacy` APIs, import via `@fluidframework/core-utils/legacy`. | ||
@@ -36,0 +38,0 @@ |
+2
-2
@@ -218,3 +218,3 @@ /*! | ||
| * See {@link skipInProductionInner}. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -258,3 +258,3 @@ export function nonProductionConditionalsIncluded(): boolean { | ||
| * It catches some cases `configureDebugAsserts` can't, like dependency on side effects of failing asserts debug message callback. | ||
| * @internal | ||
| * @alpha | ||
| */ | ||
@@ -261,0 +261,0 @@ export function emulateProductionBuild(enable = true): void { |
| { | ||
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | ||
| "extends": ["../../../biome.jsonc"] | ||
| } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
473921
0.58%171
3.01%6294
0.85%159
1.27%