Skip to content

Commit

Permalink
Update import paths with .js extension
Browse files Browse the repository at this point in the history
  • Loading branch information
alec-chernicki committed Jul 12, 2024
1 parent ec74d65 commit 27bc629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/utils-core/src/format-tag-name.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { slugifyTagName } from './slugify-tag-name';
import { slugifyTagName } from './slugify-tag-name.js';

export const formatTagName = (tagName: string) => {
if (tagName === '*') {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils-core/test/slugify-package-name.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { slugifyPackageName } from '../src/slugify-package-name';
import { slugifyPackageName } from '../src/slugify-package-name.js';
import { describe, test, expect } from 'vitest';

describe('when the package name has a scope', () => {
Expand Down

0 comments on commit 27bc629

Please sign in to comment.