Skip to content

Commit

Permalink
tools: update lint-md-dependencies to rollup@2.69.1
Browse files Browse the repository at this point in the history
PR-URL: #42226
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Mestery <mestery@protonmail.com>
  • Loading branch information
nodejs-github-bot authored and danielleadams committed Apr 24, 2022
1 parent 623be18 commit fe5578b
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 54 deletions.
30 changes: 16 additions & 14 deletions tools/lint-md/lint-md.mjs
Expand Up @@ -201,18 +201,17 @@ function wrap(middleware, callback) {
}
}

var own$8 = {}.hasOwnProperty;
function stringifyPosition(value) {
if (!value || typeof value !== 'object') {
return ''
}
if (own$8.call(value, 'position') || own$8.call(value, 'type')) {
if ('position' in value || 'type' in value) {
return position(value.position)
}
if (own$8.call(value, 'start') || own$8.call(value, 'end')) {
if ('start' in value || 'end' in value) {
return position(value)
}
if (own$8.call(value, 'line') || own$8.call(value, 'column')) {
if ('line' in value || 'column' in value) {
return point$1(value)
}
return ''
Expand All @@ -229,19 +228,18 @@ function index(value) {

class VFileMessage extends Error {
constructor(reason, place, origin) {
var parts = [null, null];
var position = {
const parts = [null, null];
let position = {
start: {line: null, column: null},
end: {line: null, column: null}
};
var index;
super();
if (typeof place === 'string') {
origin = place;
place = null;
place = undefined;
}
if (typeof origin === 'string') {
index = origin.indexOf(':');
const index = origin.indexOf(':');
if (index === -1) {
parts[1] = origin;
} else {
Expand Down Expand Up @@ -21228,29 +21226,33 @@ function stringWidth(string, options = {}) {
if (typeof string !== 'string' || string.length === 0) {
return 0;
}
options = {
ambiguousIsNarrow: true,
...options
};
string = stripAnsi(string);
if (string.length === 0) {
return 0;
}
string = string.replace(emojiRegex(), ' ');
const ambiguousCharWidth = options.ambiguousIsNarrow ? 1 : 2;
const ambiguousCharacterWidth = options.ambiguousIsNarrow ? 1 : 2;
let width = 0;
for (let index = 0; index < string.length; index++) {
const codePoint = string.codePointAt(index);
for (const character of string) {
const codePoint = character.codePointAt(0);
if (codePoint <= 0x1F || (codePoint >= 0x7F && codePoint <= 0x9F)) {
continue;
}
if (codePoint >= 0x300 && codePoint <= 0x36F) {
continue;
}
const code = eastAsianWidth.eastAsianWidth(string.charAt(index));
const code = eastAsianWidth.eastAsianWidth(character);
switch (code) {
case 'F':
case 'W':
width += 2;
break;
case 'A':
width += ambiguousCharWidth;
width += ambiguousCharacterWidth;
break;
default:
width += 1;
Expand Down
78 changes: 39 additions & 39 deletions tools/lint-md/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/lint-md/package.json
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup": "^2.68.0",
"rollup": "^2.69.1",
"rollup-plugin-cleanup": "^3.2.1"
}
}

0 comments on commit fe5578b

Please sign in to comment.