Skip to content

Commit

Permalink
make gen.js runnable again
Browse files Browse the repository at this point in the history
  • Loading branch information
chearon committed Oct 1, 2023
1 parent 17e274e commit 8199085
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gen.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import fs from 'fs';
import path from 'path';
import * as lbClasses from './src/line-break.js';
import * as gbClasses from './src/grapheme-break.js';
import * as mjClasses from './src/itemize.js';
import UnicodeTrieBuilder from './src/unicode-trie-builder.js';
import {getTrie, encodeTrie} from './src/string-trie-encode.js';
import * as lbClasses from './dist/src/line-break.js';
import * as gbClasses from './dist/src/grapheme-break.js';
import * as mjClasses from './dist/src/itemize.js';
import UnicodeTrieBuilder from './dist/src/unicode-trie-builder.js';
import {getTrie, encodeTrie} from './dist/src/string-trie-encode.js';
import {URL} from 'url';

// TODO: common function for unicode data file parsing
Expand Down

0 comments on commit 8199085

Please sign in to comment.