Skip to content

Commit b83b8eb

Browse files
Merge pull request #1195 from spencermountain/dev
Dev
2 parents 9f2a1ca + 60c93e2 commit b83b8eb

640 files changed

Lines changed: 4437 additions & 22006 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,6 @@ _(match methods use the [match-syntax](https://docs.compromise.cool/compromise-m
546546

547547
- **[.sort('method')](https://observablehq.com/@spencermountain/compromise-sorting)** - re-arrange the order of the matches (in place)
548548
- **[.reverse()](https://observablehq.com/@spencermountain/compromise-sorting)** - reverse the order of the matches, but not the words
549-
- **[.normalize({})](https://observablehq.com/@spencermountain/compromise-normalization)** - clean-up the text in various ways
550549
- **[.unique()](https://observablehq.com/@spencermountain/compromise-sorting)** - remove any duplicate matches
551550

552551
##### Lib
@@ -586,6 +585,8 @@ _(these methods are on the main `nlp` object)_
586585

587586
### compromise/three:
588587

588+
- **[.normalize({})](https://observablehq.com/@spencermountain/compromise-normalization)** - clean-up the text in various ways
589+
589590
##### Nouns
590591

591592
- **[.nouns()](https://observablehq.com/@spencermountain/nouns)** - return any subsequent terms tagged as a Noun

builds/compromise.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

builds/one/compromise-one.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

builds/one/compromise-one.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

builds/three/compromise-three.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

builds/three/compromise-three.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

builds/two/compromise-two.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

builds/two/compromise-two.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ While all _Major_ releases should be reviewed, our only _large_ releases are **v
2020
- **[fix]** - .before() .after()
2121
-->
2222

23+
#### 14.14.5 [Dec 2025]
24+
- **[fix]** - update types #1181
25+
- **[update]** - add nelissa and gert #1180
26+
- **[fix]** - sentence tokenization issues #1194 and #1193
27+
- **[update]** - prefer const to let
28+
- **[new]** - experimental cmd-k plugin
29+
- **[update]** - dependencies
30+
2331
#### 14.14.4 [Jan 2025]
2432
- **[fix]** - TypeScript & esm resolution #1165
2533

data/lexicon/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ for (let i = 0; i < data.length; i++) {
136136
// if (lex[list[o]]) {
137137
// console.log(list[o] + ' ' + lex[list[o]] + ' ' + data[i][1])
138138
// }
139-
let str = list[o]
139+
const str = list[o]
140140
//do some linting
141141
if (str.match(/[.,0-9-]/) || str.trim().toLowerCase() !== str) {
142142
console.log(`'${str}'`) //eslint-disable-line

0 commit comments

Comments
 (0)