Skip to content

Commit

Permalink
refactor: rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Nov 4, 2024
1 parent 869a47e commit 9b55bf8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/transformers/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export * from './transformers/compact-line-options'
export * from './transformers/meta-highlight'
export * from './transformers/meta-highlight-word'
export * from './transformers/notation-diff'
export * from './transformers/notation-error-level'
export * from './transformers/notation-focus'
Expand All @@ -7,6 +9,4 @@ export * from './transformers/notation-highlight-word'
export * from './transformers/remove-line-breaks'
export * from './transformers/remove-notation-escape'
export * from './transformers/render-whitespace'
export * from './transformers/transformer-meta-highlight'
export * from './transformers/transformer-meta-highlight-word'
export * from './utils'
2 changes: 1 addition & 1 deletion packages/transformers/test/meta-line-highlight.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, it } from 'vitest'
import { parseMetaHighlightString } from '../src/transformers/transformer-meta-highlight'
import { parseMetaHighlightString } from '../src/transformers/meta-highlight'

it('parseHighlightLines', () => {
expect(parseMetaHighlightString('')).toBe(null)
Expand Down
2 changes: 1 addition & 1 deletion packages/transformers/test/meta-word-highlight.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, it } from 'vitest'
import { parseMetaHighlightWords } from '../src/transformers/transformer-meta-highlight-word'
import { parseMetaHighlightWords } from '../src/transformers/meta-highlight-word'

it('parseHighlightWords', () => {
expect(parseMetaHighlightWords('')).toEqual([])
Expand Down

0 comments on commit 9b55bf8

Please sign in to comment.