diff --git a/README.md b/README.md index f7932e8..4a25d04 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ To use the dictionary, add it to `.remarkrc.js` file with the appropriate config const unified = require("unified"); const engUs = require("dictionary-en-us"); const dicEmber = require("ember-dictionary") +const read = require('fs').readFileSync; exports.plugins = [ [ @@ -37,7 +38,7 @@ exports.plugins = [ { dictionary: engUs, // dictionary: dicEmber, - // personal: require("./dictionary/local.dic").join('\n') + personal: read("./.local.dic") } ], ] @@ -54,7 +55,7 @@ exports.plugins = [ The dictionary should contain names, terms, variables, and/or properties that are common to the Ember ecosystem and community. Examples would include `addon`, `rootURL`, `LTS` and `codemod`. -Technical jargon such as `SemVar`, `QUnit`, and `minification` would also be included in the dictionary. +Technical jargon such as `SemVar`, `QUnit`, and `minification` should also be included in the dictionary. Generally, packages or addon names would not be included in the dictionary. The exception would be any core package, such as `ember-cli-dependency-checker` would be included. Any package or addon in the Ember namespace would be in the dictionary,. diff --git a/index.dic b/index.dic index cda6e96..68ad3b4 100644 --- a/index.dic +++ b/index.dic @@ -10,6 +10,7 @@ LTS README UI Async +Config DevTools ESLint Ember @@ -21,12 +22,17 @@ Testem Vim VSCode addon/S +addAddonToProject +addBowerPackageToProjec +addPackageToProject autoRun bugfix/S codebase codemod codemods +config configPath +dasherized deprecation/S ember-try engineering/A @@ -34,6 +40,7 @@ http in-depth in-repo lifecycle +linter localhost:4200 minifyCSS minifyJS @@ -43,8 +50,11 @@ namespace/S npm outputPaths performant +podModulePrefix precompiler/S +pewprocessed preprocessor/S +pewprocessed rootURL sourcemap/S storeConfigInMeta @@ -52,5 +62,7 @@ stylesheet/S subdirectories subdirectory symlink/S +uglify uglification -vendorFile/S \ No newline at end of file +vendorFile/S +webpack \ No newline at end of file diff --git a/index.js b/index.js index 42af98f..58a7578 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ +const util = require('util'); const read = require('fs').readFile; const readFile = util.promisify(read); const path = require('path'); -const util = require('util'); module.exports = load;