Skip to content

Commit

Permalink
typo ahh
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprudhomme committed Sep 20, 2024
1 parent 39fe585 commit 480b5bb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"e2e": "nx run-many --target=e2e",
"lint:check": "eslint . && cspell **/*.md --no-progress --show-suggestions --show-context && prettier --check '**/*.{css,pcss,html,md,yml,ts,tsx,js,mjs,json}'",
"lint:fix": "eslint --fix . && prettier --write '**/*.{css,pcss,html,md,yml,ts,tsx,js,mjs,json}'",
"packages-compatibility": "node ./scripts/ci/packages-compatibility.mjs",
"packages:compatibility": "node ./scripts/ci/packages-compatibility.mjs",
"pr:report": "node ./scripts/reports/pr-report.mjs",
"report:bundle-size:time-series": "node ./scripts/reports/bundle-size/time-series.mjs",
"commit": "git-cz",
Expand Down
2 changes: 1 addition & 1 deletion packages/headless/src/api/search/date/date-format.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import dayjs, {ConfigType} from 'dayjs';
import customParseFormat from 'dayjs/plugin/customParseFormat';
import customParseFormat from 'dayjs/plugin/customParseFormat.js';

dayjs.extend(customParseFormat);

Expand Down
2 changes: 1 addition & 1 deletion packages/headless/src/app/logger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import pino, {LevelWithSilent} from 'pino';
import {pino, LevelWithSilent} from 'pino';

export type LogLevel = LevelWithSilent;

Expand Down
1 change: 1 addition & 0 deletions packages/headless/src/utils/compare-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export const arrayEqualStrictlyDifferentOrder = <
};

export const deepEqualAnyOrder: <T>(a: T, b: T) => boolean = createCustomEqual({
//@ts-expect-error any
createCustomConfig: (config) => {
return {
...config,
Expand Down

0 comments on commit 480b5bb

Please sign in to comment.