-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow excluding wordlists when building for browserify
- Loading branch information
Showing
9 changed files
with
204 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// browserify by default only pulls in files that are hard coded in requires | ||
// In order of last to first in this file, the default wordlist will be chosen | ||
// based on what is present. (Bundles may remove wordlists they don't need) | ||
const wordlists = {}; | ||
exports.wordlists = wordlists; | ||
let _default; | ||
exports._default = _default; | ||
try { | ||
exports._default = _default = require('./wordlists/chinese_simplified.json'); | ||
wordlists.chinese_simplified = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/chinese_traditional.json'); | ||
wordlists.chinese_traditional = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/korean.json'); | ||
wordlists.korean = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/french.json'); | ||
wordlists.french = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/italian.json'); | ||
wordlists.italian = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/spanish.json'); | ||
wordlists.spanish = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/japanese.json'); | ||
wordlists.japanese = _default; | ||
wordlists.JA = _default; | ||
} | ||
catch (err) { } | ||
try { | ||
exports._default = _default = require('./wordlists/english.json'); | ||
wordlists.english = _default; | ||
wordlists.EN = _default; | ||
} | ||
catch (err) { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// browserify by default only pulls in files that are hard coded in requires | ||
// In order of last to first in this file, the default wordlist will be chosen | ||
// based on what is present. (Bundles may remove wordlists they don't need) | ||
const wordlists: { [index: string]: string[] } = {}; | ||
let _default: string[] | undefined; | ||
try { | ||
_default = require('./wordlists/chinese_simplified.json'); | ||
wordlists.chinese_simplified = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/chinese_traditional.json'); | ||
wordlists.chinese_traditional = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/korean.json'); | ||
wordlists.korean = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/french.json'); | ||
wordlists.french = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/italian.json'); | ||
wordlists.italian = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/spanish.json'); | ||
wordlists.spanish = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/japanese.json'); | ||
wordlists.japanese = _default as string[]; | ||
wordlists.JA = _default as string[]; | ||
} catch (err) {} | ||
try { | ||
_default = require('./wordlists/english.json'); | ||
wordlists.english = _default as string[]; | ||
wordlists.EN = _default as string[]; | ||
} catch (err) {} | ||
|
||
// Last one to overwrite wordlist gets to be default. | ||
export { wordlists, _default }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
declare const wordlists: { | ||
[index: string]: string[]; | ||
}; | ||
declare let _default: string[] | undefined; | ||
export { wordlists, _default }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
declare const wordlists: { | ||
[index: string]: string[]; | ||
}; | ||
declare let _default: string[] | undefined; | ||
export { wordlists, _default }; |
Repeated the word "explicitly"