Skip to content

Commit ce5a8ef

Browse files
committed
style(synth-go): fix import order
1 parent 7896e06 commit ce5a8ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/synth-go/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
*/
1010

1111
export type { GoParseOptions } from './parser.js'
12-
export { createParser, GoParser, parse, parseAsync, init } from './parser.js'
12+
export { createParser, GoParser, init, parse, parseAsync } from './parser.js'

packages/synth-go/src/parser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
import { describe, expect, it } from 'bun:test'
6-
import { createParser, GoParser, parse, parseAsync, init } from './parser.js'
6+
import { createParser, GoParser, init, parse, parseAsync } from './parser.js'
77

88
describe('GoParser', () => {
99
describe('Basic Parsing', () => {

0 commit comments

Comments
 (0)