Skip to content

Commit

Permalink
plugins 3.6.0rc
Browse files Browse the repository at this point in the history
  • Loading branch information
spencermountain committed Jul 31, 2024
1 parent 02b571d commit 52268c9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions plugins/dates/builds/compromise-dates.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7376,7 +7376,10 @@
let all = [];
this.forEach(m => {
parse$2(m, this.opts).forEach(res => {
all.push(toJSON(res));
let json = toJSON(res);
if (json.start) {
all.push(json);
}
});
});
if (typeof n === 'number') {
Expand Down Expand Up @@ -8771,13 +8774,13 @@
// @4pm
[/^@[1-9]+(am|pm)$/, 'Time', '@5pm'],
// 03/02
[/^(?:0[1-9]|1[0-2])\/(?:0[1-9]|[12]\d|3[01])$/, 'Date', '03/02'],
[/^(?:0[1-9]|[12]\d|3[01])\/(?:0[1-9]|[12]\d|3[01])$/, 'Date', '03/02'],
// iso-time
// [/^[0-9]{4}[:-][0-9]{2}[:-][0-9]{2}T[0-9]/i, 'Time', 'iso-time-tag']

];

var version = '3.5.0';
var version = '3.6.0';

/* eslint-disable no-console */

Expand Down
2 changes: 1 addition & 1 deletion plugins/dates/builds/compromise-dates.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/dates/src/_version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '3.5.0'
export default '3.6.0'

0 comments on commit 52268c9

Please sign in to comment.