@fluidframework/core-utils
Advanced tools
Comparing version 2.0.0-rc.4.0.6 to 2.0.0-rc.5.0.0
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
"extends": "../../../common/build/build-common/api-extractor-base.esm.primary.json" | ||
"extends": "../../../common/build/build-common/api-extractor-base.esm.current.json" | ||
} |
# @fluidframework/core-utils | ||
## 2.0.0-rc.5.0.0 | ||
### Minor Changes | ||
- Update to TypeScript 5.4 ([#21214](https://github.com/microsoft/FluidFramework/pull/21214)) [0e6256c722](https://github.com/microsoft/FluidFramework/commit/0e6256c722d8bf024f4325bf02547daeeb18bfa6) | ||
Update package implementations to use TypeScript 5.4.5. | ||
## 2.0.0-rc.4.0.0 | ||
@@ -4,0 +12,0 @@ |
@@ -102,3 +102,3 @@ /*! | ||
export declare class PromiseTimer implements IPromiseTimer { | ||
private deferred?; | ||
private deferred; | ||
private readonly timer; | ||
@@ -105,0 +105,0 @@ /** |
@@ -102,3 +102,3 @@ /*! | ||
export declare class PromiseTimer implements IPromiseTimer { | ||
private deferred?; | ||
private deferred; | ||
private readonly timer; | ||
@@ -105,0 +105,0 @@ /** |
@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard. | ||
"packageName": "@microsoft/api-extractor", | ||
"packageVersion": "7.43.1" | ||
"packageVersion": "7.45.1" | ||
} | ||
] | ||
} |
{ | ||
"name": "@fluidframework/core-utils", | ||
"version": "2.0.0-rc.4.0.6", | ||
"version": "2.0.0-rc.5.0.0", | ||
"description": "Not intended for use outside the Fluid client repo.", | ||
@@ -71,11 +71,11 @@ "homepage": "https://fluidframework.com", | ||
"@arethetypeswrong/cli": "^0.15.2", | ||
"@biomejs/biome": "^1.6.2", | ||
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.4.0.6 <2.0.0-rc.4.1.0", | ||
"@biomejs/biome": "^1.7.3", | ||
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.5.0.0 <2.0.0-rc.5.1.0", | ||
"@fluid-tools/benchmark": "^0.47.0", | ||
"@fluid-tools/build-cli": "^0.38.0", | ||
"@fluid-tools/build-cli": "^0.39.0", | ||
"@fluidframework/build-common": "^2.0.3", | ||
"@fluidframework/build-tools": "^0.38.0", | ||
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.0.0-rc.3.0.0", | ||
"@fluidframework/eslint-config-fluid": "^5.1.0", | ||
"@microsoft/api-extractor": "^7.43.1", | ||
"@fluidframework/build-tools": "^0.39.0", | ||
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.0.0-rc.4.0.0", | ||
"@fluidframework/eslint-config-fluid": "^5.3.0", | ||
"@microsoft/api-extractor": "^7.45.1", | ||
"@types/mocha": "^9.1.1", | ||
@@ -85,2 +85,3 @@ "@types/node": "^18.19.0", | ||
"c8": "^8.0.1", | ||
"concurrently": "^8.2.1", | ||
"copyfiles": "^2.4.1", | ||
@@ -97,3 +98,3 @@ "cross-env": "^7.0.3", | ||
"sinon": "^17.0.1", | ||
"typescript": "~5.1.6" | ||
"typescript": "~5.4.5" | ||
}, | ||
@@ -118,4 +119,11 @@ "typeValidation": { | ||
"check:are-the-types-wrong": "attw --pack .", | ||
"check:biome": "biome check . --formatter-enabled=true", | ||
"check:exports": "concurrently \"npm:check:exports:*\"", | ||
"check:exports:bundle-release-tags": "api-extractor run --config api-extractor/api-extractor-lint-bundle.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:legacy": "api-extractor run --config api-extractor/api-extractor-lint-legacy.esm.json", | ||
"check:exports:esm:public": "api-extractor run --config api-extractor/api-extractor-lint-public.esm.json", | ||
"check:format": "npm run check:biome", | ||
"check:prettier": "prettier --check . --cache --ignore-path ../../../.prettierignore", | ||
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json", | ||
"ci:build:docs": "api-extractor run", | ||
@@ -125,3 +133,4 @@ "clean": "rimraf --glob dist lib \"*.d.ts\" \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "fluid-build --task format .", | ||
"format": "npm run format:biome", | ||
"format:biome": "biome check . --formatter-enabled=true --apply", | ||
"format:prettier": "prettier --write . --cache --ignore-path ../../../.prettierignore", | ||
@@ -128,0 +137,0 @@ "lint": "fluid-build . --task lint", |
@@ -60,3 +60,3 @@ /*! | ||
*/ | ||
restart?: ITimeout; | ||
restart?: ITimeout | undefined; | ||
} | ||
@@ -264,3 +264,3 @@ | ||
export class PromiseTimer implements IPromiseTimer { | ||
private deferred?: Deferred<IPromiseTimerResult>; | ||
private deferred: Deferred<IPromiseTimerResult> | undefined; | ||
private readonly timer: Timer; | ||
@@ -267,0 +267,0 @@ |
@@ -8,3 +8,5 @@ { | ||
"outDir": "./lib", | ||
"noUncheckedIndexedAccess": false, | ||
"exactOptionalPropertyTypes": false, | ||
}, | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
245925
128
3500
27