Skip to content

Commit

Permalink
Remove unnecessary export statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsukagoshi committed Sep 18, 2023
1 parent a889623 commit 3bb3c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import { fileURLToPath } from 'url';
import { readPackageUpSync } from 'read-pkg-up';

// Package Info
export const __dirname: string = dirname(fileURLToPath(import.meta.url));
const __dirname: string = dirname(fileURLToPath(import.meta.url));
export const PACKAGE_JSON =
readPackageUpSync({ cwd: __dirname })?.packageJson || undefined;

0 comments on commit 3bb3c81

Please sign in to comment.