Skip to content

Commit

Permalink
14.11.2rc
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Jan 23, 2024
1 parent 90a388a commit 986f774
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion builds/compromise.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/one/compromise-one.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/one/compromise-one.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/three/compromise-three.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/three/compromise-three.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/two/compromise-two.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion builds/two/compromise-two.mjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions changelog.md
Expand Up @@ -28,6 +28,7 @@ While all _Major_ releases should be reviewed, our only _large_ releases are **v
- **[new]** - support freeze in sweep
- **[change]** - internal typescript improvements
- **[fix]** - tagging issues
- **[change]** - @hasEllipses must be following the word
- **[update]** - dependencies

#### 14.11.1 [Jan 2024]
Expand Down
3 changes: 0 additions & 3 deletions scratch.js
Expand Up @@ -6,9 +6,6 @@ import nlp from './src/three.js'

// let doc = nlp('one two three four five. one three four')
// doc.before('three four').debug()
let doc = nlp(`...and my butt smells, and i like to kiss my own butt`)
doc.match('@hasEllipses').debug()
// let m = doc.clauses() //.debug()

let arr = [
// 'I left the window open for fresh air.',
Expand Down
6 changes: 3 additions & 3 deletions tests/_ignore/quotations.ignore.js
Expand Up @@ -3,7 +3,7 @@ import nlp from '../three/_lib.js'
const here = '[three/quotations] '

function testAllQuotes(a, t) {
const str = nlp(a[0]).quotations().out('normal')
const str = nlp(a[0]).quotations().out('root')
t.equal(str, a[1], here + a[0])
}

Expand All @@ -17,7 +17,7 @@ test('quotation test:', function (t) {
[`“quote is here”`, `quote is here`],
]
arr.forEach(function (a) {
const str = nlp(a[0]).quotations().text()
const str = nlp(a[0]).quotations().text('root')
t.equal(str, a[1], here + a[0])
})
t.end()
Expand Down Expand Up @@ -58,7 +58,7 @@ test('Quotations - U+0027 to U+0027', function (t) {
arr.forEach(a => testAllQuotes(a, t))
t.end()
})
//

test('Quotations - U+201C to U+201D', function (t) {
let arr = [
['he is \u201Creally good\u201D', 'really good'],
Expand Down

0 comments on commit 986f774

Please sign in to comment.