Skip to content

Commit

Permalink
refactor: fix perf and example source files import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Aug 7, 2023
1 parent 671c7a2 commit ce109e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions example/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
// @ts-check

import { Tokenizer } from '../src/tokenizer.js'
import dedent from 'dedent'
import { Tokenizer } from '../build/index.js'

const exampleCode = dedent`
{{-- Show username when exists --}}
Expand Down
2 changes: 1 addition & 1 deletion perf/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Tokenizer } from '../build/src/tokenizer.js'
import { Tokenizer } from '../build/index.js'
import Benchmark from 'benchmark'

const { Suite } = Benchmark
Expand Down
2 changes: 1 addition & 1 deletion perf/tags.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Tokenizer } from '../build/src/tokenizer.js'
import { Tokenizer } from '../build/index.js'
import Benchmark from 'benchmark'

const { Suite } = Benchmark
Expand Down

0 comments on commit ce109e7

Please sign in to comment.