Skip to content

Commit

Permalink
chore(logger): Fix import file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Jan 8, 2024
1 parent 6d8b3d7 commit f620739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/logger/src/define-package.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {definePackage as definePackage_} from '@alwatr/dedupe';

import {createLogger} from './logger.js';
import {createLogger} from './logge';

import type {AlwatrLogger} from './type.js';
import type {AlwatrLogger} from './type';

/**
* Global define package for managing package versions to prevent version conflicts and return package level logger.
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/src/logger.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {definePackage} from '@alwatr/dedupe';
import {platformInfo} from '@alwatr/platform-info';

import type {AlwatrLogger} from './type.js';
import type {AlwatrLogger} from './type';

definePackage('@alwatr/logger', __package_version__);

Expand Down

0 comments on commit f620739

Please sign in to comment.