Skip to content

Commit

Permalink
fix: generate-dictionanries use the clean subdir by default
Browse files Browse the repository at this point in the history
  • Loading branch information
LandazuriPaul committed May 6, 2020
1 parent 3ad2fb5 commit f2708fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-dictionaries.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { join } from 'path';
import { readFileSync, readdirSync, writeFileSync } from 'fs';

const DICTIONARIES_DIR = join(__dirname, '..', 'dictionaries');
const DICTIONARIES_DIR = join(__dirname, '..', 'clean', 'dictionaries');
const DATA_FILE_PATH = join(__dirname, '..', 'src', 'data.json');
const DICTIONARY_LANG_MATCH_REGEXP = /^dictionary\.([a-z]+)\.txt$/;

Expand Down

0 comments on commit f2708fc

Please sign in to comment.