From bf54f56315660368d8dfe02db0dcdfcf335163dc Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 7 May 2017 21:19:48 +0900 Subject: [PATCH 01/51] feat(textlint): add textlint md/txt support --- website/package.json | 3 + website/src/parsers/index.js | 6 +- website/src/parsers/md/codeExample.txt | 7 + website/src/parsers/md/index.js | 5 + .../parsers/md/textlint-markdown-to-ast.js | 28 + .../textlint-markdown-to-ast/codeExample.txt | 8 + .../textlint-markdown-to-ast/index.js | 52 ++ website/src/parsers/txt/codeExample.txt | 3 + website/src/parsers/txt/index.js | 3 + .../src/parsers/txt/textlint-txt-to-ast.js | 28 + .../textlint-txt-to-ast/codeExample.txt | 8 + .../transformers/textlint-txt-to-ast/index.js | 52 ++ website/yarn.lock | 477 +++++++++++++++++- 13 files changed, 658 insertions(+), 22 deletions(-) create mode 100644 website/src/parsers/md/codeExample.txt create mode 100644 website/src/parsers/md/index.js create mode 100644 website/src/parsers/md/textlint-markdown-to-ast.js create mode 100644 website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt create mode 100644 website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js create mode 100644 website/src/parsers/txt/codeExample.txt create mode 100644 website/src/parsers/txt/index.js create mode 100644 website/src/parsers/txt/textlint-txt-to-ast.js create mode 100644 website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt create mode 100644 website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js diff --git a/website/package.json b/website/package.json index 3846ea1f..1301f35c 100644 --- a/website/package.json +++ b/website/package.json @@ -80,6 +80,7 @@ "json-stringify-safe": "^5.0.1", "json-to-ast": "^2.0.0-alpha1.2", "lodash.isequal": "^4.5.0", + "markdown-to-ast": "^4.0.0", "parse5": "^3.0.1", "postcss": "^5.0.12", "postcss-less": "^0.15.0", @@ -99,7 +100,9 @@ "source-map": "^0.5.3", "sqlite-parser": "^1.0.0-rc3", "tern": "^0.20.0", + "textlint": "^8.0.0", "traceur": "0.0.111", + "txt-to-ast": "^1.1.0", "typescript": "2.3", "uglify-loader": "^1.4.0", "webidl2": "^2.0.11", diff --git a/website/src/parsers/index.js b/website/src/parsers/index.js index 2bd05bd7..f1cf1c43 100644 --- a/website/src/parsers/index.js +++ b/website/src/parsers/index.js @@ -1,4 +1,5 @@ -const localRequire = require.context('./', true, /^\.\/(?!utils)[^/]+\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); +// const localRequire = require.context('./', true, /^\.\/(?!utils)[^/]+\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); +const localRequire = require.context('./', true, /^\.\/(md|txt)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); const files = localRequire.keys() @@ -57,7 +58,8 @@ export const categories = }); export function getDefaultCategory() { - return categoryByID.javascript; + return categoryByID["markdown"]; + // return categoryByID.javascript; } export function getDefaultParser(category = getDefaultCategory()) { diff --git a/website/src/parsers/md/codeExample.txt b/website/src/parsers/md/codeExample.txt new file mode 100644 index 00000000..b87393ca --- /dev/null +++ b/website/src/parsers/md/codeExample.txt @@ -0,0 +1,7 @@ +# Title + +This is text. + +- list item + +[Link](http://example.com) \ No newline at end of file diff --git a/website/src/parsers/md/index.js b/website/src/parsers/md/index.js new file mode 100644 index 00000000..7d70694d --- /dev/null +++ b/website/src/parsers/md/index.js @@ -0,0 +1,5 @@ +import 'codemirror/mode/markdown/markdown'; + +export const id = 'markdown'; +export const displayName = 'Markdown'; +export const mimeTypes = ['text/markdown']; diff --git a/website/src/parsers/md/textlint-markdown-to-ast.js b/website/src/parsers/md/textlint-markdown-to-ast.js new file mode 100644 index 00000000..acd110d3 --- /dev/null +++ b/website/src/parsers/md/textlint-markdown-to-ast.js @@ -0,0 +1,28 @@ +import defaultParserInterface from '../utils/defaultParserInterface'; + +import pkg from 'markdown-to-ast/package.json'; + +const ID = 'textlint:markdown-to-ast'; + +export default { + ...defaultParserInterface, + id: ID, + displayName: "textlint", + version: pkg.version, + homepage: pkg.homepage, + locationProps: new Set(['loc', 'range']), + + loadParser(callback) { + require(['markdown-to-ast'], callback); + }, + + parse(parser, text) { + return parser.parse(text); + }, + + opensByDefault(node, key) { + return key === 'rules'; + }, + + _ignoredProperties: new Set(['location']) +}; diff --git a/website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt b/website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt new file mode 100644 index 00000000..17806f58 --- /dev/null +++ b/website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt @@ -0,0 +1,8 @@ +module.exports = function (context) { + const {Syntax, RuleError, report, getSource} = context; + return { + [Syntax.Str](node){ + report(node, new Error("error")); + } + }; +} diff --git a/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js b/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js new file mode 100644 index 00000000..e571d888 --- /dev/null +++ b/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js @@ -0,0 +1,52 @@ +import compileModule from '../../../utils/compileModule'; +import pkg from 'textlint/package.json'; + +const ID = 'textlint:markdown'; + +function formatResults(results, code) { + const format = (message) => { + return formatResult(message, code); + }; + return results.messages.length === 0 + ? 'Lint rule not fired.' + : results.messages.map(format).join('').trim(); +} + +function formatResult(result, code) { + const pointer = '-'.repeat(result.column - 1) + '^'; + console.log(code.split('\n')[result.line - 1]); + return ` +| ${result.message} (at ${result.line}:${result.column}) + ${code.split('\n')[result.line - 1] || ''} +| ${pointer} +`; +} + +export default { + id: ID, + displayName: ID, + version: pkg.version, + homepage: pkg.homepage, + + defaultParserID: 'textlint:markdown-to-ast', + + loadTransformer(callback) { + require(['textlint/lib/textlint-core'], (TextLintCore) => { + callback({TextLintCore}); + }) + }, + + transform({TextLintCore}, transformCode, code) { + const textlintCore = new TextLintCore(); + let rule = compileModule( // eslint-disable-line no-shadow + transformCode + ); + textlintCore.setupRules({ + 'astExplorerRule': rule, + }); + return textlintCore.lintText(code, '.md').then(result => { + return formatResults(result, code); + }); + }, +}; + diff --git a/website/src/parsers/txt/codeExample.txt b/website/src/parsers/txt/codeExample.txt new file mode 100644 index 00000000..f2681843 --- /dev/null +++ b/website/src/parsers/txt/codeExample.txt @@ -0,0 +1,3 @@ +■ Title + +This is plain texts. \ No newline at end of file diff --git a/website/src/parsers/txt/index.js b/website/src/parsers/txt/index.js new file mode 100644 index 00000000..3fb0c19e --- /dev/null +++ b/website/src/parsers/txt/index.js @@ -0,0 +1,3 @@ +export const id = 'txt'; +export const displayName = 'Plain text'; +export const mimeTypes = ['text/plain']; diff --git a/website/src/parsers/txt/textlint-txt-to-ast.js b/website/src/parsers/txt/textlint-txt-to-ast.js new file mode 100644 index 00000000..52bae8f7 --- /dev/null +++ b/website/src/parsers/txt/textlint-txt-to-ast.js @@ -0,0 +1,28 @@ +import defaultParserInterface from '../utils/defaultParserInterface'; + +import pkg from 'txt-to-ast/package.json'; + +const ID = 'textlint:txt-to-ast'; + +export default { + ...defaultParserInterface, + id: ID, + displayName: "textlint", + version: pkg.version, + homepage: pkg.homepage, + locationProps: new Set(['loc', 'range']), + + loadParser(callback) { + require(['txt-to-ast'], callback); + }, + + parse(parser, text) { + return parser.parse(text); + }, + + opensByDefault(node, key) { + return key === 'rules'; + }, + + _ignoredProperties: new Set(['location']) +}; diff --git a/website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt b/website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt new file mode 100644 index 00000000..17806f58 --- /dev/null +++ b/website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt @@ -0,0 +1,8 @@ +module.exports = function (context) { + const {Syntax, RuleError, report, getSource} = context; + return { + [Syntax.Str](node){ + report(node, new Error("error")); + } + }; +} diff --git a/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js b/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js new file mode 100644 index 00000000..d0cd5bba --- /dev/null +++ b/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js @@ -0,0 +1,52 @@ +import compileModule from '../../../utils/compileModule'; +import pkg from 'textlint/package.json'; + +const ID = 'textlint:txt'; + +function formatResults(results, code) { + const format = (message) => { + return formatResult(message, code); + }; + return results.messages.length === 0 + ? 'Lint rule not fired.' + : results.messages.map(format).join('').trim(); +} + +function formatResult(result, code) { + const pointer = '-'.repeat(result.column - 1) + '^'; + console.log(code.split('\n')[result.line - 1]); + return ` +| ${result.message} (at ${result.line}:${result.column}) + ${code.split('\n')[result.line - 1] || ''} +| ${pointer} +`; +} + +export default { + id: ID, + displayName: ID, + version: pkg.version, + homepage: pkg.homepage, + + defaultParserID: 'textlint:txt-to-ast', + + loadTransformer(callback) { + require(['textlint/lib/textlint-core'], (TextLintCore) => { + callback({TextLintCore}); + }) + }, + + transform({TextLintCore}, transformCode, code) { + const textlintCore = new TextLintCore(); + let rule = compileModule( // eslint-disable-line no-shadow + transformCode + ); + textlintCore.setupRules({ + 'astExplorerRule': rule, + }); + return textlintCore.lintText(code, '.txt').then(result => { + return formatResults(result, code); + }); + }, +}; + diff --git a/website/yarn.lock b/website/yarn.lock index a6c0a012..c0c707bc 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -2,6 +2,16 @@ # yarn lockfile v1 +"@azu/format-text@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@azu/format-text/-/format-text-1.0.1.tgz#6967350a94640f6b02855169bd897ce54d6cebe2" + +"@azu/style-format@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@azu/style-format/-/style-format-1.0.0.tgz#e70187f8a862e191b1bce6c0268f13acd3a56b20" + dependencies: + "@azu/format-text" "^1.0.1" + "@glimmer/compiler@^0.22.0": version "0.22.0" resolved "https://registry.yarnpkg.com/@glimmer/compiler/-/compiler-0.22.0.tgz#8fd2e80e1e6fc6e355819f180feb189f457184f0" @@ -28,6 +38,10 @@ dependencies: "@glimmer/util" "^0.22.0" +"@textlint/ast-node-types@^1.1.2": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-1.1.2.tgz#58bc95a6826b84eb1f1671be5921aa243409fb31" + "@types/node@^6.0.46": version "6.0.65" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.65.tgz#c00faa7ffcfc9842b5dd7bf650872562504d5670" @@ -159,6 +173,12 @@ array-find@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-find/-/array-find-1.0.0.tgz#6c8e286d11ed768327f8e62ecee87353ca3e78b8" +array-iterate@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-iterate/-/array-iterate-1.1.0.tgz#4f13148ffffa5f2756b50460e5eac8eed31a14e6" + dependencies: + has "^1.0.1" + array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -1323,6 +1343,10 @@ babylon@^6.0.18, babylon@^6.1.21, babylon@^6.11.0, babylon@^6.15.0, babylon@^6.8 version "6.16.1" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3" +bail@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.1.tgz#912579de8b391aadf3c5fdf4cd2a0fc225df3bc2" + balanced-match@^0.4.1, balanced-match@^0.4.2: version "0.4.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" @@ -1355,7 +1379,7 @@ bluebird@^2.9.33: version "2.11.0" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" -bluebird@^3.4.7: +bluebird@^3.0.1, bluebird@^3.0.5, bluebird@^3.4.7: version "3.5.0" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" @@ -1373,6 +1397,10 @@ boom@2.x.x: dependencies: hoek "2.x.x" +boundary@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" + brace-expansion@^1.0.0: version "1.1.6" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.6.tgz#7197d7eaa9b87e648390ea61fc66c84427420df9" @@ -1516,10 +1544,20 @@ caniuse-db@^1.0.30000346, caniuse-db@^1.0.30000631, caniuse-db@^1.0.30000634: version "1.0.30000637" resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000637.tgz#c02430cb29447eb561373bab360d834a2639b42c" +carrack@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/carrack/-/carrack-0.0.5.tgz#ab28fbedcd8d2b953d1643353e262272bf0c4bdb" + dependencies: + bluebird "^3.0.1" + caseless@~0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" +ccount@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.1.tgz#665687945168c218ec77ff61a4155ae00227a96c" + center-align@^0.1.1: version "0.1.3" resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" @@ -1545,6 +1583,26 @@ chalk@~0.4.0: has-color "~0.1.0" strip-ansi "~0.1.0" +character-entities-html4@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.0.tgz#1ab08551d3ce1fa1df08d00fb9ca1defb147a06c" + +character-entities-legacy@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.0.tgz#b18aad98f6b7bcc646c1e4c81f9f1956376a561a" + +character-entities@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.0.tgz#a683e2cf75dbe8b171963531364e58e18a1b155f" + +character-reference-invalid@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.0.tgz#dec9ad1dfb9f8d06b4fcdaa2adc3c4fd97af1e68" + +charenc@~0.0.1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + chokidar@^1.4.3: version "1.6.1" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.6.1.tgz#2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2" @@ -1642,6 +1700,10 @@ codemirror@^5.22.0: version "5.24.2" resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.24.2.tgz#b55ca950fa009709c37df68eb133310ed89cf2fe" +collapse-white-space@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.2.tgz#9c463fb9c6d190d2dcae21a356a01bcae9eeef6d" + color-convert@^1.3.0: version "1.9.0" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" @@ -1716,7 +1778,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@^1.4.6, concat-stream@^1.5.2: +concat-stream@^1.4.6, concat-stream@^1.5.1, concat-stream@^1.5.2: version "1.6.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" dependencies: @@ -1810,6 +1872,10 @@ cross-spawn@^3.0.1: lru-cache "^4.0.1" which "^1.2.9" +crypt@~0.0.1: + version "0.0.2" + resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + cryptiles@2.x.x: version "2.0.5" resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" @@ -1970,7 +2036,7 @@ debug@2.2.0, debug@~2.2.0: dependencies: ms "0.7.1" -debug@^2.1.1, debug@^2.2.0: +debug@^2.1.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0: version "2.6.3" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.3.tgz#0f7eb8c30965ec08c72accfa0130c8b79984141d" dependencies: @@ -1980,6 +2046,10 @@ decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + deep-extend@~0.4.0: version "0.4.1" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.1.tgz#efe4113d08085f4e6f9687759810f807469e2253" @@ -2062,6 +2132,10 @@ detective@^4.3.1: acorn "^4.0.3" defined "^1.0.0" +diff@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/diff/-/diff-2.2.3.tgz#60eafd0d28ee906e4e8ff0a52c1229521033bf99" + diffie-hellman@^5.0.0: version "5.0.2" resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" @@ -2224,7 +2298,7 @@ error-ex@^1.2.0: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.7.0: +es-abstract@^1.4.3, es-abstract@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.7.0.tgz#dfade774e01bfcd97f96180298c449c8623fb94c" dependencies: @@ -2621,7 +2695,7 @@ exports-loader@^0.6.2: loader-utils "^1.0.2" source-map "0.5.x" -extend@~3.0.0: +extend@^3.0.0, extend@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" @@ -2842,6 +2916,10 @@ get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" +get-stdin@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" + getpass@^0.1.1: version "0.1.6" resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.6.tgz#283ffd9fc1256840875311c1b60e8c40187110e6" @@ -2878,7 +2956,7 @@ glob@5.0.x, glob@^5.0.14, glob@^5.0.15: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.0.0, glob@^7.0.3, glob@^7.0.5: +glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" dependencies: @@ -3203,6 +3281,10 @@ inquirer@^0.12.0: strip-ansi "^3.0.0" through "^2.3.6" +interop-require@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/interop-require/-/interop-require-1.0.0.tgz#e53103679944c88d7e6105b62a9f4475c783971e" + interpret@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.1.tgz#d579fb7f693b858004947af39fa0db49f795602c" @@ -3232,6 +3314,21 @@ is-absolute@^0.2.3: is-relative "^0.2.1" is-windows "^0.2.0" +is-alphabetical@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.0.tgz#e2544c13058255f2144cb757066cd3342a1c8c46" + +is-alphanumeric@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" + +is-alphanumerical@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.0.tgz#e06492e719c1bf15dec239e4f1af5f67b4d6e7bf" + dependencies: + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -3242,7 +3339,7 @@ is-binary-path@^1.0.0: dependencies: binary-extensions "^1.0.0" -is-buffer@^1.0.2: +is-buffer@^1.0.2, is-buffer@^1.1.4, is-buffer@~1.1.1: version "1.1.5" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" @@ -3260,6 +3357,10 @@ is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" +is-decimal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.0.tgz#940579b6ea63c628080a69e62bda88c8470b4fe0" + is-dotfile@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.2.tgz#2c132383f39199f8edc268ca01b9b007d205cc4d" @@ -3278,6 +3379,10 @@ is-extglob@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" +is-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-file/-/is-file-1.0.0.tgz#28a44cfbd9d3db193045f22b65fce8edf9620596" + is-finite@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" @@ -3300,6 +3405,10 @@ is-glob@^2.0.0, is-glob@^2.0.1: dependencies: is-extglob "^1.0.0" +is-hexadecimal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.0.tgz#5c459771d2af9a2e3952781fd54fcb1bcfe4113c" + is-integer@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/is-integer/-/is-integer-1.0.6.tgz#5273819fada880d123e1ac00a938e7172dd8d95e" @@ -3337,7 +3446,7 @@ is-path-inside@^1.0.0: dependencies: path-is-inside "^1.0.1" -is-plain-obj@^1.0.0: +is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" @@ -3399,10 +3508,18 @@ is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" +is-whitespace-character@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.0.tgz#bbf4a83764ead0d451bec2a55218e91961adc275" + is-windows@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" +is-word-character@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.0.tgz#a3a9e5ddad70c5c2ee36f4a9cfc9a53f44535247" + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -3461,7 +3578,7 @@ js-yaml@3.4.5: argparse "^1.0.2" esprima "^2.6.0" -js-yaml@^3.4.3, js-yaml@^3.5.1, js-yaml@^3.5.2: +js-yaml@^3.2.4, js-yaml@^3.4.3, js-yaml@^3.5.1, js-yaml@^3.5.2, js-yaml@^3.6.1: version "3.8.2" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.8.2.tgz#02d3e2c0f6beab20248d412c352203827d786721" dependencies: @@ -3884,6 +4001,16 @@ lodash@^4.0.0, lodash@^4.13.1, lodash@^4.14.0, lodash@^4.17.3, lodash@^4.2.0, lo version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + dependencies: + chalk "^1.0.0" + +longest-streak@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.1.tgz#42d291b5411e40365c00e63193497e2247316e35" + longest@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" @@ -3913,10 +4040,47 @@ macaddress@^0.2.8: version "0.2.8" resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" +map-like@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/map-like/-/map-like-1.1.2.tgz#f42a301ebd9290372b9e4ddc49e5df9804a507b9" + +markdown-escapes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.0.tgz#c8ca19f1d94d682459e0a93c86db27a7ef716b23" + +markdown-table@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.0.tgz#1f5ae61659ced8808d882554c32e8b3f38dd1143" + +markdown-to-ast@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/markdown-to-ast/-/markdown-to-ast-4.0.0.tgz#37d4b0d9d84b19c8dd713e56eaf69dcc7ce2e6c3" + dependencies: + "@textlint/ast-node-types" "^1.1.2" + debug "^2.1.3" + remark "^7.0.1" + structured-source "^3.0.2" + traverse "^0.6.6" + math-expression-evaluator@^1.2.14: version "1.2.16" resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.16.tgz#b357fa1ca9faefb8e48d10c14ef2bcb2d9f0a7c9" +md5@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" + dependencies: + charenc "~0.0.1" + crypt "~0.0.1" + is-buffer "~1.1.1" + +mdast-util-compact@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-1.0.0.tgz#4c94dedfe35932d5457f29b650b330fdc73e994a" + dependencies: + unist-util-modify-children "^1.0.0" + unist-util-visit "^1.1.0" + memory-fs@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290" @@ -4213,7 +4377,7 @@ object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" -object-keys@^1.0.10, object-keys@^1.0.8: +object-keys@^1.0.10, object-keys@^1.0.8, object-keys@^1.0.9: version "1.0.11" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.11.tgz#c54601778ad560f1142ce0e01bcca8b56d13426d" @@ -4270,7 +4434,7 @@ optionator@^0.6.0: type-check "~0.3.1" wordwrap "~0.0.2" -optionator@^0.8.1, optionator@^0.8.2: +optionator@^0.8.0, optionator@^0.8.1, optionator@^0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" dependencies: @@ -4327,6 +4491,18 @@ parse-asn1@^5.0.0: evp_bytestokey "^1.0.0" pbkdf2 "^3.0.3" +parse-entities@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.1.0.tgz#4bc58f35fdc8e65dded35a12f2e40223ca24a3f7" + dependencies: + character-entities "^1.0.0" + character-entities-legacy "^1.0.0" + character-reference-invalid "^1.0.0" + has "^1.0.1" + is-alphanumerical "^1.0.0" + is-decimal "^1.0.0" + is-hexadecimal "^1.0.0" + parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -4356,7 +4532,7 @@ path-exists@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-1.0.0.tgz#d5a8998eb71ef37a74c34eb0d9eba6e878eea081" -path-exists@^2.0.0: +path-exists@^2.0.0, path-exists@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" dependencies: @@ -4374,6 +4550,12 @@ path-parse@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" +path-to-glob-pattern@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-to-glob-pattern/-/path-to-glob-pattern-1.0.1.tgz#203348a166c2b68936b59f74ae2070bf1520012d" + dependencies: + shelljs "^0.7.6" + path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -4422,6 +4604,10 @@ pluralize@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" +pluralize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-2.0.0.tgz#72b726aa6fac1edeee42256c7d8dc256b335677f" + portfinder@0.4.x: version "0.4.0" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-0.4.0.tgz#a3ffadffafe4fb98e0601a85eda27c27ce84ca1e" @@ -4838,6 +5024,18 @@ raw-loader@^0.5.1: version "0.5.1" resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" +rc-config-loader@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/rc-config-loader/-/rc-config-loader-1.0.2.tgz#c5e903ab36c22204f3cca9d9ddfd7e68fe3758eb" + dependencies: + debug "^2.2.0" + js-yaml "^3.6.1" + json5 "^0.5.0" + object-assign "^4.1.0" + object-keys "^1.0.9" + path-exists "^2.1.0" + require-uncached "^1.0.3" + rc@~1.1.6: version "1.1.7" resolved "https://registry.yarnpkg.com/rc/-/rc-1.1.7.tgz#c5ea564bb07aff9fd3a5b32e906c1d3a65940fea" @@ -4880,7 +5078,7 @@ read-pkg-up@^1.0.1: find-up "^1.0.0" read-pkg "^1.0.0" -read-pkg@^1.0.0: +read-pkg@^1.0.0, read-pkg@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" dependencies: @@ -5083,6 +5281,54 @@ relateurl@0.2.x: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" +remark-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-3.0.1.tgz#1b9f841a44d8f4fbf2246850265459a4eb354c80" + dependencies: + collapse-white-space "^1.0.2" + has "^1.0.1" + is-alphabetical "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + is-word-character "^1.0.0" + markdown-escapes "^1.0.0" + parse-entities "^1.0.2" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + trim "0.0.1" + trim-trailing-lines "^1.0.0" + unherit "^1.0.4" + unist-util-remove-position "^1.0.0" + vfile-location "^2.0.0" + xtend "^4.0.1" + +remark-stringify@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-3.0.1.tgz#79242bebe0a752081b5809516fa0c06edec069cf" + dependencies: + ccount "^1.0.0" + is-alphanumeric "^1.0.0" + is-decimal "^1.0.0" + is-whitespace-character "^1.0.0" + longest-streak "^2.0.1" + markdown-escapes "^1.0.0" + markdown-table "^1.1.0" + mdast-util-compact "^1.0.0" + parse-entities "^1.0.2" + repeat-string "^1.5.4" + state-toggle "^1.0.0" + stringify-entities "^1.0.1" + unherit "^1.0.4" + xtend "^4.0.1" + +remark@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/remark/-/remark-7.0.1.tgz#a5de4dacfabf0f60a49826ef24c479807f904bfb" + dependencies: + remark-parse "^3.0.0" + remark-stringify "^3.0.0" + unified "^6.0.0" + renderkid@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.1.tgz#898cabfc8bede4b7b91135a3ffd323e58c0db319" @@ -5097,7 +5343,7 @@ repeat-element@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" -repeat-string@^1.5.2: +repeat-string@^1.5.2, repeat-string@^1.5.4: version "1.6.1" resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" @@ -5113,6 +5359,10 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" +replace-ext@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" + request@^2.79.0: version "2.81.0" resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" @@ -5152,7 +5402,7 @@ require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" -require-uncached@^1.0.2: +require-uncached@^1.0.2, require-uncached@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" dependencies: @@ -5284,7 +5534,7 @@ shelljs@^0.6.0: version "0.6.1" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.6.1.tgz#ec6211bed1920442088fe0f70b2837232ed2c8a8" -shelljs@^0.7.5: +shelljs@^0.7.5, shelljs@^0.7.6: version "0.7.7" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.7.tgz#b2f5c77ef97148f4b4f6e22682e10bba8667cff1" dependencies: @@ -5457,6 +5707,10 @@ stable@~0.1.3: version "0.1.6" resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.6.tgz#910f5d2aed7b520c6e777499c1f32e139fdecb10" +state-toggle@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.0.tgz#d20f9a616bb4f0c3b98b91922d25b640aa2bc425" + stream-browserify@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" @@ -5493,10 +5747,28 @@ string-width@^2.0.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^3.0.0" +string.prototype.padstart@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.padstart/-/string.prototype.padstart-3.0.0.tgz#5bcfad39f4649bb2d031292e19bcf0b510d4b242" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.4.3" + function-bind "^1.0.2" + string_decoder@^0.10.25, string_decoder@~0.10.x: version "0.10.31" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" +stringify-entities@^1.0.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.0.tgz#2244a516c4f1e8e01b73dad01023016776abd917" + dependencies: + character-entities-html4 "^1.0.0" + character-entities-legacy "^1.0.0" + has "^1.0.1" + is-alphanumerical "^1.0.0" + is-hexadecimal "^1.0.0" + stringmap@~0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/stringmap/-/stringmap-0.2.2.tgz#556c137b258f942b8776f5b2ef582aa069d7d1b1" @@ -5537,6 +5809,12 @@ strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" +structured-source@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" + dependencies: + boundary "^1.0.1" + style-loader@^0.13.0: version "0.13.2" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.13.2.tgz#74533384cf698c7104c7951150b49717adc2f3bb" @@ -5626,10 +5904,77 @@ tern@^0.20.0: minimatch "0.2" resolve-from "2.0.0" -text-table@~0.2.0: +text-table@^0.2.0, text-table@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" +textlint-formatter@^1.7.3: + version "1.8.0" + resolved "https://registry.yarnpkg.com/textlint-formatter/-/textlint-formatter-1.8.0.tgz#3254e9bd7d4c8cf031b74778bf21bc086faff3eb" + dependencies: + "@azu/format-text" "^1.0.1" + "@azu/style-format" "^1.0.0" + chalk "^1.0.0" + concat-stream "^1.5.1" + js-yaml "^3.2.4" + optionator "^0.8.1" + pluralize "^2.0.0" + string-width "^1.0.1" + string.prototype.padstart "^3.0.0" + strip-ansi "^3.0.1" + table "^3.7.8" + text-table "^0.2.0" + try-resolve "^1.0.1" + xml-escape "^1.0.0" + +textlint-plugin-markdown@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/textlint-plugin-markdown/-/textlint-plugin-markdown-2.0.1.tgz#25731b8d04680a126fc7c205a8cc6f75a33f612f" + dependencies: + markdown-to-ast "^4.0.0" + +textlint-plugin-text@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/textlint-plugin-text/-/textlint-plugin-text-1.1.0.tgz#6d1ee2151cb10492ee858a8ebd9007b4cc945341" + dependencies: + txt-to-ast "^1.1.0" + +textlint@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/textlint/-/textlint-8.0.0.tgz#137f5d04e954b877eb5a3c0b23537b4c29b8d9c6" + dependencies: + bluebird "^3.0.5" + carrack "0.0.5" + chalk "^1.1.1" + debug "^2.1.0" + deep-equal "^1.0.1" + diff "^2.2.2" + file-entry-cache "^2.0.0" + get-stdin "^5.0.1" + glob "^7.1.1" + interop-require "^1.0.0" + is-file "^1.0.0" + log-symbols "^1.0.2" + map-like "^1.0.1" + md5 "^2.2.1" + mkdirp "^0.5.0" + object-assign "^4.0.1" + optionator "^0.8.0" + path-to-glob-pattern "^1.0.1" + rc-config-loader "^1.0.2" + read-pkg "^1.1.0" + shelljs "^0.7.6" + string-width "^1.0.1" + structured-source "^3.0.2" + text-table "^0.2.0" + textlint-formatter "^1.7.3" + textlint-plugin-markdown "^2.0.1" + textlint-plugin-text "^1.1.0" + traverse "^0.6.6" + try-resolve "^1.0.1" + txt-ast-traverse "^1.2.0" + unique-concat "^0.2.2" + through@^2.3.6, through@~2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" @@ -5674,11 +6019,27 @@ traceur@0.0.111: semver "^4.3.3" source-map-support "~0.2.8" +traverse@^0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" + trim-right@^1.0.0, trim-right@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" -try-resolve@^1.0.0: +trim-trailing-lines@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz#7aefbb7808df9d669f6da2e438cac8c46ada7684" + +trim@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" + +trough@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.0.tgz#6bdedfe7f2aa49a6f3c432257687555957f342fd" + +try-resolve@^1.0.0, try-resolve@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" @@ -5704,6 +6065,14 @@ tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" +txt-ast-traverse@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/txt-ast-traverse/-/txt-ast-traverse-1.2.1.tgz#58e3fe43ddb5db5ca8b51142943b0d1b970def41" + +txt-to-ast@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/txt-to-ast/-/txt-to-ast-1.1.0.tgz#eb91a7484ff4a5e136f6d24ce5a47a86ccc11008" + type-check@~0.3.1, type-check@~0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" @@ -5754,6 +6123,26 @@ underscore@~1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" +unherit@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" + dependencies: + inherits "^2.0.1" + xtend "^4.0.1" + +unified@^6.0.0: + version "6.1.3" + resolved "https://registry.yarnpkg.com/unified/-/unified-6.1.3.tgz#c26a9df2c56f3def938309253928f37150c70c6e" + dependencies: + bail "^1.0.0" + extend "^3.0.0" + has "^1.0.1" + is-plain-obj "^1.1.0" + trough "^1.0.0" + vfile "^2.0.0" + x-is-function "^1.0.4" + x-is-string "^0.1.0" + union@~0.4.3: version "0.4.6" resolved "https://registry.yarnpkg.com/union/-/union-0.4.6.tgz#198fbdaeba254e788b0efcb630bc11f24a2959e0" @@ -5774,6 +6163,32 @@ uniqs@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" +unique-concat@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/unique-concat/-/unique-concat-0.2.2.tgz#9210f9bdcaacc5e1e3929490d7c019df96f18712" + +unist-util-modify-children@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-modify-children/-/unist-util-modify-children-1.1.0.tgz#559203ae85d7a76283277be1abfbaf595a177ead" + dependencies: + array-iterate "^1.0.0" + +unist-util-remove-position@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-1.1.0.tgz#2444fedc344bc5f540dab6353e013b6d78101dc2" + dependencies: + unist-util-visit "^1.1.0" + +unist-util-stringify-position@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-1.1.0.tgz#e8ba9d6b6af891b5f8336b3a31c63a9dc85c2af0" + dependencies: + has "^1.0.1" + +unist-util-visit@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-1.1.1.tgz#e917a3b137658b335cb4420c7da2e74d928e4e94" + upper-case@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" @@ -5849,6 +6264,20 @@ verror@1.3.6: dependencies: extsprintf "1.0.2" +vfile-location@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.1.tgz#0bf8816f732b0f8bd902a56fda4c62c8e935dc52" + +vfile@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.0.1.tgz#bd48e68e8a2322dff0d162a37f45e70d9bb30466" + dependencies: + has "^1.0.1" + is-buffer "^1.1.4" + replace-ext "1.0.0" + unist-util-stringify-position "^1.0.0" + x-is-string "^0.1.0" + vm-browserify@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" @@ -5972,15 +6401,23 @@ write@^0.2.1: dependencies: mkdirp "^0.5.1" +x-is-function@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/x-is-function/-/x-is-function-1.0.4.tgz#5d294dc3d268cbdd062580e0c5df77a391d1fa1e" + +x-is-string@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" + xml-char-classes@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" -xml-escape@~1.0.0: +xml-escape@^1.0.0, xml-escape@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/xml-escape/-/xml-escape-1.0.0.tgz#00963d697b2adf0c185c4e04e73174ba9b288eb2" -xtend@^4.0.0: +xtend@^4.0.0, xtend@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" From b93b385677741c338835e7a1022a7276a9c8b5c9 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 7 May 2017 21:36:57 +0900 Subject: [PATCH 02/51] chore(docs): describe fork version --- README.md | 18 ++++++++++++ website/index.ejs | 15 ++-------- website/package.json | 4 ++- website/yarn.lock | 69 ++++++++++++++++++++++++++++++++++++++++++-- 4 files changed, 90 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 1564badc..0b1ceab9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,23 @@ ## AST explorer +## Fork version for textlint + +This version limited for [textlint](http://textlint.github.io/ "textlint"). + +- Markdown +- Plain text + +Bellow is original text. + +Please Visit [https://textlint.github.io/astexplorer](https://textlint.github.io/astexplorer). + +**Notes** + +- Deploy: use `website/deploy.sh` + +------ + + [![Join the chat at https://gitter.im/astexplorer/Lobby](https://badges.gitter.im/astexplorer/Lobby.svg)](https://gitter.im/astexplorer/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Paste or drop code into the editor and inspect the generated AST. diff --git a/website/index.ejs b/website/index.ejs index 2bf36496..c9b028b2 100644 --- a/website/index.ejs +++ b/website/index.ejs @@ -1,7 +1,7 @@ - AST explorer + textlint AST explorer <%= htmlWebpackPlugin.files.webpackManifest %> @@ -19,19 +19,8 @@ and WebPack | - GitHub + GitHub - - - - diff --git a/website/package.json b/website/package.json index 1301f35c..37807c34 100644 --- a/website/package.json +++ b/website/package.json @@ -23,6 +23,7 @@ "exports-loader": "^0.6.2", "extract-text-webpack-plugin": "^2.0.0", "file-loader": "^0.10.0", + "gh-pages": "^0.12.0", "html-webpack-plugin": "^2.28.0", "http-server": "^0.9.0", "inline-manifest-webpack-plugin": "^3.0.1", @@ -113,6 +114,7 @@ "build": "rimraf ../out/* && cross-env NODE_ENV=production webpack", "watch": "webpack -dw", "lint": "eslint src/", - "fontcustom": "fontcustom compile ./fontcustom/input-svg/ --config=./fontcustom/config.yml" + "fontcustom": "fontcustom compile ./fontcustom/input-svg/ --config=./fontcustom/config.yml", + "deploy": "npm run build && gh-pages -d ../out" } } diff --git a/website/yarn.lock b/website/yarn.lock index c0c707bc..7161bc2b 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -258,6 +258,12 @@ async@0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/async/-/async-0.9.0.tgz#ac3613b1da9bed1b47510bb4651b8931e47146c7" +async@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/async/-/async-2.1.2.tgz#612a4ab45ef42a70cde806bad86ee6db047e8385" + dependencies: + lodash "^4.14.0" + async@^1.4.0, async@^1.5.0: version "1.5.2" resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" @@ -1704,6 +1710,12 @@ collapse-white-space@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.2.tgz#9c463fb9c6d190d2dcae21a356a01bcae9eeef6d" +collections@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/collections/-/collections-0.2.2.tgz#1f23026b2ef36f927eecc901e99c5f0d48fa334e" + dependencies: + weak-map "1.0.0" + color-convert@^1.3.0: version "1.9.0" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" @@ -1750,7 +1762,7 @@ combined-stream@^1.0.5, combined-stream@~1.0.5: dependencies: delayed-stream "~1.0.0" -commander@2.9.x, commander@^2.5.0: +commander@2.9.0, commander@2.9.x, commander@^2.5.0: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" dependencies: @@ -2926,6 +2938,18 @@ getpass@^0.1.1: dependencies: assert-plus "^1.0.0" +gh-pages@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-0.12.0.tgz#d951e3ed98b85699d4b0418eb1a15b1a04988dc1" + dependencies: + async "2.1.2" + commander "2.9.0" + globby "^6.1.0" + graceful-fs "4.1.10" + q "1.4.1" + q-io "1.13.2" + rimraf "^2.5.4" + glob-base@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" @@ -2990,6 +3014,20 @@ globby@^5.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +graceful-fs@4.1.10: + version "4.1.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" + graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4: version "4.1.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" @@ -4138,6 +4176,10 @@ mime@1.3.x, mime@^1.2.11: version "1.3.4" resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" +mimeparse@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/mimeparse/-/mimeparse-0.1.4.tgz#dafb02752370fd226093ae3152c271af01ac254a" + minimalistic-assert@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" @@ -4982,10 +5024,25 @@ punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" -q@^1.1.2: +q-io@1.13.2: + version "1.13.2" + resolved "https://registry.yarnpkg.com/q-io/-/q-io-1.13.2.tgz#eea130d481ddb5e1aa1bc5a66855f7391d06f003" + dependencies: + collections "^0.2.0" + mime "^1.2.11" + mimeparse "^0.1.4" + q "^1.0.1" + qs "^1.2.1" + url2 "^0.0.0" + +q@1.4.1, q@^1.0.1, q@^1.1.2: version "1.4.1" resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" +qs@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" + qs@~2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" @@ -6208,6 +6265,10 @@ url-loader@^0.5.7: loader-utils "^1.0.2" mime "1.3.x" +url2@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/url2/-/url2-0.0.0.tgz#4eaabd1d5c3ac90d62ab4485c998422865a04b1a" + url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -6292,6 +6353,10 @@ watchpack@^1.2.0: chokidar "^1.4.3" graceful-fs "^4.1.2" +weak-map@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.0.tgz#b66e56a9df0bd25a76bbf1b514db129080614a37" + webidl2@^2.0.11: version "2.2.2" resolved "https://registry.yarnpkg.com/webidl2/-/webidl2-2.2.2.tgz#aa2862de82b3756dcfab6babc19782617388fe76" From e02b375ab8ad14ff9285d07c280be6351f4e43ad Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 7 May 2017 21:43:05 +0900 Subject: [PATCH 03/51] fix(menu): hide save --- website/index.ejs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/index.ejs b/website/index.ejs index c9b028b2..dfa624c1 100644 --- a/website/index.ejs +++ b/website/index.ejs @@ -5,6 +5,12 @@ <%= htmlWebpackPlugin.files.webpackManifest %> + +
From e08e7ed909f73d64b844b7cda73753445b99a429 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 20 Jan 2018 16:33:07 +0900 Subject: [PATCH 04/51] feat(textlint): update @textlint parser --- website/package.json | 5 +- website/src/parsers/index.js | 5 +- .../parsers/md/textlint-markdown-to-ast.js | 2 +- .../src/parsers/txt/textlint-txt-to-ast.js | 4 +- website/yarn.lock | 107 +++++++++++++++++- 5 files changed, 114 insertions(+), 9 deletions(-) diff --git a/website/package.json b/website/package.json index 37807c34..6fcd2a79 100644 --- a/website/package.json +++ b/website/package.json @@ -41,6 +41,8 @@ "dependencies": { "@glimmer/compiler": "^0.22.0", "@glimmer/syntax": "^0.22.0", + "@textlint/markdown-to-ast": "^6.0.4", + "@textlint/text-to-ast": "^3.0.4", "acorn": "^4.0.4", "acorn-jsx": "^3.0.1", "acorn-to-esprima": "^1.0.2", @@ -81,7 +83,6 @@ "json-stringify-safe": "^5.0.1", "json-to-ast": "^2.0.0-alpha1.2", "lodash.isequal": "^4.5.0", - "markdown-to-ast": "^4.0.0", "parse5": "^3.0.1", "postcss": "^5.0.12", "postcss-less": "^0.15.0", @@ -102,8 +103,8 @@ "sqlite-parser": "^1.0.0-rc3", "tern": "^0.20.0", "textlint": "^8.0.0", + "textlint-plugin-html": "^0.1.7", "traceur": "0.0.111", - "txt-to-ast": "^1.1.0", "typescript": "2.3", "uglify-loader": "^1.4.0", "webidl2": "^2.0.11", diff --git a/website/src/parsers/index.js b/website/src/parsers/index.js index f1cf1c43..1265a0b1 100644 --- a/website/src/parsers/index.js +++ b/website/src/parsers/index.js @@ -1,10 +1,10 @@ // const localRequire = require.context('./', true, /^\.\/(?!utils)[^/]+\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); -const localRequire = require.context('./', true, /^\.\/(md|txt)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); +const localRequire = require.context('./', true, /^\.\/(md|html|txt)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); const files = localRequire.keys() .map(name => name.split('/').slice(1)); - +console.log("files", files); const categoryByID = {}; const parserByID = {}; const transformerByID = {}; @@ -22,6 +22,7 @@ export const categories = .map(([catName]) => { let category = localRequire(`./${catName}/index.js`); + console.log(category) categoryByID[category.id] = category; category.codeExample = localRequire(`./${catName}/codeExample.txt`); diff --git a/website/src/parsers/md/textlint-markdown-to-ast.js b/website/src/parsers/md/textlint-markdown-to-ast.js index acd110d3..00bf24b9 100644 --- a/website/src/parsers/md/textlint-markdown-to-ast.js +++ b/website/src/parsers/md/textlint-markdown-to-ast.js @@ -13,7 +13,7 @@ export default { locationProps: new Set(['loc', 'range']), loadParser(callback) { - require(['markdown-to-ast'], callback); + require(['@textlint/markdown-to-ast'], callback); }, parse(parser, text) { diff --git a/website/src/parsers/txt/textlint-txt-to-ast.js b/website/src/parsers/txt/textlint-txt-to-ast.js index 52bae8f7..707c41f8 100644 --- a/website/src/parsers/txt/textlint-txt-to-ast.js +++ b/website/src/parsers/txt/textlint-txt-to-ast.js @@ -13,9 +13,9 @@ export default { locationProps: new Set(['loc', 'range']), loadParser(callback) { - require(['txt-to-ast'], callback); + require(['@textlint/text-to-ast'], callback); }, - + parse(parser, text) { return parser.parse(text); }, diff --git a/website/yarn.lock b/website/yarn.lock index 7161bc2b..a21ecf71 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -42,6 +42,26 @@ version "1.1.2" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-1.1.2.tgz#58bc95a6826b84eb1f1671be5921aa243409fb31" +"@textlint/ast-node-types@^4.0.1": + version "4.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.0.1.tgz#7a051bf87b33d592c370a9fa11f6b72a14833fdc" + +"@textlint/markdown-to-ast@^6.0.4": + version "6.0.4" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-6.0.4.tgz#e0a7da156e70e08ff39e82d4097733827d521c30" + dependencies: + "@textlint/ast-node-types" "^4.0.1" + debug "^2.1.3" + remark "^7.0.1" + structured-source "^3.0.2" + traverse "^0.6.6" + +"@textlint/text-to-ast@^3.0.4": + version "3.0.4" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-3.0.4.tgz#6e2f3cf5fcc09ed0bcfecca70ca7523c7dc4631a" + dependencies: + "@textlint/ast-node-types" "^4.0.1" + "@types/node@^6.0.46": version "6.0.65" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.65.tgz#c00faa7ffcfc9842b5dd7bf650872562504d5670" @@ -282,6 +302,12 @@ atob@~1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/atob/-/atob-1.1.3.tgz#95f13629b12c3a51a5d215abdce2aa9f32f80773" +attach-ware@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/attach-ware/-/attach-ware-1.1.1.tgz#28f51393dd8bb8bdaad972342519bf09621a35a3" + dependencies: + unherit "^1.0.0" + autoprefixer@^6.3.1, autoprefixer@^6.7.6: version "6.7.7" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" @@ -1684,6 +1710,10 @@ clone@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" +co@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -2294,6 +2324,10 @@ enhanced-resolve@~0.9.0: memory-fs "^0.2.0" tapable "^0.1.8" +ent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" + entities@^1.1.1, entities@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" @@ -2383,6 +2417,10 @@ es6-weak-map@^2.0.1: es6-iterator "^2.0.1" es6-symbol "^3.1.1" +escape-html@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -3099,6 +3137,20 @@ hash.js@^1.0.0, hash.js@^1.0.3: dependencies: inherits "^2.0.1" +hast@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/hast/-/hast-0.0.2.tgz#87950b0180a71df4df9216c304d426db4ea30482" + dependencies: + bail "^1.0.0" + camelcase "^1.2.1" + ent "^2.2.0" + escape-html "^1.0.3" + htmlparser2 "^3.8.3" + param-case "^1.1.1" + property-information "^2.0.0" + trim "0.0.1" + unified "^2.1.0" + hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -3178,7 +3230,7 @@ html-webpack-plugin@^2.28.0: pretty-error "^2.0.2" toposort "^1.0.0" -htmlparser2@^3.9.0: +htmlparser2@^3.8.3, htmlparser2@^3.9.0: version "3.9.2" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.9.2.tgz#1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338" dependencies: @@ -4523,6 +4575,12 @@ param-case@2.1.x: dependencies: no-case "^2.2.0" +param-case@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-1.1.2.tgz#dcb091a43c259b9228f1c341e7b6a44ea0bf9743" + dependencies: + sentence-case "^1.1.2" + parse-asn1@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" @@ -4994,6 +5052,10 @@ promise@^7.1.1: dependencies: asap "~2.0.3" +property-information@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-2.0.0.tgz#37bbac4e3384e7efa9d04d09b0fe12e58e41804c" + prr@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" @@ -5561,6 +5623,12 @@ semver@^4.3.3: version "4.3.6" resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" +sentence-case@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-1.1.3.tgz#8034aafc2145772d3abe1509aa42c9e1042dc139" + dependencies: + lower-case "^1.1.1" + set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -5984,6 +6052,14 @@ textlint-formatter@^1.7.3: try-resolve "^1.0.1" xml-escape "^1.0.0" +textlint-plugin-html@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-0.1.7.tgz#acb90a9b8edcc013cf48b491b2a90d60321a23cf" + dependencies: + hast "0.0.2" + structured-source "^3.0.2" + traverse "^0.6.6" + textlint-plugin-markdown@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/textlint-plugin-markdown/-/textlint-plugin-markdown-2.0.1.tgz#25731b8d04680a126fc7c205a8cc6f75a33f612f" @@ -6180,13 +6256,24 @@ underscore@~1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" -unherit@^1.0.4: +unherit@^1.0.0, unherit@^1.0.4: version "1.1.0" resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.0.tgz#6b9aaedfbf73df1756ad9e316dd981885840cd7d" dependencies: inherits "^2.0.1" xtend "^4.0.1" +unified@^2.1.0: + version "2.1.4" + resolved "https://registry.yarnpkg.com/unified/-/unified-2.1.4.tgz#14bc6cd40d98ffff75b405506bad873ecbbac3ba" + dependencies: + attach-ware "^1.0.0" + bail "^1.0.0" + extend "^3.0.0" + unherit "^1.0.4" + vfile "^1.0.0" + ware "^1.3.0" + unified@^6.0.0: version "6.1.3" resolved "https://registry.yarnpkg.com/unified/-/unified-6.1.3.tgz#c26a9df2c56f3def938309253928f37150c70c6e" @@ -6329,6 +6416,10 @@ vfile-location@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.1.tgz#0bf8816f732b0f8bd902a56fda4c62c8e935dc52" +vfile@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7" + vfile@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/vfile/-/vfile-2.0.1.tgz#bd48e68e8a2322dff0d162a37f45e70d9bb30466" @@ -6345,6 +6436,12 @@ vm-browserify@0.0.4: dependencies: indexof "0.0.1" +ware@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ware/-/ware-1.3.0.tgz#d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4" + dependencies: + wrap-fn "^0.1.0" + watchpack@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.3.1.tgz#7d8693907b28ce6013e7f3610aa2a1acf07dad87" @@ -6448,6 +6545,12 @@ wrap-ansi@^2.0.0: string-width "^1.0.1" strip-ansi "^3.0.1" +wrap-fn@^0.1.0: + version "0.1.5" + resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845" + dependencies: + co "3.1.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" From 361424593ce9fd2c049f5d8f4b7ca5de1dbcf155 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 20 Jan 2018 16:33:16 +0900 Subject: [PATCH 05/51] feat(html): add html parser --- website/src/parsers/html/codeExample.txt | 12 +-- website/src/parsers/html/htmlparser2.js | 94 ------------------- website/src/parsers/html/index.js | 5 +- website/src/parsers/html/parse5.js | 79 ---------------- .../parsers/html/textlint-markdown-to-ast.js | 29 ++++++ .../textlint-markdown-to-ast/codeExample.txt | 8 ++ .../textlint-markdown-to-ast/index.js | 52 ++++++++++ 7 files changed, 95 insertions(+), 184 deletions(-) delete mode 100644 website/src/parsers/html/htmlparser2.js delete mode 100644 website/src/parsers/html/parse5.js create mode 100644 website/src/parsers/html/textlint-markdown-to-ast.js create mode 100644 website/src/parsers/html/transformers/textlint-markdown-to-ast/codeExample.txt create mode 100644 website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js diff --git a/website/src/parsers/html/codeExample.txt b/website/src/parsers/html/codeExample.txt index e18c579f..3cce0220 100644 --- a/website/src/parsers/html/codeExample.txt +++ b/website/src/parsers/html/codeExample.txt @@ -1,9 +1,5 @@ - - +

Title

- -

My First Heading

-

My first paragraph.

- - - +
+

This is a paragraph.

+
diff --git a/website/src/parsers/html/htmlparser2.js b/website/src/parsers/html/htmlparser2.js deleted file mode 100644 index 84207027..00000000 --- a/website/src/parsers/html/htmlparser2.js +++ /dev/null @@ -1,94 +0,0 @@ -import React from 'react'; -import defaultParserInterface from '../utils/defaultParserInterface'; -import pkg from 'htmlparser2/package.json'; -import SettingsRenderer from '../utils/SettingsRenderer'; - -const ID = 'htmlparser2'; -const defaultOptions = { - xmlMode: false, - lowerCaseAttributeNames: true, - lowerCaseTags: true, -}; - -const parserSettingsConfiguration = { - fields: Object.keys(defaultOptions), -}; - -export default { - ...defaultParserInterface, - - id: ID, - displayName: ID, - version: pkg.version, - homepage: pkg.homepage || 'https://github.com/fb55/htmlparser2', - locationProps: new Set(['startIndex']), - - loadParser(callback) { - require(['htmlparser2/lib/Parser', 'domhandler'], (Parser, DomHandler) => { - class Handler extends DomHandler { - constructor() { - super({ withStartIndices: true }); - } - - _setEnd(elem) { - elem.endIndex = this._parser.endIndex + 1; - } - - onprocessinginstruction(name, data) { - this._parser.endIndex = this._parser._tokenizer._index; - super.onprocessinginstruction(name, data); - } - - _addDomElement(elem) { - super._addDomElement(elem); - this._setEnd(elem); - } - } - - Handler.prototype.onclosetag = - Handler.prototype.oncommentend = - Handler.prototype.oncdataend = - function onElemEnd() { - this._setEnd(this._tagStack.pop()); - }; - - callback({ Parser, Handler }); - }); - }, - - parse({ Parser, Handler }, code, options) { - let handler = new Handler(); - new Parser(handler, {...defaultOptions, ...options}).end(code); - return handler.dom; - }, - - nodeToRange(node) { - if (node.type) { - return [node.startIndex, node.endIndex]; - } - }, - - opensByDefault(node, key) { - return key === 'children'; - }, - - getNodeName(node) { - let nodeName = node.type; - if (nodeName && node.name) { - nodeName += `(${node.name})`; - } - return nodeName; - }, - - renderSettings(parserSettings, onChange) { - return ( - - ); - }, - - _ignoredProperties: new Set(['prev', 'next', 'parent', 'endIndex']), -}; diff --git a/website/src/parsers/html/index.js b/website/src/parsers/html/index.js index 059680c5..024013ae 100644 --- a/website/src/parsers/html/index.js +++ b/website/src/parsers/html/index.js @@ -1,6 +1,5 @@ -import 'codemirror/mode/htmlmixed/htmlmixed'; +import 'codemirror/mode/htmlembedded/htmlembedded'; -export const id = 'htmlmixed'; +export const id = 'html'; export const displayName = 'HTML'; export const mimeTypes = ['text/html']; -export const fileExtension = 'html'; diff --git a/website/src/parsers/html/parse5.js b/website/src/parsers/html/parse5.js deleted file mode 100644 index 3ab4a115..00000000 --- a/website/src/parsers/html/parse5.js +++ /dev/null @@ -1,79 +0,0 @@ -import React from 'react'; -import defaultParserInterface from '../utils/defaultParserInterface'; -import pkg from 'parse5/package.json'; -import SettingsRenderer from '../utils/SettingsRenderer'; - -const ID = 'parse5'; -const defaultOptions = { - treeAdapter: 'default', -}; - -const parserSettingsConfiguration = { - fields : [ - ['treeAdapter', ['default', 'htmlparser2']], - ], -}; - -export default { - ...defaultParserInterface, - - id: ID, - displayName: ID, - version: pkg.version, - homepage: pkg.homepage, - locationProps: new Set(['__location']), - - loadParser(callback) { - require([ - 'parse5/lib/parser', - 'parse5/lib/tree_adapters/default', - 'parse5/lib/tree_adapters/htmlparser2', - ], (Parser, defaultAdapter, htmlparser2Adapter) => { - callback({ - Parser, - TreeAdapters: { - default: defaultAdapter, - htmlparser2: htmlparser2Adapter, - }, - }); - }); - }, - - parse({ Parser, TreeAdapters }, code, options) { - this.options = {...defaultOptions, ...options}; - return new Parser({ - treeAdapter: TreeAdapters[this.options.treeAdapter], - locationInfo: true, - }).parse(code); - }, - - getNodeName(node) { - if (this.options.treeAdapter === 'htmlparser2') { - return node.type + (node.name && node.type !== 'root' ? `(${node.name})` : ''); - } else { - return node.nodeName; - } - }, - - nodeToRange({ __location: loc }) { - if (loc) { - return [loc.startOffset, loc.endOffset]; - } - }, - - opensByDefault(node, key) { - return key === 'children' || key === 'childNodes'; - }, - - renderSettings(parserSettings, onChange) { - return ( - - ); - }, - - _ignoredProperties: new Set(['parentNode', 'prev', 'next', 'parent', 'firstChild', 'lastChild']), -}; diff --git a/website/src/parsers/html/textlint-markdown-to-ast.js b/website/src/parsers/html/textlint-markdown-to-ast.js new file mode 100644 index 00000000..5be39a10 --- /dev/null +++ b/website/src/parsers/html/textlint-markdown-to-ast.js @@ -0,0 +1,29 @@ +import defaultParserInterface from '../utils/defaultParserInterface'; + +import pkg from 'textlint-plugin-html/package.json'; + +const ID = 'textlint:html'; + +export default { + ...defaultParserInterface, + id: ID, + displayName: "textlint", + version: pkg.version, + homepage: pkg.homepage, + locationProps: new Set(['loc', 'range']), + + loadParser(callback) { + require(['textlint-plugin-html/lib/html-to-ast'], callback); + }, + + parse(parser, text) { + console.log("parser", parser); + return parser.parse(text); + }, + + opensByDefault(node, key) { + return key === 'rules'; + }, + + _ignoredProperties: new Set(['location']) +}; diff --git a/website/src/parsers/html/transformers/textlint-markdown-to-ast/codeExample.txt b/website/src/parsers/html/transformers/textlint-markdown-to-ast/codeExample.txt new file mode 100644 index 00000000..17806f58 --- /dev/null +++ b/website/src/parsers/html/transformers/textlint-markdown-to-ast/codeExample.txt @@ -0,0 +1,8 @@ +module.exports = function (context) { + const {Syntax, RuleError, report, getSource} = context; + return { + [Syntax.Str](node){ + report(node, new Error("error")); + } + }; +} diff --git a/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js b/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js new file mode 100644 index 00000000..5edbf670 --- /dev/null +++ b/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js @@ -0,0 +1,52 @@ +import compileModule from '../../../utils/compileModule'; +import pkg from 'textlint/package.json'; + +const ID = 'textlint-plugin-html'; + +function formatResults(results, code) { + const format = (message) => { + return formatResult(message, code); + }; + return results.messages.length === 0 + ? 'Lint rule not fired.' + : results.messages.map(format).join('').trim(); +} + +function formatResult(result, code) { + const pointer = '-'.repeat(result.column - 1) + '^'; + console.log(code.split('\n')[result.line - 1]); + return ` +| ${result.message} (at ${result.line}:${result.column}) + ${code.split('\n')[result.line - 1] || ''} +| ${pointer} +`; +} + +export default { + id: ID, + displayName: ID, + version: pkg.version, + homepage: pkg.homepage, + + defaultParserID: 'textlint-plugin-html', + + loadTransformer(callback) { + require(['textlint/lib/textlint-core'], (TextLintCore) => { + callback({TextLintCore}); + }) + }, + + transform({TextLintCore}, transformCode, code) { + const textlintCore = new TextLintCore(); + let rule = compileModule( // eslint-disable-line no-shadow + transformCode + ); + textlintCore.setupRules({ + 'astExplorerRule': rule, + }); + return textlintCore.lintText(code, '.html').then(result => { + return formatResults(result, code); + }); + }, +}; + From 6920d6159f96f428371b5d022d92a3ce1a6e6226 Mon Sep 17 00:00:00 2001 From: azu Date: Mon, 24 May 2021 18:19:36 +0900 Subject: [PATCH 06/51] update textlint@12 --- scripts/inject-rev.sh | 2 +- website/package.json | 11 +- .../textlint-markdown-to-ast/index.js | 35 +- website/src/parsers/index.js | 6 +- .../parsers/md/textlint-markdown-to-ast.js | 2 +- .../textlint-markdown-to-ast/index.js | 35 +- .../src/parsers/txt/textlint-txt-to-ast.js | 2 +- .../transformers/textlint-txt-to-ast/index.js | 35 +- website/src/utils/logger.js | 4 +- website/yarn.lock | 538 +++++++++++++++++- 10 files changed, 604 insertions(+), 66 deletions(-) diff --git a/scripts/inject-rev.sh b/scripts/inject-rev.sh index fb6e55e8..a791791f 100755 --- a/scripts/inject-rev.sh +++ b/scripts/inject-rev.sh @@ -5,4 +5,4 @@ # likely just out/index.html rev=$(git rev-parse --short HEAD) -sed -i "s%@@COMMIT@@%Build: $rev%" "$1" +sed -i "s%@@COMMIT@@%Build: $rev%" "$1" diff --git a/website/package.json b/website/package.json index 87e60d6c..41b798c0 100644 --- a/website/package.json +++ b/website/package.json @@ -45,6 +45,7 @@ "@angular-eslint/template-parser": "^1.0.0", "@angular/compiler": "^11.2.0", "@babel/eslint-parser": "^7.12.0", + "@babel/parser": "^7.14.3", "@babel/runtime": "^7.12.0", "@creditkarma/thrift-parser": "^1.2.0", "@gengjiawen/monkey-wasm": "^0.5.0", @@ -52,11 +53,14 @@ "@glimmer/syntax": "^0.73.1", "@humanwhocodes/momoa": "^1.0.0", "@mdx-js/mdx": "^1.5.8", + "@textlint/kernel": "^12.0.0", + "@textlint/markdown-to-ast": "^12.0.0", + "@textlint/text-to-ast": "^12.0.0", + "@textlint/textlint-plugin-markdown": "^12.0.0", + "@textlint/textlint-plugin-text": "^12.0.0", "@typescript-eslint/parser": "^4.1.0", "@vue/compiler-dom": "^3.0.0-rc.10", "@webassemblyjs/wast-parser": "^1.9.0", - "@textlint/markdown-to-ast": "^6.0.4", - "@textlint/text-to-ast": "^3.0.4", "acorn": "^8.0.4", "acorn-jsx": "^5.3.1", "acorn-loose": "^8.0.1", @@ -152,8 +156,7 @@ "svelte": "^3.4.1", "tenko": "^1.0.6", "tern": "^0.24.3", - "textlint": "^8.0.0", - "textlint-plugin-html": "^0.1.7", + "textlint-plugin-html": "^0.2.0", "traceur": "0.0.111", "tslint": "^6.1.1", "typescript": "^4.0.3", diff --git a/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js b/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js index 5edbf670..3fe2bec6 100644 --- a/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js +++ b/website/src/parsers/html/transformers/textlint-markdown-to-ast/index.js @@ -1,5 +1,5 @@ import compileModule from '../../../utils/compileModule'; -import pkg from 'textlint/package.json'; +import pkg from '@textlint/kernel/package.json'; const ID = 'textlint-plugin-html'; @@ -27,24 +27,33 @@ export default { displayName: ID, version: pkg.version, homepage: pkg.homepage, - + defaultParserID: 'textlint-plugin-html', - + loadTransformer(callback) { - require(['textlint/lib/textlint-core'], (TextLintCore) => { - callback({TextLintCore}); + require(['@textlint/kernel', "textlint-plugin-html"], ({ TextlintKernel }, plugin) => { + callback({ TextlintKernel, plugin }); }) }, - - transform({TextLintCore}, transformCode, code) { - const textlintCore = new TextLintCore(); - let rule = compileModule( // eslint-disable-line no-shadow + + transform({ TextlintKernel, plugin }, transformCode, code) { + const kernel = new TextlintKernel(); + const rule = compileModule( // eslint-disable-line no-shadow transformCode ); - textlintCore.setupRules({ - 'astExplorerRule': rule, - }); - return textlintCore.lintText(code, '.html').then(result => { + return kernel.lintText(code, { + rules: [{ + ruleId: "astExplorerRule", + rule: rule, + options: true + }], + plugins: [{ + pluginId: "html", + plugin: plugin, + options: true + }], + ext: ".html" + }).then(result => { return formatResults(result, code); }); }, diff --git a/website/src/parsers/index.js b/website/src/parsers/index.js index 45d76924..f199414a 100644 --- a/website/src/parsers/index.js +++ b/website/src/parsers/index.js @@ -1,10 +1,12 @@ // const localRequire = require.context('./', true, /^\.\/(?!utils)[^/]+\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); const localRequire = require.context('./', true, /^\.\/(md|html|txt)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); +function interopRequire(module) { + return module.__esModule ? module.default : module; +} const files = localRequire.keys() .map(name => name.split('/').slice(1)); -console.log("files", files); const categoryByID = {}; const parserByID = {}; const transformerByID = {}; @@ -21,8 +23,6 @@ export const categories = .filter(name => name[1] === 'index.js') .map(([catName]) => { let category = localRequire(`./${catName}/index.js`); - - console.log(category) categoryByID[category.id] = category; category.codeExample = interopRequire(localRequire(`./${catName}/codeExample.txt`)) diff --git a/website/src/parsers/md/textlint-markdown-to-ast.js b/website/src/parsers/md/textlint-markdown-to-ast.js index 00bf24b9..acd9e9d1 100644 --- a/website/src/parsers/md/textlint-markdown-to-ast.js +++ b/website/src/parsers/md/textlint-markdown-to-ast.js @@ -1,6 +1,6 @@ import defaultParserInterface from '../utils/defaultParserInterface'; -import pkg from 'markdown-to-ast/package.json'; +import pkg from '@textlint/markdown-to-ast/package.json'; const ID = 'textlint:markdown-to-ast'; diff --git a/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js b/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js index e571d888..2b298deb 100644 --- a/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js +++ b/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js @@ -1,5 +1,5 @@ import compileModule from '../../../utils/compileModule'; -import pkg from 'textlint/package.json'; +import pkg from '@textlint/kernel/package.json'; const ID = 'textlint:markdown'; @@ -27,24 +27,33 @@ export default { displayName: ID, version: pkg.version, homepage: pkg.homepage, - + defaultParserID: 'textlint:markdown-to-ast', - + loadTransformer(callback) { - require(['textlint/lib/textlint-core'], (TextLintCore) => { - callback({TextLintCore}); + require(['@textlint/kernel', "@textlint/textlint-plugin-markdown"], ({ TextlintKernel }, { default: plugin }) => { + callback({ TextlintKernel, plugin }); }) }, - - transform({TextLintCore}, transformCode, code) { - const textlintCore = new TextLintCore(); - let rule = compileModule( // eslint-disable-line no-shadow + + transform({ TextlintKernel, plugin }, transformCode, code) { + const kernel = new TextlintKernel(); + const rule = compileModule( // eslint-disable-line no-shadow transformCode ); - textlintCore.setupRules({ - 'astExplorerRule': rule, - }); - return textlintCore.lintText(code, '.md').then(result => { + return kernel.lintText(code, { + rules: [{ + ruleId: "astExplorerRule", + rule: rule, + options: true + }], + plugins: [{ + pluginId: "markdown", + plugin: plugin, + options: true + }], + ext: ".md" + }).then(result => { return formatResults(result, code); }); }, diff --git a/website/src/parsers/txt/textlint-txt-to-ast.js b/website/src/parsers/txt/textlint-txt-to-ast.js index 707c41f8..e9bd8193 100644 --- a/website/src/parsers/txt/textlint-txt-to-ast.js +++ b/website/src/parsers/txt/textlint-txt-to-ast.js @@ -1,6 +1,6 @@ import defaultParserInterface from '../utils/defaultParserInterface'; -import pkg from 'txt-to-ast/package.json'; +import pkg from '@textlint/text-to-ast/package.json'; const ID = 'textlint:txt-to-ast'; diff --git a/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js b/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js index d0cd5bba..c23b764b 100644 --- a/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js +++ b/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js @@ -1,5 +1,5 @@ import compileModule from '../../../utils/compileModule'; -import pkg from 'textlint/package.json'; +import pkg from '@textlint/kernel/package.json'; const ID = 'textlint:txt'; @@ -27,24 +27,33 @@ export default { displayName: ID, version: pkg.version, homepage: pkg.homepage, - + defaultParserID: 'textlint:txt-to-ast', - + loadTransformer(callback) { - require(['textlint/lib/textlint-core'], (TextLintCore) => { - callback({TextLintCore}); + require(['@textlint/kernel'], ({ TextlintKernel }, { default: plugin }) => { + callback({ TextlintKernel, plugin }); }) }, - - transform({TextLintCore}, transformCode, code) { - const textlintCore = new TextLintCore(); - let rule = compileModule( // eslint-disable-line no-shadow + + transform({ TextlintKernel, plugin }, transformCode, code) { + const kernel = new TextlintKernel(); + const rule = compileModule( // eslint-disable-line no-shadow transformCode ); - textlintCore.setupRules({ - 'astExplorerRule': rule, - }); - return textlintCore.lintText(code, '.txt').then(result => { + return kernel.lintText(code, { + rules: [{ + ruleId: "astExplorerRule", + rule: rule, + options: true + }], + plugins: [{ + pluginId: "txt", + plugin: plugin, + options: true + }], + ext: ".txt" + }).then(result => { return formatResults(result, code); }); }, diff --git a/website/src/utils/logger.js b/website/src/utils/logger.js index 26ea1704..090d35bc 100644 --- a/website/src/utils/logger.js +++ b/website/src/utils/logger.js @@ -1,7 +1,7 @@ export function logEvent(category, action, label) { - global.ga('send', 'event', category, action, label); + // global.ga('send', 'event', category, action, label); } export function logError(message, fatal) { - global.ga('send', 'exception', {exDescription: message, exFatal: fatal}); + // global.ga('send', 'exception', {exDescription: message, exFatal: fatal}); } diff --git a/website/yarn.lock b/website/yarn.lock index 6bb5f2c0..e16660e0 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -375,10 +375,16 @@ js-tokens "^4.0.0" "@babel/parser@^7.0.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.4", "@babel/parser@^7.12.13", "@babel/parser@^7.12.17", "@babel/parser@^7.13.0", "@babel/parser@^7.13.4", "@babel/parser@^7.8.4", "babylon7@npm:@babel/parser@^7": + name babylon7 version "7.13.9" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.9.tgz#ca34cb95e1c2dd126863a84465ae8ef66114be99" integrity sha512-nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw== +"@babel/parser@^7.14.3": + version "7.14.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298" + integrity sha512-7MpZDIfI7sUC5zWo2+foJ50CSI5lcqDehZ0lVgIhSi4bFEk94fLAKlF3Q0nzSQQ+ca0lm+O6G9ztKVBeu8PMRQ== + "@babel/plugin-proposal-async-generator-functions@^7.13.8": version "7.13.8" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz#87aacb574b3bc4b5603f6fe41458d72a5a2ec4b1" @@ -1042,6 +1048,14 @@ pirates "^4.0.0" source-map-support "^0.5.16" +"@babel/runtime-corejs2@^7.0.0": + version "7.14.0" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs2/-/runtime-corejs2-7.14.0.tgz#5519b92ccc819bd3d0a1ecb25ab3cb5a775485f8" + integrity sha512-btR4E8JiGlmmDI5YgirlG9z3T91rBdxnVh2YuEStrHDcekffaaIeK+CE0S4IaYUyYhMa7rFDfF2GEO79XNbLEA== + dependencies: + core-js "^2.6.5" + regenerator-runtime "^0.13.4" + "@babel/runtime-corejs3@^7.8.3": version "7.13.9" resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.13.9.tgz#b2fa9a6e5690ef8d4c4f2d30cac3ec1a8bb633ce" @@ -1314,6 +1328,105 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== +"@textlint/ast-node-types@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-12.0.0.tgz#23bd683f9fc04209ae28bff72954c8aa67c6b1ca" + integrity sha512-qUjmlpz1vR3AStBA9RPDCVT0/pGtePvBJ5Vb/0PzTrnr04iFktG6P6B1VOmgTh8J9Kl/FonQFo3A9M1Q3UH+JA== + +"@textlint/ast-tester@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-12.0.0.tgz#3cd4395909ad688f56f47d77a80ec6ba4461837f" + integrity sha512-mcAqaOJnAhay8QtDC/na5S72XPxmqGCntOwcLwuSjEmPGAIuLC3GsumLQo4nWSQ2LGnWd6CwLDZT4eBlRWetNA== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + debug "^4.3.1" + +"@textlint/ast-traverse@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-12.0.0.tgz#eeb35ec9b646a57a5ab77ca0f461a82f591109bc" + integrity sha512-Mu0il8qWS9YkzVAqwmrTd+ga5S0LJVWOGjE6d9yADf5xObUDFk4g8ITlfEOiicpX5bTUxT4e1bORxPveCJ8iKQ== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + +"@textlint/feature-flag@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-12.0.0.tgz#e09d295c9eaedda90e54bb4ecdc23c325d2e120c" + integrity sha512-xgK6tsf1Gg6xn8/X0HN4LXzSkJYgmByAvzItUPlI0dzvA4HhhT4gkBeshDCuXsHLc970nYgzy1TYHpyscu7PTw== + dependencies: + map-like "^2.0.0" + +"@textlint/kernel@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-12.0.0.tgz#29cca37644445429fdddad13244d0d40eaf24289" + integrity sha512-8UXHKhSAgn1aexPjyQE1CRVivCfSz+aFuNrktT9+JOMM3XsSd4JFcMKDhPA1utiiRR+4yDVH5be38vuuJOG9cQ== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + "@textlint/ast-tester" "^12.0.0" + "@textlint/ast-traverse" "^12.0.0" + "@textlint/feature-flag" "^12.0.0" + "@textlint/source-code-fixer" "^12.0.0" + "@textlint/types" "^12.0.0" + "@textlint/utils" "^12.0.0" + debug "^4.3.1" + deep-equal "^1.1.1" + map-like "^2.0.0" + structured-source "^3.0.2" + +"@textlint/markdown-to-ast@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-12.0.0.tgz#bdd2f572e12be04b153789413a31fcf78d1f98d2" + integrity sha512-XaiuePJVDGVIwdjIiITdbdRXZDFnAFY/so3Rb8qAId/Qq9fKPUvgefMkdIG73wUC7LzhrAzH6/CuEO+f77HR5g== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + debug "^4.3.1" + remark-footnotes "^3.0.0" + remark-frontmatter "^3.0.0" + remark-gfm "^1.0.0" + remark-parse "^9.0.0" + traverse "^0.6.6" + unified "^9.2.1" + +"@textlint/source-code-fixer@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-12.0.0.tgz#ada198da75ac9dc1c01395fe338a5256247df413" + integrity sha512-+XMJ7unzezEqKh8euWIw1QUprvv7IJzOfV0UPVbkThX2d3ZOzBmK+AzlYbqzCwZ1jkV0QYaRqaptBE+iaaQjNg== + dependencies: + "@textlint/types" "^12.0.0" + debug "^4.3.1" + +"@textlint/text-to-ast@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-12.0.0.tgz#db0293107c09a2f5b89005105e4ea78182f3e803" + integrity sha512-j73hF6BiwdZurNdzHfOtP5j3v+nTWaTP7RtJf5wpfQBigT4RA+EqmKxUd/OpO+gt/Xy1NkpceLFNllZGRLEvkw== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + +"@textlint/textlint-plugin-markdown@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.0.0.tgz#17e5334288c2e7d26dab6b2fc344f043641cd7df" + integrity sha512-eo9deECYMkytoiJUqDxEwzugL8sLcCFUbeCpzV5IuIRwQBh85Hds3lp/mtW1B3Q/BxcSa08im2HAa9uRdcoe4Q== + dependencies: + "@textlint/markdown-to-ast" "^12.0.0" + +"@textlint/textlint-plugin-text@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.0.0.tgz#61f09f72b5d092e95ac2ed5ac2c2870b343841cc" + integrity sha512-brtexdqu7yvFLstYvVlotMZz5T7SwKfnFnV9Sm+uhg/d3Ddea9exzpiWWcXfRAhfOBd12mmEGM6gwAuSwzrhqg== + dependencies: + "@textlint/text-to-ast" "^12.0.0" + +"@textlint/types@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-12.0.0.tgz#c197b756070cdf413c1a6b311520d927b1d47069" + integrity sha512-3sB22cGtN9nPViDrW7FJxWkDrpGtyJbvNsvZqzX83HJbAiOmzzeHDkRRLvz9tax76lcdjlNk+2rHY3iSnjhEag== + dependencies: + "@textlint/ast-node-types" "^12.0.0" + +"@textlint/utils@^12.0.0": + version "12.0.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-12.0.0.tgz#e457b4ebbf3925b3bf0d32c597e1a20beaa1b121" + integrity sha512-bnIr17iouc4MtVR+r7v8mBasNn3ZsQpfTLTi4RelrZJdICHMBUMOWRX70cVRV/xJck/nfY9igt325qI0y2ELoQ== + "@types/color-name@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" @@ -1886,11 +1999,23 @@ array-includes@^3.0.3, array-includes@^3.1.1: es-abstract "^1.17.0" is-string "^1.0.5" +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + array-union@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + array-unique@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" @@ -1986,6 +2111,13 @@ async-promise-queue@^1.0.5: async "^2.4.1" debug "^2.6.8" +async@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/async/-/async-2.1.2.tgz#612a4ab45ef42a70cde806bad86ee6db047e8385" + integrity sha1-YSpKtF70KnDN6Aa62G7m2wR+g4U= + dependencies: + lodash "^4.14.0" + async@^2.4.1: version "2.6.3" resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" @@ -1998,6 +2130,13 @@ atob@^2.1.1, atob@^2.1.2: resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== +attach-ware@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/attach-ware/-/attach-ware-1.1.1.tgz#28f51393dd8bb8bdaad972342519bf09621a35a3" + integrity sha1-KPUTk92LuL2q2XI0JRm/CWIaNaM= + dependencies: + unherit "^1.0.0" + autoprefixer@^9.7.6: version "9.7.6" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4" @@ -2935,11 +3074,13 @@ babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26 try-resolve "^1.0.0" "babylon5@npm:babylon@^5", babylon@^5.8.38: + name babylon5 version "5.8.38" resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" integrity sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0= "babylon6@npm:babylon@^6", babylon@^6.17.0, babylon@^6.18.0, babylon@^6.8.0: + name babylon6 version "6.18.0" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== @@ -3004,6 +3145,14 @@ bindings@^1.5.0: dependencies: file-uri-to-path "1.0.0" +bl@^2.0.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/bl/-/bl-2.2.1.tgz#8c11a7b730655c5d56898cdc871224f40fd901d5" + integrity sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g== + dependencies: + readable-stream "^2.3.5" + safe-buffer "^5.1.1" + bl@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" @@ -3018,7 +3167,7 @@ bluebird@^2.9.33: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-2.11.0.tgz#534b9033c022c9579c56ba3b3e5a5caafbb650e1" integrity sha1-U0uQM8AiyVecVro7Plpcqvu2UOE= -bluebird@^3.5.5: +bluebird@^3.0.6, bluebird@^3.5.5: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== @@ -3033,6 +3182,11 @@ boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= +boundary@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" + integrity sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI= + boxen@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" @@ -3269,6 +3423,14 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -3588,6 +3750,11 @@ clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= +co@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" + integrity sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g= + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -3634,6 +3801,13 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" +collections@^0.2.0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/collections/-/collections-0.2.2.tgz#1f23026b2ef36f927eecc901e99c5f0d48fa334e" + integrity sha1-HyMCay7zb5J+7MkB6ZxfDUj6M04= + dependencies: + weak-map "1.0.0" + color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -3683,7 +3857,7 @@ commander@2.17.x: resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== -commander@2.9.x: +commander@2.9.0, commander@2.9.x: version "2.9.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" integrity sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q= @@ -3849,6 +4023,11 @@ core-js@^2.4.0, core-js@^2.5.0: resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== +core-js@^2.6.5: + version "2.6.12" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== + core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" @@ -4061,7 +4240,7 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.1.0: +debug@^4.0.0, debug@^4.1.0, debug@^4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== @@ -4085,6 +4264,18 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= +deep-equal@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" + deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" @@ -4472,6 +4663,11 @@ enhanced-resolve@^4.1.0: memory-fs "^0.5.0" tapable "^1.0.0" +ent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" + integrity sha1-6WQhkyWiHQX0RGai9obtbOX13R0= + entities@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" @@ -4610,6 +4806,11 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== +escape-html@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" @@ -5045,8 +5246,6 @@ esquery@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== - dependencies: - estraverse "^4.0.0" esquery@^1.0.1: version "1.3.0" @@ -5074,7 +5273,7 @@ estraverse-fb@^1.3.1: resolved "https://registry.yarnpkg.com/estraverse-fb/-/estraverse-fb-1.3.2.tgz#d323a4cb5e5ac331cea033413a9253e1643e07c4" integrity sha1-0yOky15awzHOoDNBOpJT4WQ+B8Q= -estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== @@ -5605,6 +5804,15 @@ get-caller-file@^2.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== +get-intrinsic@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" @@ -5627,6 +5835,19 @@ get-value@^2.0.3, get-value@^2.0.6: resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= +gh-pages@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/gh-pages/-/gh-pages-0.12.0.tgz#d951e3ed98b85699d4b0418eb1a15b1a04988dc1" + integrity sha1-2VHj7Zi4VpnUsEGOsaFbGgSYjcE= + dependencies: + async "2.1.2" + commander "2.9.0" + globby "^6.1.0" + graceful-fs "4.1.10" + q "1.4.1" + q-io "1.13.2" + rimraf "^2.5.4" + glob-parent@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" @@ -5752,6 +5973,17 @@ globby@^11.0.1: merge2 "^1.3.0" slash "^3.0.0" +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + glsl-parser@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/glsl-parser/-/glsl-parser-2.0.1.tgz#3ffac4ee05cc4d8141fd6b1e41e82b3766ff61b9" @@ -5768,6 +6000,11 @@ glsl-tokenizer@^2.1.2, glsl-tokenizer@^2.1.4: dependencies: through2 "^0.6.3" +graceful-fs@4.1.10: + version "4.1.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.10.tgz#f2d720c22092f743228775c75e3612632501f131" + integrity sha1-8tcgwiCS90Mih3XHXjYSYyUB8TE= + graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.2.2: version "4.2.3" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" @@ -6012,6 +6249,21 @@ hast-util-to-parse5@^5.0.0: xtend "^4.0.1" zwitch "^1.0.0" +hast@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/hast/-/hast-0.0.2.tgz#87950b0180a71df4df9216c304d426db4ea30482" + integrity sha1-h5ULAYCnHfTfkhbDBNQm206jBII= + dependencies: + bail "^1.0.0" + camelcase "^1.2.1" + ent "^2.2.0" + escape-html "^1.0.3" + htmlparser2 "^3.8.3" + param-case "^1.1.1" + property-information "^2.0.0" + trim "0.0.1" + unified "^2.1.0" + hastscript@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.0.tgz#a19b3cca6a26a2bcd0f1b1eac574af9427c1c7df" @@ -6102,7 +6354,7 @@ html-webpack-plugin@^3.2.0: toposort "^1.0.0" util.promisify "1.0.0" -htmlparser2@^3.3.0, htmlparser2@^3.9.2: +htmlparser2@^3.3.0, htmlparser2@^3.8.3, htmlparser2@^3.9.2: version "3.10.1" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== @@ -6424,6 +6676,13 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" +is-arguments@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" + integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== + dependencies: + call-bind "^1.0.0" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -6877,6 +7136,19 @@ json-to-ast@^2.1.0: code-error-fragment "0.0.230" grapheme-splitter "^1.0.4" +json-url@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/json-url/-/json-url-3.0.0.tgz#454fbca31342984c3f4ca8ebc6e53c89f4f7bd29" + integrity sha512-c5iQnrKGNJ4/qAV1APNFHBDSgB0qgekmcVTBV3RRa2UUw8liUIrUvI3+Om7qtnM8JwobnEsPuAWMYmtCfxSkcw== + dependencies: + "@babel/runtime-corejs2" "^7.0.0" + bluebird "^3.0.6" + lz-string "^1.4.4" + lzma "^2.3.2" + msgpack5 "^4.2.1" + node-lzw "^0.3.1" + urlsafe-base64 "^1.0.0" + json5@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/json5/-/json5-0.4.0.tgz#054352e4c4c80c86c0923877d449de176a732c8d" @@ -7316,16 +7588,16 @@ lodash@^3.10.0, lodash@^3.3.1, lodash@^3.9.3: resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" integrity sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y= +lodash@^4.14.0, lodash@^4.17.19: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + lodash@^4.17.13: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== -lodash@^4.17.19: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - log-symbols@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" @@ -7380,6 +7652,16 @@ lucene@^2.1.1: resolved "https://registry.yarnpkg.com/lucene/-/lucene-2.1.1.tgz#e710cc123b214eaf72a4c5f1da06943c0af44d86" integrity sha512-l0qCX+pgXEZh/7sYQNG+vzhOIFRPjlJJkQ/irk9n7Ak3d+1MrU6F7IV31KILwFkUn153oLK8a2AIt48DzLdVPg== +lz-string@^1.4.4: + version "1.4.4" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26" + integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY= + +lzma@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/lzma/-/lzma-2.3.2.tgz#3783b24858b9c0e747a0df3cbf1fb5fcaa92c441" + integrity sha1-N4OySFi5wOdHoN88vx+1/KqSxEE= + make-dir@^2.0.0, make-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -7407,6 +7689,11 @@ map-cache@^0.2.2: resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= +map-like@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/map-like/-/map-like-2.0.0.tgz#94496d49ad333c0dc3234b27adbbd1e8535953b4" + integrity sha1-lEltSa0zPA3DI0snrbvR6FNZU7Q= + map-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" @@ -7460,6 +7747,14 @@ mdast-util-directive@^1.0.0: stringify-entities "^3.1.0" unist-util-visit-parents "^3.0.0" +mdast-util-footnote@^0.1.0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz#4b226caeab4613a3362c144c94af0fdd6f7e0ef0" + integrity sha512-QxNdO8qSxqbO2e3m09KwDKfWiLgqyCurdWTQ198NpbZ2hxntdc+VKS4fDJCmNWbAroUdYnSthu+XbZ8ovh8C3w== + dependencies: + mdast-util-to-markdown "^0.6.0" + micromark "~2.11.0" + mdast-util-from-markdown@^0.8.0: version "0.8.1" resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.1.tgz#781371d493cac11212947226190270c15dc97116" @@ -7550,11 +7845,28 @@ mdast-util-to-markdown@^0.5.0: repeat-string "^1.0.0" zwitch "^1.0.0" +mdast-util-to-markdown@^0.6.0: + version "0.6.5" + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" + integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== + dependencies: + "@types/unist" "^2.0.0" + longest-streak "^2.0.0" + mdast-util-to-string "^2.0.0" + parse-entities "^2.0.0" + repeat-string "^1.0.0" + zwitch "^1.0.0" + mdast-util-to-string@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== +mdast-util-to-string@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" + integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== + mdn-data@2.0.12: version "2.0.12" resolved "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.12.tgz#bbb658d08b38f574bbb88f7b83703defdcc46844" @@ -7626,6 +7938,13 @@ micromark-extension-directive@^1.0.0: micromark "~2.10.0" parse-entities "^2.0.0" +micromark-extension-footnote@^0.3.0: + version "0.3.2" + resolved "https://registry.yarnpkg.com/micromark-extension-footnote/-/micromark-extension-footnote-0.3.2.tgz#129b74ef4920ce96719b2c06102ee7abb2b88a20" + integrity sha512-gr/BeIxbIWQoUm02cIfK7mdMZ/fbroRpLsck4kvFtjbzP4yi+OPVbnukTc/zy0i7spC2xYE/dbX1Sur8BEDJsQ== + dependencies: + micromark "~2.11.0" + micromark-extension-frontmatter@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/micromark-extension-frontmatter/-/micromark-extension-frontmatter-0.2.2.tgz#61b8e92e9213e1d3c13f5a59e7862f5ca98dfa53" @@ -7694,6 +8013,14 @@ micromark@~2.10.0: debug "^4.0.0" parse-entities "^2.0.0" +micromark@~2.11.0: + version "2.11.4" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" + integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== + dependencies: + debug "^4.0.0" + parse-entities "^2.0.0" + micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" @@ -7770,6 +8097,16 @@ mime-types@~2.1.24: dependencies: mime-db "1.44.0" +mime@^1.2.11: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimeparse@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/mimeparse/-/mimeparse-0.1.4.tgz#dafb02752370fd226093ae3152c271af01ac254a" + integrity sha1-2vsCdSNw/SJgk64xUsJxrwGsJUo= + mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" @@ -7910,6 +8247,16 @@ ms@2.1.2, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +msgpack5@^4.2.1: + version "4.5.1" + resolved "https://registry.yarnpkg.com/msgpack5/-/msgpack5-4.5.1.tgz#2da4dba4ea20c09fd4309c9c04f046e38cb4975e" + integrity sha512-zC1vkcliryc4JGlL6OfpHumSYUHWFGimSI+OgfRCjTFLmKA2/foR9rMTOhWiqfOrfxJOctrpWPvrppf8XynJxw== + dependencies: + bl "^2.0.1" + inherits "^2.0.3" + readable-stream "^2.3.6" + safe-buffer "^5.1.2" + multimap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/multimap/-/multimap-1.0.2.tgz#6aa76fc3233905ba948bbe4c74dc2c3a0356eb36" @@ -8033,6 +8380,11 @@ node-fetch@^1.0.1: util "^0.11.0" vm-browserify "^1.0.1" +node-lzw@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/node-lzw/-/node-lzw-0.3.1.tgz#f50e37968976aca83320028b91f101df4a436b2d" + integrity sha1-9Q43lol2rKgzIAKLkfEB30pDay0= + node-modules-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" @@ -8136,6 +8488,14 @@ object-inspect@^1.6.0, object-inspect@^1.7.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== +object-is@^1.0.1: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" @@ -8420,6 +8780,13 @@ param-case@2.1.x: dependencies: no-case "^2.2.0" +param-case@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-1.1.2.tgz#dcb091a43c259b9228f1c341e7b6a44ea0bf9743" + integrity sha1-3LCRpDwlm5Io8cNB57akTqC/l0M= + dependencies: + sentence-case "^1.1.2" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -8613,6 +8980,18 @@ pify@^4.0.1: resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + pirates@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" @@ -8849,6 +9228,11 @@ prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.8.1" +property-information@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-2.0.0.tgz#37bbac4e3384e7efa9d04d09b0fe12e58e41804c" + integrity sha1-N7usTjOE5++p0E0JsP4S5Y5BgEw= + property-information@^5.0.0, property-information@^5.0.1: version "5.2.2" resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.2.2.tgz#20555eafd2296278a682e5a51d5123e7878ecc30" @@ -8940,11 +9324,33 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== -q@^1.1.2: +q-io@1.13.2: + version "1.13.2" + resolved "https://registry.yarnpkg.com/q-io/-/q-io-1.13.2.tgz#eea130d481ddb5e1aa1bc5a66855f7391d06f003" + integrity sha1-7qEw1IHdteGqG8WmaFX3OR0G8AM= + dependencies: + collections "^0.2.0" + mime "^1.2.11" + mimeparse "^0.1.4" + q "^1.0.1" + qs "^1.2.1" + url2 "^0.0.0" + +q@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.4.1.tgz#55705bcd93c5f3673530c2c2cbc0c2b3addc286e" + integrity sha1-VXBbzZPF82c1MMLCy8DCs63cKG4= + +q@^1.0.1, q@^1.1.2: version "1.5.1" resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= +qs@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-1.2.2.tgz#19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88" + integrity sha1-GbV/8k3CqZzh+L32r82ln472H4g= + query-string@^4.1.0: version "4.3.4" resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" @@ -9058,7 +9464,7 @@ read-pkg@^2.0.0: normalize-package-data "^2.3.2" path-type "^2.0.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -9252,6 +9658,14 @@ regexp-tree@^0.1.5: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.13.tgz#5b19ab9377edc68bc3679256840bb29afc158d7f" integrity sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw== +regexp.prototype.flags@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" + integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + regexp.prototype.flags@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" @@ -9359,6 +9773,14 @@ remark-directive@^1.0.0: mdast-util-directive "^1.0.0" micromark-extension-directive "^1.0.0" +remark-footnotes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/remark-footnotes/-/remark-footnotes-3.0.0.tgz#5756b56f8464fa7ed80dbba0c966136305d8cb8d" + integrity sha512-ZssAvH9FjGYlJ/PBVKdSmfyPc3Cz4rTWgZLI4iE/SX8Nt5l3o3oEjv3wwG5VD7xOjktzdwp5coac+kJV9l4jgg== + dependencies: + mdast-util-footnote "^0.1.0" + micromark-extension-footnote "^0.3.0" + remark-frontmatter@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/remark-frontmatter/-/remark-frontmatter-3.0.0.tgz#ca5d996361765c859bd944505f377d6b186a6ec6" @@ -9810,6 +10232,13 @@ semver@^7.3.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== +sentence-case@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-1.1.3.tgz#8034aafc2145772d3abe1509aa42c9e1042dc139" + integrity sha1-gDSq/CFFdy06vhUJqkLJ4QQtwTk= + dependencies: + lower-case "^1.1.1" + serialize-javascript@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" @@ -10426,6 +10855,13 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= +structured-source@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" + integrity sha1-3YAkJeD1PcSm56yjdSkBoczaevU= + dependencies: + boundary "^1.0.1" + style-loader@^1.1.3: version "1.1.4" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.1.4.tgz#1ad81283cefe51096756fd62697258edad933230" @@ -10610,6 +11046,15 @@ text-table@^0.2.0, text-table@~0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= +textlint-plugin-html@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-0.2.0.tgz#4203f68122dedf29169782cc4cda4d06d7adfa86" + integrity sha512-Gu4WZiY4mB/1A3ig3rNiB+evs/2G5TCKJA4RggY2ug4SR2CzBjcZUwKveXC96Dgmzq2MtAc9OHKwyqpuSxpv2w== + dependencies: + hast "0.0.2" + structured-source "^3.0.2" + traverse "^0.6.6" + through2@^0.6.3: version "0.6.5" resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" @@ -10725,6 +11170,11 @@ traceur@0.0.111: semver "^4.3.3" source-map-support "~0.2.8" +traverse@^0.6.6: + version "0.6.6" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" + integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= + trim-lines@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.2.tgz#c8adbdbdae21bb5c2766240a661f693afe23e59b" @@ -10885,7 +11335,7 @@ uglify-js@^3.1.4: dependencies: commander "~2.20.3" -unherit@^1.0.4: +unherit@^1.0.0, unherit@^1.0.4: version "1.1.3" resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== @@ -10937,6 +11387,18 @@ unified@8.4.2: trough "^1.0.0" vfile "^4.0.0" +unified@^2.1.0: + version "2.1.4" + resolved "https://registry.yarnpkg.com/unified/-/unified-2.1.4.tgz#14bc6cd40d98ffff75b405506bad873ecbbac3ba" + integrity sha1-FLxs1A2Y//91tAVQa62HPsu6w7o= + dependencies: + attach-ware "^1.0.0" + bail "^1.0.0" + extend "^3.0.0" + unherit "^1.0.4" + vfile "^1.0.0" + ware "^1.3.0" + unified@^7.0.0: version "7.1.0" resolved "https://registry.yarnpkg.com/unified/-/unified-7.1.0.tgz#5032f1c1ee3364bd09da12e27fdd4a7553c7be13" @@ -10963,6 +11425,18 @@ unified@^9.1.0: trough "^1.0.0" vfile "^4.0.0" +unified@^9.2.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" + integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== + dependencies: + bail "^1.0.0" + extend "^3.0.0" + is-buffer "^2.0.0" + is-plain-obj "^2.0.0" + trough "^1.0.0" + vfile "^4.0.0" + union-value@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" @@ -11143,6 +11617,11 @@ url-loader@^4.1.0: mime-types "^2.1.26" schema-utils "^2.6.5" +url2@^0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/url2/-/url2-0.0.0.tgz#4eaabd1d5c3ac90d62ab4485c998422865a04b1a" + integrity sha1-Tqq9HVw6yQ1iq0SFyZhCKGWgSxo= + url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" @@ -11151,6 +11630,11 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" +urlsafe-base64@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz#23f89069a6c62f46cf3a1d3b00169cefb90be0c6" + integrity sha1-I/iQaabGL0bPOh07ABac77kL4MY= + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" @@ -11243,6 +11727,11 @@ vfile-message@^2.0.0: "@types/unist" "^2.0.0" unist-util-stringify-position "^2.0.0" +vfile@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7" + integrity sha1-wP1vpIT43r23cfaMMe112I2pf+c= + vfile@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/vfile/-/vfile-3.0.1.tgz#47331d2abe3282424f4a4bb6acd20a44c4121803" @@ -11289,6 +11778,13 @@ vue-template-compiler@^2.6.9: de-indent "^1.0.2" he "^1.1.0" +ware@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ware/-/ware-1.3.0.tgz#d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4" + integrity sha1-0bFPOdLiy0q4xAmPdW/ksWTkc9Q= + dependencies: + wrap-fn "^0.1.0" + watchpack@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2" @@ -11305,6 +11801,11 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" +weak-map@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.0.tgz#b66e56a9df0bd25a76bbf1b514db129080614a37" + integrity sha1-tm5Wqd8L0lp2u/G1FNsSkIBhSjc= + web-namespaces@^1.0.0, web-namespaces@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.3.tgz#9bbf5c99ff0908d2da031f1d732492a96571a83f" @@ -11451,6 +11952,13 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.0.0" +wrap-fn@^0.1.0: + version "0.1.5" + resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845" + integrity sha1-8htuQQFv9KfjFyDbxjoJAWvfmEU= + dependencies: + co "3.1.0" + wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" From c9401c58a6be50e137c0c5480e1a098a8faa5cc2 Mon Sep 17 00:00:00 2001 From: azu Date: Mon, 24 May 2021 18:41:30 +0900 Subject: [PATCH 07/51] feat: support url storage --- website/index.ejs | 10 +-- website/package.json | 1 + website/src/app.js | 7 +- website/src/storage/urlStore.js | 125 ++++++++++++++++++++++++++++++++ 4 files changed, 134 insertions(+), 9 deletions(-) create mode 100644 website/src/storage/urlStore.js diff --git a/website/index.ejs b/website/index.ejs index 7059ce4a..0f82abb6 100644 --- a/website/index.ejs +++ b/website/index.ejs @@ -4,13 +4,11 @@ textlint AST explorer + <%= htmlWebpackPlugin.files.webpackManifest %> - -
diff --git a/website/package.json b/website/package.json index 41b798c0..b019d57a 100644 --- a/website/package.json +++ b/website/package.json @@ -114,6 +114,7 @@ "jscodeshift": "^0.11.0", "json-stringify-safe": "^5.0.1", "json-to-ast": "^2.1.0", + "json-url": "^3.0.0", "lodash.isequal": "^4.5.0", "luaparse": "^0.3.0", "lucene": "^2.1.1", diff --git a/website/src/app.js b/website/src/app.js index 13a2f60d..b7efb927 100644 --- a/website/src/app.js +++ b/website/src/app.js @@ -20,8 +20,9 @@ import {createStore, applyMiddleware, compose} from 'redux'; import {canSaveTransform, getRevision} from './store/selectors'; import {loadSnippet} from './store/actions'; import {render} from 'react-dom'; -import * as gist from './storage/gist'; -import * as parse from './storage/parse'; +import * as urlStore from './storage/urlStore'; +// import * as gist from './storage/gist'; +// import * as parse from './storage/parse'; import StorageHandler from './storage'; import '../css/style.css'; import parserMiddleware from './store/parserMiddleware'; @@ -73,7 +74,7 @@ const AppContainer = connect( )(App); const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose; -const storageAdapter = new StorageHandler([gist, parse]); +const storageAdapter = new StorageHandler([urlStore]); const store = createStore( astexplorer, revive(LocalStorage.readState()), diff --git a/website/src/storage/urlStore.js b/website/src/storage/urlStore.js new file mode 100644 index 00000000..f8e8fbe5 --- /dev/null +++ b/website/src/storage/urlStore.js @@ -0,0 +1,125 @@ +import React from 'react'; +import json_url from "json-url"; + +const codec = json_url('lzw'); + +function getIDAndRevisionFromHash() { + let match = global.location.hash.match(/^#\/snippet\/([^/]+)/); + if (match) { + return { + hash: match[1] + }; + } + return null; +} + +async function fetchSnippet(hash) { + const data = await codec.decompress(hash); + return new Revision({ data, hash }); +} + +export function owns(snippet) { + return snippet instanceof Revision; +} + +export function matchesURL() { + return getIDAndRevisionFromHash() !== null; +} + +export function fetchFromURL() { + const data = getIDAndRevisionFromHash(); + if (!data) { + return Promise.resolve(null); + } + return fetchSnippet(data.hash); +} + +/** + * Create a new snippet. + */ +export async function create(data) { + const hash = await codec.compress(data); + return new Revision({ data, hash }); +} + +/** + * Update an existing snippet. + */ +export async function update(revision, data) { + // Fetch latest version of snippet + const hash = await codec.compress(data); + return new Revision({ data, hash }); +} + +/** + * Fork existing snippet. + */ +export function fork(revision, data) { + return Promise.resolve(null); +} + +class Revision { + constructor({ data, hash }) { + console.log({data, hash}) + this.data = data; + this.hash = hash; + } + + canSave() { + return true; + } + + getPath() { + return `/snippet/${this.hash}}`; + } + + getSnippetID() { + return this.hash; + } + + getRevisionID() { + return null; + } + + getTransformerID() { + return this.data.toolID; + } + + getTransformCode() { + return ""; + } + + getParserID() { + return this.data.parserID; + } + + getCode() { + if (this.data.code == null) { + return ''; + } + return this.data.code; + } + + getParserSettings() { + return this.data.settings[this.data.parserID]; + } + + getShareInfo() { + const snippetID = this.getSnippetID(); + const revisionID = this.getRevisionID(); + return ( +
+
+
Share
+
+ e.target.select()} + value={`https://textlint.github.io/astexplorer/#/snippet/${snippetID}`} + /> +
+
+
+ ); + } +} From fd89044bd05bf11a60542fa8f95455e4ffabdc39 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 16:13:33 +0900 Subject: [PATCH 08/51] feat: support textlint 13 and html plugin --- website/package.json | 12 +- ...down-to-ast.js => textlint-plugin-html.js} | 4 +- website/src/parsers/index.js | 2 +- .../src/parsers/textlint-html/codeExample.txt | 5 + website/src/parsers/textlint-html/index.js | 5 + .../textlint-html/textlint-plugin-html.js | 28 + .../textlint-plugin-html/codeExample.txt | 11 + .../textlint-plugin-html/index.js | 62 ++ .../{md => textlint-md}/codeExample.txt | 0 .../src/parsers/{md => textlint-md}/index.js | 0 .../textlint-markdown-to-ast.js | 4 +- .../textlint-markdown-to-ast/codeExample.txt | 0 .../textlint-markdown-to-ast/index.js | 0 .../{txt => textlint-txt}/codeExample.txt | 0 .../parsers/{txt => textlint-txt}/index.js | 0 .../textlint-txt-to-ast.js | 2 +- .../textlint-txt-to-ast/codeExample.txt | 0 .../transformers/textlint-txt-to-ast/index.js | 2 +- website/yarn.lock | 545 +++++++++--------- 19 files changed, 410 insertions(+), 272 deletions(-) rename website/src/parsers/html/{textlint-markdown-to-ast.js => textlint-plugin-html.js} (83%) create mode 100644 website/src/parsers/textlint-html/codeExample.txt create mode 100644 website/src/parsers/textlint-html/index.js create mode 100644 website/src/parsers/textlint-html/textlint-plugin-html.js create mode 100644 website/src/parsers/textlint-html/transformers/textlint-plugin-html/codeExample.txt create mode 100644 website/src/parsers/textlint-html/transformers/textlint-plugin-html/index.js rename website/src/parsers/{md => textlint-md}/codeExample.txt (100%) rename website/src/parsers/{md => textlint-md}/index.js (100%) rename website/src/parsers/{md => textlint-md}/textlint-markdown-to-ast.js (85%) rename website/src/parsers/{md => textlint-md}/transformers/textlint-markdown-to-ast/codeExample.txt (100%) rename website/src/parsers/{md => textlint-md}/transformers/textlint-markdown-to-ast/index.js (100%) rename website/src/parsers/{txt => textlint-txt}/codeExample.txt (100%) rename website/src/parsers/{txt => textlint-txt}/index.js (100%) rename website/src/parsers/{txt => textlint-txt}/textlint-txt-to-ast.js (93%) rename website/src/parsers/{txt => textlint-txt}/transformers/textlint-txt-to-ast/codeExample.txt (100%) rename website/src/parsers/{txt => textlint-txt}/transformers/textlint-txt-to-ast/index.js (97%) diff --git a/website/package.json b/website/package.json index b019d57a..09925052 100644 --- a/website/package.json +++ b/website/package.json @@ -53,11 +53,11 @@ "@glimmer/syntax": "^0.73.1", "@humanwhocodes/momoa": "^1.0.0", "@mdx-js/mdx": "^1.5.8", - "@textlint/kernel": "^12.0.0", - "@textlint/markdown-to-ast": "^12.0.0", - "@textlint/text-to-ast": "^12.0.0", - "@textlint/textlint-plugin-markdown": "^12.0.0", - "@textlint/textlint-plugin-text": "^12.0.0", + "@textlint/kernel": "^13.1.3", + "@textlint/markdown-to-ast": "^13.1.3", + "@textlint/text-to-ast": "^13.1.3", + "@textlint/textlint-plugin-markdown": "^13.1.3", + "@textlint/textlint-plugin-text": "^13.1.3", "@typescript-eslint/parser": "^4.1.0", "@vue/compiler-dom": "^3.0.0-rc.10", "@webassemblyjs/wast-parser": "^1.9.0", @@ -157,7 +157,7 @@ "svelte": "^3.4.1", "tenko": "^1.0.6", "tern": "^0.24.3", - "textlint-plugin-html": "^0.2.0", + "textlint-plugin-html": "^1.0.0", "traceur": "0.0.111", "tslint": "^6.1.1", "typescript": "^4.0.3", diff --git a/website/src/parsers/html/textlint-markdown-to-ast.js b/website/src/parsers/html/textlint-plugin-html.js similarity index 83% rename from website/src/parsers/html/textlint-markdown-to-ast.js rename to website/src/parsers/html/textlint-plugin-html.js index 5be39a10..7bebae06 100644 --- a/website/src/parsers/html/textlint-markdown-to-ast.js +++ b/website/src/parsers/html/textlint-plugin-html.js @@ -7,13 +7,13 @@ const ID = 'textlint:html'; export default { ...defaultParserInterface, id: ID, - displayName: "textlint", + displayName: "textlint-plugin-html", version: pkg.version, homepage: pkg.homepage, locationProps: new Set(['loc', 'range']), loadParser(callback) { - require(['textlint-plugin-html/lib/html-to-ast'], callback); + require(['textlint-plugin-html/module/html-to-ast'], callback); }, parse(parser, text) { diff --git a/website/src/parsers/index.js b/website/src/parsers/index.js index f199414a..2adcdcbc 100644 --- a/website/src/parsers/index.js +++ b/website/src/parsers/index.js @@ -1,5 +1,5 @@ // const localRequire = require.context('./', true, /^\.\/(?!utils)[^/]+\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); -const localRequire = require.context('./', true, /^\.\/(md|html|txt)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); +const localRequire = require.context('./', true, /^\.\/(textlint-.*?)\/(transformers\/([^/]+)\/)?(codeExample\.txt|[^/]+?\.js)$/); function interopRequire(module) { return module.__esModule ? module.default : module; } diff --git a/website/src/parsers/textlint-html/codeExample.txt b/website/src/parsers/textlint-html/codeExample.txt new file mode 100644 index 00000000..3cce0220 --- /dev/null +++ b/website/src/parsers/textlint-html/codeExample.txt @@ -0,0 +1,5 @@ +

Title

+ +
+

This is a paragraph.

+
diff --git a/website/src/parsers/textlint-html/index.js b/website/src/parsers/textlint-html/index.js new file mode 100644 index 00000000..024013ae --- /dev/null +++ b/website/src/parsers/textlint-html/index.js @@ -0,0 +1,5 @@ +import 'codemirror/mode/htmlembedded/htmlembedded'; + +export const id = 'html'; +export const displayName = 'HTML'; +export const mimeTypes = ['text/html']; diff --git a/website/src/parsers/textlint-html/textlint-plugin-html.js b/website/src/parsers/textlint-html/textlint-plugin-html.js new file mode 100644 index 00000000..c220b367 --- /dev/null +++ b/website/src/parsers/textlint-html/textlint-plugin-html.js @@ -0,0 +1,28 @@ +import defaultParserInterface from '../utils/defaultParserInterface'; + +import pkg from 'textlint-plugin-html/package.json'; + +const ID = 'textlint-plugin-html'; + +export default { + ...defaultParserInterface, + id: ID, + displayName: "textlint-plugin-html", + version: pkg.version, + homepage: pkg.homepage, + locationProps: new Set(['loc', 'range']), + + loadParser(callback) { + require(['textlint-plugin-html/module/html-to-ast'], callback); + }, + + parse(parser, text) { + return parser.parse(text); + }, + + opensByDefault(node, key) { + return key === 'rules'; + }, + + _ignoredProperties: new Set(['location', 'position']) +}; diff --git a/website/src/parsers/textlint-html/transformers/textlint-plugin-html/codeExample.txt b/website/src/parsers/textlint-html/transformers/textlint-plugin-html/codeExample.txt new file mode 100644 index 00000000..b786a71e --- /dev/null +++ b/website/src/parsers/textlint-html/transformers/textlint-plugin-html/codeExample.txt @@ -0,0 +1,11 @@ +module.exports = function (context) { + const {Syntax, RuleError, report, getSource} = context; + return { + [Syntax.Str](node){ + const value = getSource(node); + if(/TITLE/i.test(value)) { + report(node, new RuleError("Error: includes title")); + } + } + }; +} diff --git a/website/src/parsers/textlint-html/transformers/textlint-plugin-html/index.js b/website/src/parsers/textlint-html/transformers/textlint-plugin-html/index.js new file mode 100644 index 00000000..3219513f --- /dev/null +++ b/website/src/parsers/textlint-html/transformers/textlint-plugin-html/index.js @@ -0,0 +1,62 @@ +import compileModule from '../../../utils/compileModule'; +import pkg from '@textlint/kernel/package.json'; + +const ID = 'textlint-plugin-html'; + +function formatResults(results, code) { + const format = (message) => { + return formatResult(message, code); + }; + return results.messages.length === 0 + ? 'Lint rule not fired.' + : results.messages.map(format).join('').trim(); +} + +function formatResult(result, code) { + const pointer = '-'.repeat(result.column - 1) + '^'; + console.log(code.split('\n')[result.line - 1]); + return ` +| ${result.message} (at ${result.line}:${result.column}) + ${code.split('\n')[result.line - 1] || ''} +| ${pointer} +`; +} + +export default { + id: ID, + displayName: ID, + version: pkg.version, + homepage: pkg.homepage, + + defaultParserID: 'textlint-plugin-html', + + loadTransformer(callback) { + require(['@textlint/kernel', "textlint-plugin-html"], ({ TextlintKernel }, plugin) => { + callback({ TextlintKernel, plugin }); + }) + }, + + transform({ TextlintKernel, plugin }, transformCode, code) { + console.log({ TextlintKernel, plugin }) + const kernel = new TextlintKernel(); + const rule = compileModule( // eslint-disable-line no-shadow + transformCode + ); + return kernel.lintText(code, { + rules: [{ + ruleId: "astExplorerRule", + rule: rule, + options: true + }], + plugins: [{ + pluginId: "html", + plugin: plugin.default, + options: true + }], + ext: ".html" + }).then(result => { + return formatResults(result, code); + }); + }, +}; + diff --git a/website/src/parsers/md/codeExample.txt b/website/src/parsers/textlint-md/codeExample.txt similarity index 100% rename from website/src/parsers/md/codeExample.txt rename to website/src/parsers/textlint-md/codeExample.txt diff --git a/website/src/parsers/md/index.js b/website/src/parsers/textlint-md/index.js similarity index 100% rename from website/src/parsers/md/index.js rename to website/src/parsers/textlint-md/index.js diff --git a/website/src/parsers/md/textlint-markdown-to-ast.js b/website/src/parsers/textlint-md/textlint-markdown-to-ast.js similarity index 85% rename from website/src/parsers/md/textlint-markdown-to-ast.js rename to website/src/parsers/textlint-md/textlint-markdown-to-ast.js index acd9e9d1..7e89e362 100644 --- a/website/src/parsers/md/textlint-markdown-to-ast.js +++ b/website/src/parsers/textlint-md/textlint-markdown-to-ast.js @@ -7,7 +7,7 @@ const ID = 'textlint:markdown-to-ast'; export default { ...defaultParserInterface, id: ID, - displayName: "textlint", + displayName: "@textlint/text-to-ast", version: pkg.version, homepage: pkg.homepage, locationProps: new Set(['loc', 'range']), @@ -24,5 +24,5 @@ export default { return key === 'rules'; }, - _ignoredProperties: new Set(['location']) + _ignoredProperties: new Set(['location', 'position']) }; diff --git a/website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt b/website/src/parsers/textlint-md/transformers/textlint-markdown-to-ast/codeExample.txt similarity index 100% rename from website/src/parsers/md/transformers/textlint-markdown-to-ast/codeExample.txt rename to website/src/parsers/textlint-md/transformers/textlint-markdown-to-ast/codeExample.txt diff --git a/website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js b/website/src/parsers/textlint-md/transformers/textlint-markdown-to-ast/index.js similarity index 100% rename from website/src/parsers/md/transformers/textlint-markdown-to-ast/index.js rename to website/src/parsers/textlint-md/transformers/textlint-markdown-to-ast/index.js diff --git a/website/src/parsers/txt/codeExample.txt b/website/src/parsers/textlint-txt/codeExample.txt similarity index 100% rename from website/src/parsers/txt/codeExample.txt rename to website/src/parsers/textlint-txt/codeExample.txt diff --git a/website/src/parsers/txt/index.js b/website/src/parsers/textlint-txt/index.js similarity index 100% rename from website/src/parsers/txt/index.js rename to website/src/parsers/textlint-txt/index.js diff --git a/website/src/parsers/txt/textlint-txt-to-ast.js b/website/src/parsers/textlint-txt/textlint-txt-to-ast.js similarity index 93% rename from website/src/parsers/txt/textlint-txt-to-ast.js rename to website/src/parsers/textlint-txt/textlint-txt-to-ast.js index e9bd8193..44c76bc4 100644 --- a/website/src/parsers/txt/textlint-txt-to-ast.js +++ b/website/src/parsers/textlint-txt/textlint-txt-to-ast.js @@ -7,7 +7,7 @@ const ID = 'textlint:txt-to-ast'; export default { ...defaultParserInterface, id: ID, - displayName: "textlint", + displayName: "@textlint/text-to-ast", version: pkg.version, homepage: pkg.homepage, locationProps: new Set(['loc', 'range']), diff --git a/website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt b/website/src/parsers/textlint-txt/transformers/textlint-txt-to-ast/codeExample.txt similarity index 100% rename from website/src/parsers/txt/transformers/textlint-txt-to-ast/codeExample.txt rename to website/src/parsers/textlint-txt/transformers/textlint-txt-to-ast/codeExample.txt diff --git a/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js b/website/src/parsers/textlint-txt/transformers/textlint-txt-to-ast/index.js similarity index 97% rename from website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js rename to website/src/parsers/textlint-txt/transformers/textlint-txt-to-ast/index.js index c23b764b..e454987b 100644 --- a/website/src/parsers/txt/transformers/textlint-txt-to-ast/index.js +++ b/website/src/parsers/textlint-txt/transformers/textlint-txt-to-ast/index.js @@ -37,7 +37,7 @@ export default { }, transform({ TextlintKernel, plugin }, transformCode, code) { - const kernel = new TextlintKernel(); + const kernel = new Kernel(); const rule = compileModule( // eslint-disable-line no-shadow transformCode ); diff --git a/website/yarn.lock b/website/yarn.lock index e16660e0..f7239a4d 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1328,110 +1328,115 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-12.0.0.tgz#23bd683f9fc04209ae28bff72954c8aa67c6b1ca" - integrity sha512-qUjmlpz1vR3AStBA9RPDCVT0/pGtePvBJ5Vb/0PzTrnr04iFktG6P6B1VOmgTh8J9Kl/FonQFo3A9M1Q3UH+JA== - -"@textlint/ast-tester@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-12.0.0.tgz#3cd4395909ad688f56f47d77a80ec6ba4461837f" - integrity sha512-mcAqaOJnAhay8QtDC/na5S72XPxmqGCntOwcLwuSjEmPGAIuLC3GsumLQo4nWSQ2LGnWd6CwLDZT4eBlRWetNA== - dependencies: - "@textlint/ast-node-types" "^12.0.0" - debug "^4.3.1" - -"@textlint/ast-traverse@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-12.0.0.tgz#eeb35ec9b646a57a5ab77ca0f461a82f591109bc" - integrity sha512-Mu0il8qWS9YkzVAqwmrTd+ga5S0LJVWOGjE6d9yADf5xObUDFk4g8ITlfEOiicpX5bTUxT4e1bORxPveCJ8iKQ== - dependencies: - "@textlint/ast-node-types" "^12.0.0" - -"@textlint/feature-flag@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-12.0.0.tgz#e09d295c9eaedda90e54bb4ecdc23c325d2e120c" - integrity sha512-xgK6tsf1Gg6xn8/X0HN4LXzSkJYgmByAvzItUPlI0dzvA4HhhT4gkBeshDCuXsHLc970nYgzy1TYHpyscu7PTw== - dependencies: - map-like "^2.0.0" - -"@textlint/kernel@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-12.0.0.tgz#29cca37644445429fdddad13244d0d40eaf24289" - integrity sha512-8UXHKhSAgn1aexPjyQE1CRVivCfSz+aFuNrktT9+JOMM3XsSd4JFcMKDhPA1utiiRR+4yDVH5be38vuuJOG9cQ== - dependencies: - "@textlint/ast-node-types" "^12.0.0" - "@textlint/ast-tester" "^12.0.0" - "@textlint/ast-traverse" "^12.0.0" - "@textlint/feature-flag" "^12.0.0" - "@textlint/source-code-fixer" "^12.0.0" - "@textlint/types" "^12.0.0" - "@textlint/utils" "^12.0.0" - debug "^4.3.1" - deep-equal "^1.1.1" - map-like "^2.0.0" - structured-source "^3.0.2" - -"@textlint/markdown-to-ast@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-12.0.0.tgz#bdd2f572e12be04b153789413a31fcf78d1f98d2" - integrity sha512-XaiuePJVDGVIwdjIiITdbdRXZDFnAFY/so3Rb8qAId/Qq9fKPUvgefMkdIG73wUC7LzhrAzH6/CuEO+f77HR5g== - dependencies: - "@textlint/ast-node-types" "^12.0.0" - debug "^4.3.1" +"@textlint/ast-node-types@^13.0.5", "@textlint/ast-node-types@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" + integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== + +"@textlint/ast-tester@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.1.4.tgz#59754a895be4aba29a82a5df3edf4c6acbed2c10" + integrity sha512-GH+PtICxEXI7OtOvMN3/T7SVLLdGUru5IOfnfQwZYwtdfdbwE+NnXVbAIcGopB2ZFvZPeVn+KsvZ+cCqeD+5Dw== + dependencies: + "@textlint/ast-node-types" "^13.1.4" + debug "^4.3.4" + +"@textlint/ast-traverse@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.1.4.tgz#5801c8e5d489f527c33b54292830e68b6ca85b33" + integrity sha512-PXsDtVDAq8GHg5gjbsYElR7I1hRbu0hOOAL46sI5V58cnR+aTys5RmKF7aaZYCuKEIrv/0yjmF8RSexCC/YpKQ== + dependencies: + "@textlint/ast-node-types" "^13.1.4" + +"@textlint/feature-flag@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.1.4.tgz#1c614dc6269622c15c7324258d20333f087f492a" + integrity sha512-O/YXd/Mc2u8hMi7Y6SHidqtQl3u9kBKo2qvJUo3iBDN+Uubk/K4HAFR8fnioHa4OQBeVEZkiPz148KjDTtZkDQ== + +"@textlint/kernel@^13.1.3": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.1.4.tgz#79f9a378de3ea3315c37f32d14c6577aff0d48db" + integrity sha512-Ek3g0/psMP+Uu0jLMCkAVckuyf96FjW4zNn++8YME1UEcj3Jmoh0gWBTTLrqEtFV0DHZOYwbibynynJUUNH8nQ== + dependencies: + "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-tester" "^13.1.4" + "@textlint/ast-traverse" "^13.1.4" + "@textlint/feature-flag" "^13.1.4" + "@textlint/source-code-fixer" "^13.1.4" + "@textlint/types" "^13.1.4" + "@textlint/utils" "^13.1.4" + debug "^4.3.4" + fast-equals "^4.0.3" + structured-source "^4.0.0" + +"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.1.4.tgz#3ec565f8849406aa4c7aeaed65a13ef941cc810f" + integrity sha512-+H1x9RcBae6pOZeoMkqP6yPMPqPkumvLkp/n4xXNXpXM9C1c8bnxgoAcL0OuoJmJo34S5X8DKEuCRVX8r+IEuA== + dependencies: + "@textlint/ast-node-types" "^13.1.4" + debug "^4.3.4" + mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" remark-frontmatter "^3.0.0" remark-gfm "^1.0.0" remark-parse "^9.0.0" - traverse "^0.6.6" - unified "^9.2.1" + traverse "^0.6.7" + unified "^9.2.2" -"@textlint/source-code-fixer@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-12.0.0.tgz#ada198da75ac9dc1c01395fe338a5256247df413" - integrity sha512-+XMJ7unzezEqKh8euWIw1QUprvv7IJzOfV0UPVbkThX2d3ZOzBmK+AzlYbqzCwZ1jkV0QYaRqaptBE+iaaQjNg== +"@textlint/source-code-fixer@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.1.4.tgz#fd82c95b59a03aa02908cc469db8969469974fda" + integrity sha512-Tzq/83EXVoYxCbQA17QuDbDhw9ynsO+Bz6Sd3aWyIck3yPPgw/ciZdoPyOaKBnfHMQBvL71Ha001y1mezETD2w== dependencies: - "@textlint/types" "^12.0.0" - debug "^4.3.1" + "@textlint/types" "^13.1.4" + debug "^4.3.4" -"@textlint/text-to-ast@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-12.0.0.tgz#db0293107c09a2f5b89005105e4ea78182f3e803" - integrity sha512-j73hF6BiwdZurNdzHfOtP5j3v+nTWaTP7RtJf5wpfQBigT4RA+EqmKxUd/OpO+gt/Xy1NkpceLFNllZGRLEvkw== +"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.1.4.tgz#feb8b687bdfcb1d3c010cae583e78d5efbf42b95" + integrity sha512-hswGeU8ibagh/BzG+6dOyHYz3Kng0y8KdGTSZTSn/QGiFd+YGMj+0UlDbGLG3BvtNu2ERH5N1qEiaPlh/XNurQ== dependencies: - "@textlint/ast-node-types" "^12.0.0" + "@textlint/ast-node-types" "^13.1.4" -"@textlint/textlint-plugin-markdown@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.0.0.tgz#17e5334288c2e7d26dab6b2fc344f043641cd7df" - integrity sha512-eo9deECYMkytoiJUqDxEwzugL8sLcCFUbeCpzV5IuIRwQBh85Hds3lp/mtW1B3Q/BxcSa08im2HAa9uRdcoe4Q== +"@textlint/textlint-plugin-markdown@^13.1.3": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.1.4.tgz#f892df51d5c71115c1924954dab7dd598e1730aa" + integrity sha512-T+6rKpJLZeUkzRW2toFkduSdHTjFm3D1wo3jghDtScNwextz/GBWLXqQp4DM9/dmYzkpVeBijq5PGCj8NRV1qQ== dependencies: - "@textlint/markdown-to-ast" "^12.0.0" + "@textlint/markdown-to-ast" "^13.1.4" -"@textlint/textlint-plugin-text@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.0.0.tgz#61f09f72b5d092e95ac2ed5ac2c2870b343841cc" - integrity sha512-brtexdqu7yvFLstYvVlotMZz5T7SwKfnFnV9Sm+uhg/d3Ddea9exzpiWWcXfRAhfOBd12mmEGM6gwAuSwzrhqg== +"@textlint/textlint-plugin-text@^13.1.3": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.1.4.tgz#d182f2e113b863712bfc584a141006c32179579f" + integrity sha512-l8DLa3z83k4SBo0QuXo3mwEdGyh7uIEPbeN/lj6fiEqDwKwLzURvghoSQMUj9ilNmF7quYXSuur+4IGCq4ruLA== dependencies: - "@textlint/text-to-ast" "^12.0.0" + "@textlint/text-to-ast" "^13.1.4" -"@textlint/types@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-12.0.0.tgz#c197b756070cdf413c1a6b311520d927b1d47069" - integrity sha512-3sB22cGtN9nPViDrW7FJxWkDrpGtyJbvNsvZqzX83HJbAiOmzzeHDkRRLvz9tax76lcdjlNk+2rHY3iSnjhEag== +"@textlint/types@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.1.4.tgz#b74dd2e0370fbafb05a99fb9acba63116c601104" + integrity sha512-M6t95O6xfHlZowRtEXNKpnkfyV9D3Wt4t8qFDpoF0Usuno700kxLczUDIXzja4UHPOlpW85vgx1mKCEfn/3IvA== dependencies: - "@textlint/ast-node-types" "^12.0.0" + "@textlint/ast-node-types" "^13.1.4" -"@textlint/utils@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-12.0.0.tgz#e457b4ebbf3925b3bf0d32c597e1a20beaa1b121" - integrity sha512-bnIr17iouc4MtVR+r7v8mBasNn3ZsQpfTLTi4RelrZJdICHMBUMOWRX70cVRV/xJck/nfY9igt325qI0y2ELoQ== +"@textlint/utils@^13.1.4": + version "13.1.4" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.1.4.tgz#285ed76098a410f8156b162a862449a0a003e021" + integrity sha512-vGpXvqy2WrtZTy5qNAoOn1PrrdjTCC0AqIuZCGzHUd25t9GR77DUl7ifpT21lMK3NPl2IYcY2BpX6+MWYIA8wA== "@types/color-name@^1.1.1": version "1.1.1" resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== +"@types/hast@^2.0.0": + version "2.3.4" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" + integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== + dependencies: + "@types/unist" "*" + "@types/mdast@^3.0.0": version "3.0.3" resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" @@ -2130,13 +2135,6 @@ atob@^2.1.1, atob@^2.1.2: resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== -attach-ware@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/attach-ware/-/attach-ware-1.1.1.tgz#28f51393dd8bb8bdaad972342519bf09621a35a3" - integrity sha1-KPUTk92LuL2q2XI0JRm/CWIaNaM= - dependencies: - unherit "^1.0.0" - autoprefixer@^9.7.6: version "9.7.6" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4" @@ -3095,6 +3093,11 @@ bail@^1.0.0: resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== +bail@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d" + integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw== + balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" @@ -3182,10 +3185,10 @@ boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= -boundary@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/boundary/-/boundary-1.0.1.tgz#4d67dc2602c0cc16dd9bce7ebf87e948290f5812" - integrity sha1-TWfcJgLAzBbdm85+v4fpSCkPWBI= +boundary@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/boundary/-/boundary-2.0.0.tgz#169c8b1f0d44cf2c25938967a328f37e0a4e5efc" + integrity sha512-rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA== boxen@1.3.0: version "1.3.0" @@ -3423,14 +3426,6 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -3505,6 +3500,11 @@ caniuse-lite@^1.0.30001181: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001194.tgz#3d16ff3d734a5a7d9818402c28b1f636c5be5bed" integrity sha512-iDUOH+oFeBYk5XawYsPtsx/8fFpndAPUQJC7gBTfxHM8xw5nOZv7ceAD4frS1MKCLUac7QL5wdAJiFQlDRjXlA== +ccount@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" + integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== + ccount@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.4.tgz#9cf2de494ca84060a2a8d2854edd6dfb0445f386" @@ -3750,11 +3750,6 @@ clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= -co@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78" - integrity sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g= - co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -3852,6 +3847,11 @@ comma-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.7.tgz#419cd7fb3258b1ed838dc0953167a25e152f5b59" integrity sha512-Jrx3xsP4pPv4AwJUDWY9wOXGtwPXARej6Xd99h4TUGotmf8APuquKMpK+dnD3UgyxK7OEWaisjZz+3b5jtL6xQ== +comma-separated-tokens@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee" + integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg== + commander@2.17.x: version "2.17.1" resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" @@ -4240,7 +4240,7 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.1.0, debug@^4.3.1: +debug@^4.0.0, debug@^4.1.0: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== @@ -4254,6 +4254,13 @@ debug@^4.0.1, debug@^4.1.1: dependencies: ms "^2.1.1" +debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + decamelize@^1.0.0, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -4264,18 +4271,6 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= -deep-equal@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" - integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== - dependencies: - is-arguments "^1.0.4" - is-date-object "^1.0.1" - is-regex "^1.0.4" - object-is "^1.0.1" - object-keys "^1.1.1" - regexp.prototype.flags "^1.2.0" - deep-extend@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" @@ -4663,11 +4658,6 @@ enhanced-resolve@^4.1.0: memory-fs "^0.5.0" tapable "^1.0.0" -ent@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" - integrity sha1-6WQhkyWiHQX0RGai9obtbOX13R0= - entities@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" @@ -4806,16 +4796,16 @@ escalade@^3.1.1: resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-html@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= - escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + escodegen@^1.14.1: version "1.14.1" resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" @@ -5246,6 +5236,8 @@ esquery@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + dependencies: + estraverse "^4.0.0" esquery@^1.0.1: version "1.3.0" @@ -5273,7 +5265,7 @@ estraverse-fb@^1.3.1: resolved "https://registry.yarnpkg.com/estraverse-fb/-/estraverse-fb-1.3.2.tgz#d323a4cb5e5ac331cea033413a9253e1643e07c4" integrity sha1-0yOky15awzHOoDNBOpJT4WQ+B8Q= -estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== @@ -5463,6 +5455,11 @@ fast-deep-equal@^3.1.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== +fast-equals@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fast-equals/-/fast-equals-4.0.3.tgz#72884cc805ec3c6679b99875f6b7654f39f0e8c7" + integrity sha512-G3BSX9cfKttjr+2o1O22tYMLq0DPluZnYtq1rXumE1SpL/F/SLIfHx08WYQoWSIpeMYf8sRbJ8++71+v6Pnxfg== + fast-glob@^3.1.1: version "3.2.2" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d" @@ -5804,15 +5801,6 @@ get-caller-file@^2.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" - integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.1" - get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" @@ -6219,11 +6207,31 @@ hast-util-from-parse5@^5.0.0: web-namespaces "^1.1.2" xtend "^4.0.1" +hast-util-from-parse5@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.1.tgz#1887b4dd4e19f29d9c48c2e1c8bfeaac13a1f3a0" + integrity sha512-R6PoNcUs89ZxLJmMWsVbwSWuz95/9OriyQZ3e2ybwqGsRXzhA6gv49rgGmQvLbZuSNDv9fCg7vV7gXUsvtUFaA== + dependencies: + "@types/hast" "^2.0.0" + "@types/unist" "^2.0.0" + hastscript "^7.0.0" + property-information "^6.0.0" + vfile "^5.0.0" + vfile-location "^4.0.0" + web-namespaces "^2.0.0" + hast-util-parse-selector@^2.2.0: version "2.2.2" resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.2.tgz#66aabccb252c47d94975f50a281446955160380b" integrity sha512-jIMtnzrLTjzqgVEQqPEmwEZV+ea4zHRFTP8Z2Utw0I5HuBOXHzUPPQWr6ouJdJqDKLbFU/OEiYwZ79LalZkmmw== +hast-util-parse-selector@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz#25ab00ae9e75cbc62cf7a901f68a247eade659e2" + integrity sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA== + dependencies: + "@types/hast" "^2.0.0" + hast-util-raw@5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-5.0.2.tgz#62288f311ec2f35e066a30d5e0277f963ad43a67" @@ -6249,21 +6257,6 @@ hast-util-to-parse5@^5.0.0: xtend "^4.0.1" zwitch "^1.0.0" -hast@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/hast/-/hast-0.0.2.tgz#87950b0180a71df4df9216c304d426db4ea30482" - integrity sha1-h5ULAYCnHfTfkhbDBNQm206jBII= - dependencies: - bail "^1.0.0" - camelcase "^1.2.1" - ent "^2.2.0" - escape-html "^1.0.3" - htmlparser2 "^3.8.3" - param-case "^1.1.1" - property-information "^2.0.0" - trim "0.0.1" - unified "^2.1.0" - hastscript@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-5.1.0.tgz#a19b3cca6a26a2bcd0f1b1eac574af9427c1c7df" @@ -6274,6 +6267,17 @@ hastscript@^5.0.0: property-information "^5.0.1" space-separated-tokens "^1.0.0" +hastscript@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-7.2.0.tgz#0eafb7afb153d047077fa2a833dc9b7ec604d10b" + integrity sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw== + dependencies: + "@types/hast" "^2.0.0" + comma-separated-tokens "^2.0.0" + hast-util-parse-selector "^3.0.0" + property-information "^6.0.0" + space-separated-tokens "^2.0.0" + he@1.2.x, he@^1.1.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" @@ -6354,7 +6358,7 @@ html-webpack-plugin@^3.2.0: toposort "^1.0.0" util.promisify "1.0.0" -htmlparser2@^3.3.0, htmlparser2@^3.8.3, htmlparser2@^3.9.2: +htmlparser2@^3.3.0, htmlparser2@^3.9.2: version "3.10.1" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== @@ -6676,13 +6680,6 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" -is-arguments@^1.0.4: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" - integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== - dependencies: - call-bind "^1.0.0" - is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -6896,6 +6893,11 @@ is-plain-obj@^2.0.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== +is-plain-obj@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0" + integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg== + is-plain-object@^2.0.3, is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" @@ -7689,11 +7691,6 @@ map-cache@^0.2.2: resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= -map-like@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/map-like/-/map-like-2.0.0.tgz#94496d49ad333c0dc3234b27adbbd1e8535953b4" - integrity sha1-lEltSa0zPA3DI0snrbvR6FNZU7Q= - map-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" @@ -7747,6 +7744,15 @@ mdast-util-directive@^1.0.0: stringify-entities "^3.1.0" unist-util-visit-parents "^3.0.0" +mdast-util-find-and-replace@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-1.1.1.tgz#b7db1e873f96f66588c321f1363069abf607d1b5" + integrity sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA== + dependencies: + escape-string-regexp "^4.0.0" + unist-util-is "^4.0.0" + unist-util-visit-parents "^3.0.0" + mdast-util-footnote@^0.1.0: version "0.1.7" resolved "https://registry.yarnpkg.com/mdast-util-footnote/-/mdast-util-footnote-0.1.7.tgz#4b226caeab4613a3362c144c94af0fdd6f7e0ef0" @@ -7777,6 +7783,15 @@ mdast-util-gfm-autolink-literal@^0.1.0: resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.1.tgz#94675074d725ed7254b3172fa7e7c3252960de39" integrity sha512-gJ2xSpqKCetSr22GEWpZH3f5ffb4pPn/72m4piY0v7T/S+O7n7rw+sfoPLhb2b4O7WdnERoYdALRcmD68FMtlw== +mdast-util-gfm-autolink-literal@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-0.1.3.tgz#9c4ff399c5ddd2ece40bd3b13e5447d84e385fb7" + integrity sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A== + dependencies: + ccount "^1.0.0" + mdast-util-find-and-replace "^1.1.0" + micromark "^2.11.3" + mdast-util-gfm-strikethrough@^0.2.0: version "0.2.2" resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-0.2.2.tgz#6e9ddd33ce41b06a60463e817f6ef4cf7bfa0655" @@ -8005,18 +8020,18 @@ micromark-extension-math@^0.1.0: katex "^0.12.0" micromark "~2.10.0" -micromark@~2.10.0: - version "2.10.1" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.10.1.tgz#cd73f54e0656f10e633073db26b663a221a442a7" - integrity sha512-fUuVF8sC1X7wsCS29SYQ2ZfIZYbTymp0EYr6sab3idFjigFFjGa5UwoniPlV9tAgntjuapW1t9U+S0yDYeGKHQ== +micromark@^2.11.3, micromark@~2.11.0: + version "2.11.4" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" + integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== dependencies: debug "^4.0.0" parse-entities "^2.0.0" -micromark@~2.11.0: - version "2.11.4" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" - integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== +micromark@~2.10.0: + version "2.10.1" + resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.10.1.tgz#cd73f54e0656f10e633073db26b663a221a442a7" + integrity sha512-fUuVF8sC1X7wsCS29SYQ2ZfIZYbTymp0EYr6sab3idFjigFFjGa5UwoniPlV9tAgntjuapW1t9U+S0yDYeGKHQ== dependencies: debug "^4.0.0" parse-entities "^2.0.0" @@ -8488,14 +8503,6 @@ object-inspect@^1.6.0, object-inspect@^1.7.0: resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== -object-is@^1.0.1: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" @@ -8780,13 +8787,6 @@ param-case@2.1.x: dependencies: no-case "^2.2.0" -param-case@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-1.1.2.tgz#dcb091a43c259b9228f1c341e7b6a44ea0bf9743" - integrity sha1-3LCRpDwlm5Io8cNB57akTqC/l0M= - dependencies: - sentence-case "^1.1.2" - parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -9228,11 +9228,6 @@ prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.8.1" -property-information@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-2.0.0.tgz#37bbac4e3384e7efa9d04d09b0fe12e58e41804c" - integrity sha1-N7usTjOE5++p0E0JsP4S5Y5BgEw= - property-information@^5.0.0, property-information@^5.0.1: version "5.2.2" resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.2.2.tgz#20555eafd2296278a682e5a51d5123e7878ecc30" @@ -9240,6 +9235,11 @@ property-information@^5.0.0, property-information@^5.0.1: dependencies: xtend "^4.0.1" +property-information@^6.0.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d" + integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg== + prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" @@ -9658,14 +9658,6 @@ regexp-tree@^0.1.5: resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.13.tgz#5b19ab9377edc68bc3679256840bb29afc158d7f" integrity sha512-hwdV/GQY5F8ReLZWO+W1SRoN5YfpOKY6852+tBFcma72DKBIcHjPRIlIvQN35bCOljuAfP2G2iB0FC/w236mUw== -regexp.prototype.flags@^1.2.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" - integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - regexp.prototype.flags@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" @@ -9760,6 +9752,16 @@ regjsparser@^0.6.0, regjsparser@^0.6.4: dependencies: jsesc "~0.5.0" +rehype-parse@^8.0.4: + version "8.0.4" + resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.4.tgz#3d17c9ff16ddfef6bbcc8e6a25a99467b482d688" + integrity sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg== + dependencies: + "@types/hast" "^2.0.0" + hast-util-from-parse5 "^7.0.0" + parse5 "^6.0.0" + unified "^10.0.0" + relateurl@0.2.x: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" @@ -10232,13 +10234,6 @@ semver@^7.3.2: resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== -sentence-case@^1.1.2: - version "1.1.3" - resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-1.1.3.tgz#8034aafc2145772d3abe1509aa42c9e1042dc139" - integrity sha1-gDSq/CFFdy06vhUJqkLJ4QQtwTk= - dependencies: - lower-case "^1.1.1" - serialize-javascript@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" @@ -10570,6 +10565,11 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== +space-separated-tokens@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f" + integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q== + spdx-correct@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" @@ -10855,12 +10855,12 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= -structured-source@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-3.0.2.tgz#dd802425e0f53dc4a6e7aca3752901a1ccda7af5" - integrity sha1-3YAkJeD1PcSm56yjdSkBoczaevU= +structured-source@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/structured-source/-/structured-source-4.0.0.tgz#0c9e59ee43dedd8fc60a63731f60e358102a4948" + integrity sha512-qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA== dependencies: - boundary "^1.0.1" + boundary "^2.0.0" style-loader@^1.1.3: version "1.1.4" @@ -11046,14 +11046,16 @@ text-table@^0.2.0, text-table@~0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -textlint-plugin-html@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-0.2.0.tgz#4203f68122dedf29169782cc4cda4d06d7adfa86" - integrity sha512-Gu4WZiY4mB/1A3ig3rNiB+evs/2G5TCKJA4RggY2ug4SR2CzBjcZUwKveXC96Dgmzq2MtAc9OHKwyqpuSxpv2w== +textlint-plugin-html@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-1.0.0.tgz#15ea39f3f9b99bf2d95d456160324b7d4f6b1d26" + integrity sha512-eOLyUWtt2OJhibqrW7lDdlYEWXcTyIbGTYjK/Zlxe7vNjiEsOKFBHRlrnIwGW0gQsMNOipdCak2xmGHNQWDs+w== dependencies: - hast "0.0.2" - structured-source "^3.0.2" - traverse "^0.6.6" + "@textlint/ast-node-types" "^13.0.5" + rehype-parse "^8.0.4" + structured-source "^4.0.0" + traverse "^0.6.7" + unified "^10.1.2" through2@^0.6.3: version "0.6.5" @@ -11170,10 +11172,10 @@ traceur@0.0.111: semver "^4.3.3" source-map-support "~0.2.8" -traverse@^0.6.6: - version "0.6.6" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137" - integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc= +traverse@^0.6.7: + version "0.6.7" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" + integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== trim-lines@^1.0.0: version "1.1.2" @@ -11200,6 +11202,11 @@ trough@^1.0.0: resolved "https://registry.yarnpkg.com/trough/-/trough-1.0.5.tgz#b8b639cefad7d0bb2abd37d433ff8293efa5f406" integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== +trough@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" + integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== + try-resolve@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912" @@ -11335,7 +11342,7 @@ uglify-js@^3.1.4: dependencies: commander "~2.20.3" -unherit@^1.0.0, unherit@^1.0.4: +unherit@^1.0.4: version "1.1.3" resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== @@ -11387,17 +11394,18 @@ unified@8.4.2: trough "^1.0.0" vfile "^4.0.0" -unified@^2.1.0: - version "2.1.4" - resolved "https://registry.yarnpkg.com/unified/-/unified-2.1.4.tgz#14bc6cd40d98ffff75b405506bad873ecbbac3ba" - integrity sha1-FLxs1A2Y//91tAVQa62HPsu6w7o= +unified@^10.0.0, unified@^10.1.2: + version "10.1.2" + resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df" + integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q== dependencies: - attach-ware "^1.0.0" - bail "^1.0.0" + "@types/unist" "^2.0.0" + bail "^2.0.0" extend "^3.0.0" - unherit "^1.0.4" - vfile "^1.0.0" - ware "^1.3.0" + is-buffer "^2.0.0" + is-plain-obj "^4.0.0" + trough "^2.0.0" + vfile "^5.0.0" unified@^7.0.0: version "7.1.0" @@ -11425,10 +11433,10 @@ unified@^9.1.0: trough "^1.0.0" vfile "^4.0.0" -unified@^9.2.1: - version "9.2.1" - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" - integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== +unified@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.2.tgz#67649a1abfc3ab85d2969502902775eb03146975" + integrity sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ== dependencies: bail "^1.0.0" extend "^3.0.0" @@ -11522,6 +11530,13 @@ unist-util-stringify-position@^2.0.0: dependencies: "@types/unist" "^2.0.2" +unist-util-stringify-position@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d" + integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg== + dependencies: + "@types/unist" "^2.0.0" + unist-util-visit-parents@^2.0.0: version "2.1.2" resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz#25e43e55312166f3348cae6743588781d112c1e9" @@ -11712,6 +11727,14 @@ vfile-location@^2.0.0: resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-2.0.6.tgz#8a274f39411b8719ea5728802e10d9e0dff1519e" integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== +vfile-location@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz#06f2b9244a3565bef91f099359486a08b10d3a95" + integrity sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw== + dependencies: + "@types/unist" "^2.0.0" + vfile "^5.0.0" + vfile-message@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-1.1.1.tgz#5833ae078a1dfa2d96e9647886cd32993ab313e1" @@ -11727,10 +11750,13 @@ vfile-message@^2.0.0: "@types/unist" "^2.0.0" unist-util-stringify-position "^2.0.0" -vfile@^1.0.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-1.4.0.tgz#c0fd6fa484f8debdb771f68c31ed75d88da97fe7" - integrity sha1-wP1vpIT43r23cfaMMe112I2pf+c= +vfile-message@^3.0.0: + version "3.1.3" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.3.tgz#1360c27a99234bebf7bddbbbca67807115e6b0dd" + integrity sha512-0yaU+rj2gKAyEk12ffdSbBfjnnj+b1zqTBv3OQCTn8yEB02bsPizwdBPrLJjHnK+cU9EMMcUnNv938XcZIkmdA== + dependencies: + "@types/unist" "^2.0.0" + unist-util-stringify-position "^3.0.0" vfile@^3.0.0: version "3.0.1" @@ -11753,6 +11779,16 @@ vfile@^4.0.0: unist-util-stringify-position "^2.0.0" vfile-message "^2.0.0" +vfile@^5.0.0: + version "5.3.6" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.6.tgz#61b2e70690cc835a5d0d0fd135beae74e5a39546" + integrity sha512-ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA== + dependencies: + "@types/unist" "^2.0.0" + is-buffer "^2.0.0" + unist-util-stringify-position "^3.0.0" + vfile-message "^3.0.0" + vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -11778,13 +11814,6 @@ vue-template-compiler@^2.6.9: de-indent "^1.0.2" he "^1.1.0" -ware@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ware/-/ware-1.3.0.tgz#d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4" - integrity sha1-0bFPOdLiy0q4xAmPdW/ksWTkc9Q= - dependencies: - wrap-fn "^0.1.0" - watchpack@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.1.tgz#280da0a8718592174010c078c7585a74cd8cd0e2" @@ -11811,6 +11840,11 @@ web-namespaces@^1.0.0, web-namespaces@^1.1.2: resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.3.tgz#9bbf5c99ff0908d2da031f1d732492a96571a83f" integrity sha512-r8sAtNmgR0WKOKOxzuSgk09JsHlpKlB+uHi937qypOu3PZ17UxPrierFKDye/uNHjNTTEshu5PId8rojIPj/tA== +web-namespaces@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692" + integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ== + webidl2@^23.5.1: version "23.11.0" resolved "https://registry.yarnpkg.com/webidl2/-/webidl2-23.11.0.tgz#3c3d492877c6b90171de4174e16b1e2b87f99267" @@ -11952,13 +11986,6 @@ wrap-ansi@^5.1.0: string-width "^3.0.0" strip-ansi "^5.0.0" -wrap-fn@^0.1.0: - version "0.1.5" - resolved "https://registry.yarnpkg.com/wrap-fn/-/wrap-fn-0.1.5.tgz#f21b6e41016ff4a7e31720dbc63a09016bdf9845" - integrity sha1-8htuQQFv9KfjFyDbxjoJAWvfmEU= - dependencies: - co "3.1.0" - wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" From 677f64c0d27270384e92ac86eb10a63c424ce54b Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 16:15:53 +0900 Subject: [PATCH 09/51] Update README.md --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c3b31c0d..27311ce3 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,11 @@ This version limited for [textlint](http://textlint.github.io/ "textlint"). - Markdown - Plain text +- [textlint-plugin-html]https://github.com/textlint/textlint-plugin-html) -Bellow is original text. +Visit [https://textlint.github.io/astexplorer](https://textlint.github.io/astexplorer). -Please Visit [https://textlint.github.io/astexplorer](https://textlint.github.io/astexplorer). - -**Notes** +**Developer Notes** - Deploy: use `website/deploy.sh` From 1d6521d5c94f438842e57304b6ffbe4b104acf40 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 16:16:41 +0900 Subject: [PATCH 10/51] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27311ce3..a5e3d030 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ This version limited for [textlint](http://textlint.github.io/ "textlint"). -- Markdown -- Plain text -- [textlint-plugin-html]https://github.com/textlint/textlint-plugin-html) +- [@textlint/textlint-plugin-markdown](https://github.com/textlint/textlint/tree/master/packages/%40textlint/textlint-plugin-markdown) +- [@textlint/textlint-plugin-text](https://github.com/textlint/textlint/tree/master/packages/%40textlint/textlint-plugin-text) +- [textlint-plugin-html](https://github.com/textlint/textlint-plugin-html) Visit [https://textlint.github.io/astexplorer](https://textlint.github.io/astexplorer). From fbec8f8774ace23ba4d55fb0284f860bae27f018 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 18:56:33 +0900 Subject: [PATCH 11/51] CI: add deploy --- .github/workflows/deploy.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..266211e4 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,30 @@ +name: Deploy + +on: + push: + branches: + - textlint + +permissions: + contents: write + +jobs: + deploy: + runs-on: ubuntu-latest + permissions: + contents: write + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v8 + with: + node-version: '18' + - name: Build + run: yarn install && yarn build + working-directory: ./website + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./out From cfc5e65578f622e6f45e6e352789558e0192d27c Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 18:57:20 +0900 Subject: [PATCH 12/51] CI: fix --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 266211e4..7b2de4e3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v8 + - uses: actions/setup-node@v3 with: node-version: '18' - name: Build From 048651c66a5195b4a35e4f3061e97da89f2da1d6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 5 Feb 2023 10:01:48 +0000 Subject: [PATCH 13/51] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..39a2b6e9 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ] +} From b6bc4b9b3edacae1f425e77c1bd3a3ac4d83a04f Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 19:02:09 +0900 Subject: [PATCH 14/51] CI: fix build --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7b2de4e3..fcee41fc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: with: node-version: '18' - name: Build - run: yarn install && yarn build + run: yarn install && yarn run build working-directory: ./website - name: Deploy uses: peaceiris/actions-gh-pages@v3 From 7853375fbefc8c43de26cb6490ed4f7457619911 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 19:02:23 +0900 Subject: [PATCH 15/51] CI: remove permission --- .github/workflows/deploy.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fcee41fc..6204da71 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,9 +5,6 @@ on: branches: - textlint -permissions: - contents: write - jobs: deploy: runs-on: ubuntu-latest From 6daf40265048a59b0163a27a702da44bb8135f0c Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 19:04:53 +0900 Subject: [PATCH 16/51] Update renovate.json --- renovate.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/renovate.json b/renovate.json index 39a2b6e9..764ccf5e 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,24 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base" + ], + "enabledManagers": [ + "npm" + ], + "packageRules": [ + { + "matchPackagePatterns": [ + "*" + ], + "enabled": false + }, + { + "matchPackagePatterns": [ + "textlint", + "^@textlint/", + "textlint-plugin-html" + ], + "enabled": true + } ] } From d898d893e3e727945cc0411592f0c3b8cd36d9c7 Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 5 Feb 2023 19:12:43 +0900 Subject: [PATCH 17/51] CI: support Node 18 --- website/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/package.json b/website/package.json index 09925052..4049b2b5 100644 --- a/website/package.json +++ b/website/package.json @@ -175,9 +175,9 @@ "browserslist": "> 0.25%, not dead", "scripts": { "start": "serve -l 8080 ../out", - "build": "rimraf ../out/* && cross-env NODE_ENV=production webpack --mode=production", - "build-dev": "rimraf ../out/* && cross-env NODE_ENV=development webpack -d --mode=development", - "watch": "webpack -dw --mode=development", + "build": "rimraf ../out/* && cross-env NODE_ENV=production NODE_OPTIONS='--openssl-legacy-provider' webpack --mode=production", + "build-dev": "rimraf ../out/* && cross-env NODE_ENV=development NODE_OPTIONS='--openssl-legacy-provider' webpack -d --mode=development", + "watch": "NODE_OPTIONS='--openssl-legacy-provider' webpack -dw --mode=development", "lint": "node_modules/eslint/bin/eslint.js src/", "fontcustom": "fontcustom compile ./fontcustom/input-svg/ --config=./fontcustom/config.yml", "deploy": "npm run build && gh-pages -d ../out" From dc8167e70c827dc5c0686fcd39b92d6b48febf62 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 17:27:03 +0000 Subject: [PATCH 18/51] fix(deps): update dependency @textlint/text-to-ast to v13.3.2 --- website/yarn.lock | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index f7239a4d..3295faa6 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,6 +1333,11 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== +"@textlint/ast-node-types@^13.3.2": + version "13.3.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.3.2.tgz#ff314f24c43ef8fa43ba6bd53126ec82b873843b" + integrity sha512-d9WXBahsAgRDWcfUE7pQs8E9SNbF0nxrEaYE2g01tLgQ/dYdlOLngNPXi0Lk+C+yU58kvmFSdO6nicIAe3WIiw== + "@textlint/ast-tester@^13.1.4": version "13.1.4" resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.1.4.tgz#59754a895be4aba29a82a5df3edf4c6acbed2c10" @@ -1393,11 +1398,11 @@ debug "^4.3.4" "@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.1.4.tgz#feb8b687bdfcb1d3c010cae583e78d5efbf42b95" - integrity sha512-hswGeU8ibagh/BzG+6dOyHYz3Kng0y8KdGTSZTSn/QGiFd+YGMj+0UlDbGLG3BvtNu2ERH5N1qEiaPlh/XNurQ== + version "13.3.2" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.3.2.tgz#bb54fd5ae5b74552b263fa9c5aeb07a4eae55724" + integrity sha512-6E2sFTukn5XygCWE1W6jU1rlQKO268tS5Qe8oHBdxp0tohFXMRzVM5r1MKgjjmuUpHxjwIcq75x+dWAYwX5wLQ== dependencies: - "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-node-types" "^13.3.2" "@textlint/textlint-plugin-markdown@^13.1.3": version "13.1.4" From 2d133feedbf9eca9454e5cdc60fbdf9adcd6541e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 17:27:17 +0000 Subject: [PATCH 19/51] fix(deps): update dependency @textlint/textlint-plugin-markdown to v13.3.2 --- website/yarn.lock | 108 +++++++++++++++++++++++++--------------------- 1 file changed, 60 insertions(+), 48 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index f7239a4d..59a4b241 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,6 +1333,11 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== +"@textlint/ast-node-types@^13.3.2": + version "13.3.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.3.2.tgz#ff314f24c43ef8fa43ba6bd53126ec82b873843b" + integrity sha512-d9WXBahsAgRDWcfUE7pQs8E9SNbF0nxrEaYE2g01tLgQ/dYdlOLngNPXi0Lk+C+yU58kvmFSdO6nicIAe3WIiw== + "@textlint/ast-tester@^13.1.4": version "13.1.4" resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.1.4.tgz#59754a895be4aba29a82a5df3edf4c6acbed2c10" @@ -1369,7 +1374,7 @@ fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.1.4": +"@textlint/markdown-to-ast@^13.1.3": version "13.1.4" resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.1.4.tgz#3ec565f8849406aa4c7aeaed65a13ef941cc810f" integrity sha512-+H1x9RcBae6pOZeoMkqP6yPMPqPkumvLkp/n4xXNXpXM9C1c8bnxgoAcL0OuoJmJo34S5X8DKEuCRVX8r+IEuA== @@ -1384,6 +1389,21 @@ traverse "^0.6.7" unified "^9.2.2" +"@textlint/markdown-to-ast@^13.3.2": + version "13.3.2" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.3.2.tgz#cf3ac4a232a3563048ecea1b8e13b4e6ef206db3" + integrity sha512-tnXk7YO8rIPbnd6rDi6LwhxoExdg6ge8v5ggiun76qLfX2uKR0ExhJEL2K+zziATi1AqalBva3WD3exU1sfjeg== + dependencies: + "@textlint/ast-node-types" "^13.3.2" + debug "^4.3.4" + mdast-util-gfm-autolink-literal "^0.1.3" + remark-footnotes "^3.0.0" + remark-frontmatter "^3.0.0" + remark-gfm "^1.0.0" + remark-parse "^9.0.0" + traverse "^0.6.7" + unified "^9.2.2" + "@textlint/source-code-fixer@^13.1.4": version "13.1.4" resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.1.4.tgz#fd82c95b59a03aa02908cc469db8969469974fda" @@ -1400,11 +1420,11 @@ "@textlint/ast-node-types" "^13.1.4" "@textlint/textlint-plugin-markdown@^13.1.3": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.1.4.tgz#f892df51d5c71115c1924954dab7dd598e1730aa" - integrity sha512-T+6rKpJLZeUkzRW2toFkduSdHTjFm3D1wo3jghDtScNwextz/GBWLXqQp4DM9/dmYzkpVeBijq5PGCj8NRV1qQ== + version "13.3.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.3.2.tgz#30405cec88fe861c1293bcc46d8f8a0684fe5733" + integrity sha512-iI/UuzUz4k5qnrPnm7U7d8oC/Hwj41MtllusBSArG3mimn5gHsS+Etzm5Zs3oxXMINdzvWNNEFJ/xbs1bZvEJg== dependencies: - "@textlint/markdown-to-ast" "^13.1.4" + "@textlint/markdown-to-ast" "^13.3.2" "@textlint/textlint-plugin-text@^13.1.3": version "13.1.4" @@ -1438,9 +1458,9 @@ "@types/unist" "*" "@types/mdast@^3.0.0": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" - integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw== + version "3.0.11" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0" + integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw== dependencies: "@types/unist" "*" @@ -1454,10 +1474,10 @@ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" - integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== +"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.6" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" + integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== "@types/vfile-message@*": version "1.0.1" @@ -4240,10 +4260,10 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.1.0: - version "4.3.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" - integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== +debug@^4.0.0, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" @@ -4254,10 +4274,10 @@ debug@^4.0.1, debug@^4.1.1: dependencies: ms "^2.1.1" -debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== +debug@^4.1.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" + integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== dependencies: ms "2.1.2" @@ -6698,9 +6718,9 @@ is-buffer@^1.1.5: integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== is-buffer@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" - integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== + version "2.0.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" + integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== is-builtin-module@^1.0.0: version "1.0.0" @@ -7762,14 +7782,15 @@ mdast-util-footnote@^0.1.0: micromark "~2.11.0" mdast-util-from-markdown@^0.8.0: - version "0.8.1" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.1.tgz#781371d493cac11212947226190270c15dc97116" - integrity sha512-qJXNcFcuCSPqUF0Tb0uYcFDIq67qwB3sxo9RPdf9vG8T90ViKnksFqdB/Coq2a7sTnxL/Ify2y7aIQXDkQFH0w== + version "0.8.5" + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" + integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== dependencies: "@types/mdast" "^3.0.0" - mdast-util-to-string "^1.0.0" - micromark "~2.10.0" + mdast-util-to-string "^2.0.0" + micromark "~2.11.0" parse-entities "^2.0.0" + unist-util-stringify-position "^2.0.0" mdast-util-frontmatter@^0.2.0: version "0.2.0" @@ -9915,7 +9936,7 @@ repeating@^2.0.0: replace-ext@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" - integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= + integrity sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA== require-directory@^2.1.1: version "2.1.1" @@ -11490,9 +11511,9 @@ unist-util-is@^3.0.0: integrity sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A== unist-util-is@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.0.tgz#85672993f0d88a8bffb45137aba003ee8da11a38" - integrity sha512-E5JLUKRQlAYiJmN2PVBdSz01R3rUKRSM00X+0DB/yLqxdLu6wZZkRdTIsxDp9X+bkxh8Eq+O2YYRbZvLZtQT1A== + version "4.1.0" + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== unist-util-is@^4.0.3: version "4.0.3" @@ -11544,15 +11565,7 @@ unist-util-visit-parents@^2.0.0: dependencies: unist-util-is "^3.0.0" -unist-util-visit-parents@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.0.0.tgz#dd4cdcd86d505ec7a81bdc01bc790f9def742bee" - integrity sha512-H3K8d81S4V3XVXVwLvrLGk+R5VILryfUotD06/R/rLsTsPLGjkn6gIP8qEEVITcuIySNYj0ocJLsePjm9F/Vcg== - dependencies: - "@types/unist" "^2.0.3" - unist-util-is "^4.0.0" - -unist-util-visit-parents@^3.1.1: +unist-util-visit-parents@^3.0.0, unist-util-visit-parents@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz#65a6ce698f78a6b0f56aa0e88f13801886cdaef6" integrity sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg== @@ -11769,13 +11782,12 @@ vfile@^3.0.0: vfile-message "^1.0.0" vfile@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.1.0.tgz#d79248957f43225d57ff67a56effc67bef08946e" - integrity sha512-BaTPalregj++64xbGK6uIlsurN3BCRNM/P2Pg8HezlGzKd1O9PrwIac6bd9Pdx2uTb0QHoioZ+rXKolbVXEgJg== + version "4.2.1" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-4.2.1.tgz#03f1dce28fc625c625bc6514350fbdb00fa9e624" + integrity sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA== dependencies: "@types/unist" "^2.0.0" is-buffer "^2.0.0" - replace-ext "1.0.0" unist-util-stringify-position "^2.0.0" vfile-message "^2.0.0" @@ -12111,6 +12123,6 @@ yargs@~3.27.0: y18n "^3.2.0" zwitch@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.4.tgz#93b1b993b13c8926753a41afaf8f27bbfac6be8b" - integrity sha512-YO803/X+13GNaZB7fVopjvHH0uWQKgJkgKnU1YCjxShjKGVuN9PPHHW8g+uFDpkHpSTNi3rCMKMewIcbC1BAYg== + version "1.0.5" + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" + integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw== From 85d3421ac2b84503d1875ea49e420faa33d2cca6 Mon Sep 17 00:00:00 2001 From: azu Date: Sat, 1 Jul 2023 07:06:55 +0900 Subject: [PATCH 20/51] Update renovate.json --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index 764ccf5e..d7d46b39 100644 --- a/renovate.json +++ b/renovate.json @@ -14,6 +14,7 @@ "enabled": false }, { + "groupName": "textlint", "matchPackagePatterns": [ "textlint", "^@textlint/", From a39eda4c91d22c5e83e8b1f41adc920b4287bf39 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 30 Jun 2023 22:07:20 +0000 Subject: [PATCH 21/51] Update textlint to v13.3.3 --- website/yarn.lock | 139 +++++++++++++++++++++------------------------- 1 file changed, 62 insertions(+), 77 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 52e698e8..cf201884 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1328,58 +1328,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@^13.0.5", "@textlint/ast-node-types@^13.1.4": +"@textlint/ast-node-types@^13.0.5": version "13.1.4" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^13.3.2": - version "13.3.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.3.2.tgz#ff314f24c43ef8fa43ba6bd53126ec82b873843b" - integrity sha512-d9WXBahsAgRDWcfUE7pQs8E9SNbF0nxrEaYE2g01tLgQ/dYdlOLngNPXi0Lk+C+yU58kvmFSdO6nicIAe3WIiw== +"@textlint/ast-node-types@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.3.3.tgz#1aa84cb97ebe0d1a85d785a58122af12b16bcbb3" + integrity sha512-KCpJppfX3Km69twa6SmVEJ8mkyAZSrxw3XaaLQSlpc7PWnLUJSCHGPVECI1nSUDhiTd1r6zlRvWuyIAZJiov+A== -"@textlint/ast-tester@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.1.4.tgz#59754a895be4aba29a82a5df3edf4c6acbed2c10" - integrity sha512-GH+PtICxEXI7OtOvMN3/T7SVLLdGUru5IOfnfQwZYwtdfdbwE+NnXVbAIcGopB2ZFvZPeVn+KsvZ+cCqeD+5Dw== +"@textlint/ast-tester@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.3.3.tgz#a844f9ff687096d5f6ba3c7c2b6bdb413406214c" + integrity sha512-vIIEJ0vDJb3Pr4kseOH9yzUCxx1EbX6PQDg/DgQj9sMAnwVG2sZvy2Uiga4+hj8SphdzaKia9Z+156UZzs+mzA== dependencies: - "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-node-types" "^13.3.3" debug "^4.3.4" -"@textlint/ast-traverse@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.1.4.tgz#5801c8e5d489f527c33b54292830e68b6ca85b33" - integrity sha512-PXsDtVDAq8GHg5gjbsYElR7I1hRbu0hOOAL46sI5V58cnR+aTys5RmKF7aaZYCuKEIrv/0yjmF8RSexCC/YpKQ== +"@textlint/ast-traverse@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.3.3.tgz#bf2ed0e8ca3dc0c9f963e81b0e7657d2abb27b33" + integrity sha512-tZ25emmWf3mJ4+vM8CO6D7F8l00WXD6MJgnnlY9BHI/HbOlngBfmKhTVizQEwrWfYF80sQO5R9a+N4UEk67Wcg== dependencies: - "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-node-types" "^13.3.3" -"@textlint/feature-flag@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.1.4.tgz#1c614dc6269622c15c7324258d20333f087f492a" - integrity sha512-O/YXd/Mc2u8hMi7Y6SHidqtQl3u9kBKo2qvJUo3iBDN+Uubk/K4HAFR8fnioHa4OQBeVEZkiPz148KjDTtZkDQ== +"@textlint/feature-flag@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.3.3.tgz#a76aa2e790a653e56913e27f836629ef6e8c5b74" + integrity sha512-ltdwKQTvs9f/TgQ3asBx2EXmsSSsvxa7ySnTXSTZBkbVxqmrGY4zehDRiDCmuFZGVGCvCddY1QzCXy16ybk9Fg== "@textlint/kernel@^13.1.3": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.1.4.tgz#79f9a378de3ea3315c37f32d14c6577aff0d48db" - integrity sha512-Ek3g0/psMP+Uu0jLMCkAVckuyf96FjW4zNn++8YME1UEcj3Jmoh0gWBTTLrqEtFV0DHZOYwbibynynJUUNH8nQ== - dependencies: - "@textlint/ast-node-types" "^13.1.4" - "@textlint/ast-tester" "^13.1.4" - "@textlint/ast-traverse" "^13.1.4" - "@textlint/feature-flag" "^13.1.4" - "@textlint/source-code-fixer" "^13.1.4" - "@textlint/types" "^13.1.4" - "@textlint/utils" "^13.1.4" + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.3.3.tgz#09b3a49c483739b87d068f86255088a0e334d7e6" + integrity sha512-HewzuuX2c2nlR+e8dREWrAYrOiyWb78eeObuW95miMjX/F6TjWmha4qrnrMCWbYbKDwC4en8dNGS4mm0vSdi4A== + dependencies: + "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-tester" "^13.3.3" + "@textlint/ast-traverse" "^13.3.3" + "@textlint/feature-flag" "^13.3.3" + "@textlint/source-code-fixer" "^13.3.3" + "@textlint/types" "^13.3.3" + "@textlint/utils" "^13.3.3" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^13.1.3": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.1.4.tgz#3ec565f8849406aa4c7aeaed65a13ef941cc810f" - integrity sha512-+H1x9RcBae6pOZeoMkqP6yPMPqPkumvLkp/n4xXNXpXM9C1c8bnxgoAcL0OuoJmJo34S5X8DKEuCRVX8r+IEuA== +"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.3.3.tgz#4e2a6804131c1725f2f36ef7418cd631ab14924a" + integrity sha512-jeqWyChTtJHWxEnH46V6qjr+OCTh6evm45aDqMzdg+b8ocXY+NhudiCMeHcVGoz042UEwc6w4reLn8+Is+SZ+A== dependencies: - "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-node-types" "^13.3.3" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,61 +1389,46 @@ traverse "^0.6.7" unified "^9.2.2" -"@textlint/markdown-to-ast@^13.3.2": - version "13.3.2" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.3.2.tgz#cf3ac4a232a3563048ecea1b8e13b4e6ef206db3" - integrity sha512-tnXk7YO8rIPbnd6rDi6LwhxoExdg6ge8v5ggiun76qLfX2uKR0ExhJEL2K+zziATi1AqalBva3WD3exU1sfjeg== +"@textlint/source-code-fixer@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.3.3.tgz#be7edd7e7e78f3d07ad7793064c766f52987f71d" + integrity sha512-h4jxWSetmcVuGwl71ai72784aneBQ0MkE5Mc3avl8PKIOIOyz0A1D7i9VQENWWIiqU8zyzmHwKGNSGyqWaqE2Q== dependencies: - "@textlint/ast-node-types" "^13.3.2" + "@textlint/types" "^13.3.3" debug "^4.3.4" - mdast-util-gfm-autolink-literal "^0.1.3" - remark-footnotes "^3.0.0" - remark-frontmatter "^3.0.0" - remark-gfm "^1.0.0" - remark-parse "^9.0.0" - traverse "^0.6.7" - unified "^9.2.2" -"@textlint/source-code-fixer@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.1.4.tgz#fd82c95b59a03aa02908cc469db8969469974fda" - integrity sha512-Tzq/83EXVoYxCbQA17QuDbDhw9ynsO+Bz6Sd3aWyIck3yPPgw/ciZdoPyOaKBnfHMQBvL71Ha001y1mezETD2w== +"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.3.3.tgz#452e4e34e3370d14415af5306ebce84e50116575" + integrity sha512-iQdiHAiUfB9XruuYWCb4fY/gD/Q5/MkH1xwUTpS8UJowNgwpTldagUJX1JbZQ2UHux+yRe9JFA+JKm3rrxgQFw== dependencies: - "@textlint/types" "^13.1.4" - debug "^4.3.4" - -"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.1.4": - version "13.3.2" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.3.2.tgz#bb54fd5ae5b74552b263fa9c5aeb07a4eae55724" - integrity sha512-6E2sFTukn5XygCWE1W6jU1rlQKO268tS5Qe8oHBdxp0tohFXMRzVM5r1MKgjjmuUpHxjwIcq75x+dWAYwX5wLQ== - dependencies: - "@textlint/ast-node-types" "^13.3.2" + "@textlint/ast-node-types" "^13.3.3" "@textlint/textlint-plugin-markdown@^13.1.3": - version "13.3.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.3.2.tgz#30405cec88fe861c1293bcc46d8f8a0684fe5733" - integrity sha512-iI/UuzUz4k5qnrPnm7U7d8oC/Hwj41MtllusBSArG3mimn5gHsS+Etzm5Zs3oxXMINdzvWNNEFJ/xbs1bZvEJg== + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.3.3.tgz#59da2422690afd8dbe087f22e1edf1192dbd0476" + integrity sha512-EhBZ/Q6ZXMVRPDeQbFdFbtc0wE7SC0DWy9lkjKXfcbLKW0ZPTvtjH3JqJtCPBZAYcexB8wKOiHImfwVfQJhJhg== dependencies: - "@textlint/markdown-to-ast" "^13.3.2" + "@textlint/markdown-to-ast" "^13.3.3" "@textlint/textlint-plugin-text@^13.1.3": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.1.4.tgz#d182f2e113b863712bfc584a141006c32179579f" - integrity sha512-l8DLa3z83k4SBo0QuXo3mwEdGyh7uIEPbeN/lj6fiEqDwKwLzURvghoSQMUj9ilNmF7quYXSuur+4IGCq4ruLA== + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.3.3.tgz#2ed39da2d7a89380e3590122ebe0c4699ad3dff8" + integrity sha512-MN/JMGLanqj8CJGuit8DDiyrO0yf1vxFMLWTDeMIXwSoe8VToHCt2j20zg8XNHGNrUbKj+wuhzhrkrKEI7uWxg== dependencies: - "@textlint/text-to-ast" "^13.1.4" + "@textlint/text-to-ast" "^13.3.3" -"@textlint/types@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.1.4.tgz#b74dd2e0370fbafb05a99fb9acba63116c601104" - integrity sha512-M6t95O6xfHlZowRtEXNKpnkfyV9D3Wt4t8qFDpoF0Usuno700kxLczUDIXzja4UHPOlpW85vgx1mKCEfn/3IvA== +"@textlint/types@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.3.3.tgz#97a38ee47390d8486fa36b6d9f573b9c6ba3a382" + integrity sha512-i2B7uRh+Iv8ZBKPJ3n4I6uSrTUQq5LdEkhFYNUwnDYxmhudz1o79xm906kri2eM8lxThX/UYYgVuJWpEwS0b+g== dependencies: - "@textlint/ast-node-types" "^13.1.4" + "@textlint/ast-node-types" "^13.3.3" -"@textlint/utils@^13.1.4": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.1.4.tgz#285ed76098a410f8156b162a862449a0a003e021" - integrity sha512-vGpXvqy2WrtZTy5qNAoOn1PrrdjTCC0AqIuZCGzHUd25t9GR77DUl7ifpT21lMK3NPl2IYcY2BpX6+MWYIA8wA== +"@textlint/utils@^13.3.3": + version "13.3.3" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.3.3.tgz#27f5d4f71e586140c496d6b6b84ff220fb97bd39" + integrity sha512-roN+K3a36RxGc0tV+8HXVXpoPomEr3LCjNI8+hFmVjOu3RsUdLTyraNBqqaghaE0KgwCPODF0seuG1hteNI8LQ== "@types/color-name@^1.1.1": version "1.1.1" From 45f68cacc6685220153fe16def62e0d658f21a1c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 01:28:30 +0000 Subject: [PATCH 22/51] Update textlint to v13.4.0 --- website/yarn.lock | 143 ++++++++++++++++++++++++---------------------- 1 file changed, 74 insertions(+), 69 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index cf201884..3906e62a 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,53 +1333,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.3.3.tgz#1aa84cb97ebe0d1a85d785a58122af12b16bcbb3" - integrity sha512-KCpJppfX3Km69twa6SmVEJ8mkyAZSrxw3XaaLQSlpc7PWnLUJSCHGPVECI1nSUDhiTd1r6zlRvWuyIAZJiov+A== +"@textlint/ast-node-types@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.0.tgz#5bd775e3b7c1e6b23573876569390b3b298c5436" + integrity sha512-roVeLjnf8UPntFICb1uEwE2dccC8V/T5N1x7eBxkT3VDmSQkyfIAuGtlpwyH0wNKEwJmjO/2gSm2fCjW5K/rbA== -"@textlint/ast-tester@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.3.3.tgz#a844f9ff687096d5f6ba3c7c2b6bdb413406214c" - integrity sha512-vIIEJ0vDJb3Pr4kseOH9yzUCxx1EbX6PQDg/DgQj9sMAnwVG2sZvy2Uiga4+hj8SphdzaKia9Z+156UZzs+mzA== +"@textlint/ast-tester@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.4.0.tgz#4478453083e48631bb8f41620bcac82c910a0d26" + integrity sha512-dmqlPNxgQNaG63gTcMfF2b2VmQn7gnDN2ytF3c6sFB6YyTsiTh9wA/xsUBKqYWOMlYV5pLuO6TvItcUPCtVtZw== dependencies: - "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-node-types" "^13.4.0" debug "^4.3.4" -"@textlint/ast-traverse@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.3.3.tgz#bf2ed0e8ca3dc0c9f963e81b0e7657d2abb27b33" - integrity sha512-tZ25emmWf3mJ4+vM8CO6D7F8l00WXD6MJgnnlY9BHI/HbOlngBfmKhTVizQEwrWfYF80sQO5R9a+N4UEk67Wcg== +"@textlint/ast-traverse@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.4.0.tgz#4d339576e858491cf14782675eefa175a1480af7" + integrity sha512-d64z9uJcyGRwZFNadkOTnSIMZEQfWiOEM4+RbakLF71kpmdMoF8pPK5mOgT0fsHoidGzlNxxUMThkIfSRMtG5w== dependencies: - "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-node-types" "^13.4.0" -"@textlint/feature-flag@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.3.3.tgz#a76aa2e790a653e56913e27f836629ef6e8c5b74" - integrity sha512-ltdwKQTvs9f/TgQ3asBx2EXmsSSsvxa7ySnTXSTZBkbVxqmrGY4zehDRiDCmuFZGVGCvCddY1QzCXy16ybk9Fg== +"@textlint/feature-flag@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.4.0.tgz#650ee1076e203a5eebf818e4f8f25e19c4bafe41" + integrity sha512-L/p2rkuOg6rOS395TXUFIDfmoCyHpHKnA6YFCqNXkDcpxo0W+YXnEdXDMd9P+KlsU9MNTC9nFduO4nHOfFYlPg== "@textlint/kernel@^13.1.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.3.3.tgz#09b3a49c483739b87d068f86255088a0e334d7e6" - integrity sha512-HewzuuX2c2nlR+e8dREWrAYrOiyWb78eeObuW95miMjX/F6TjWmha4qrnrMCWbYbKDwC4en8dNGS4mm0vSdi4A== - dependencies: - "@textlint/ast-node-types" "^13.3.3" - "@textlint/ast-tester" "^13.3.3" - "@textlint/ast-traverse" "^13.3.3" - "@textlint/feature-flag" "^13.3.3" - "@textlint/source-code-fixer" "^13.3.3" - "@textlint/types" "^13.3.3" - "@textlint/utils" "^13.3.3" + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.4.0.tgz#6145a25f75b0787b65bd89f8832726350fd67b67" + integrity sha512-QRHbaKSeqXzfi+XNISOyNM7h68v6/4QaLfo7CZnBBKxatvVoXUF5B/8MmxYrVB1TX/X9sY50zcwfTaYwZTYCNQ== + dependencies: + "@textlint/ast-node-types" "^13.4.0" + "@textlint/ast-tester" "^13.4.0" + "@textlint/ast-traverse" "^13.4.0" + "@textlint/feature-flag" "^13.4.0" + "@textlint/source-code-fixer" "^13.4.0" + "@textlint/types" "^13.4.0" + "@textlint/utils" "^13.4.0" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.3.3.tgz#4e2a6804131c1725f2f36ef7418cd631ab14924a" - integrity sha512-jeqWyChTtJHWxEnH46V6qjr+OCTh6evm45aDqMzdg+b8ocXY+NhudiCMeHcVGoz042UEwc6w4reLn8+Is+SZ+A== +"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.4.0.tgz#70467d448887433b94a53c17d8809b7b0d561b8f" + integrity sha512-rF70kFestQHaqB+cRl4QrvjIn0bjR3birnAXjux9iEXWfrS7cxWyrEWmKkBPO5o8yoGF9q9JKBkDaypPzNsIhg== dependencies: - "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-node-types" "^13.4.0" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,46 +1389,46 @@ traverse "^0.6.7" unified "^9.2.2" -"@textlint/source-code-fixer@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.3.3.tgz#be7edd7e7e78f3d07ad7793064c766f52987f71d" - integrity sha512-h4jxWSetmcVuGwl71ai72784aneBQ0MkE5Mc3avl8PKIOIOyz0A1D7i9VQENWWIiqU8zyzmHwKGNSGyqWaqE2Q== +"@textlint/source-code-fixer@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.4.0.tgz#f48588d83c87311bac288b1e5557ac5b18999fc3" + integrity sha512-3jR5XPrSzJmSH8sg3XrkCu9sGSR7OOl78zrbX+1d84nDLdRdjLSa90COc4aJWwOMpKycwZhU6XltTqPJWI50rg== dependencies: - "@textlint/types" "^13.3.3" + "@textlint/types" "^13.4.0" debug "^4.3.4" -"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.3.3.tgz#452e4e34e3370d14415af5306ebce84e50116575" - integrity sha512-iQdiHAiUfB9XruuYWCb4fY/gD/Q5/MkH1xwUTpS8UJowNgwpTldagUJX1JbZQ2UHux+yRe9JFA+JKm3rrxgQFw== +"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.4.0.tgz#35e902c606cefd503480803c4db93f5467207869" + integrity sha512-oZQ20rA5VqqjUT689q/RDgHSI1ML6ySoEjfXMRBSXaN+7LXKFZdvLg4RQ5ECddNh3MIXcQHdjT7+qxuGyQzy6g== dependencies: - "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-node-types" "^13.4.0" "@textlint/textlint-plugin-markdown@^13.1.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.3.3.tgz#59da2422690afd8dbe087f22e1edf1192dbd0476" - integrity sha512-EhBZ/Q6ZXMVRPDeQbFdFbtc0wE7SC0DWy9lkjKXfcbLKW0ZPTvtjH3JqJtCPBZAYcexB8wKOiHImfwVfQJhJhg== + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.4.0.tgz#e2525436d851108960a56b5ff74fd78cbc151ef6" + integrity sha512-+bIOsbfQpdRzjkNDXY1ze4YyPGf1XKlkVVkkVpUlI7rehoVaUWKy2v41Y8gsQZjpBft31EXP1okA9qs7wTYr/w== dependencies: - "@textlint/markdown-to-ast" "^13.3.3" + "@textlint/markdown-to-ast" "^13.4.0" "@textlint/textlint-plugin-text@^13.1.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.3.3.tgz#2ed39da2d7a89380e3590122ebe0c4699ad3dff8" - integrity sha512-MN/JMGLanqj8CJGuit8DDiyrO0yf1vxFMLWTDeMIXwSoe8VToHCt2j20zg8XNHGNrUbKj+wuhzhrkrKEI7uWxg== + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.4.0.tgz#c82ea093e6239fca9e9d63c12a784dd5234214ff" + integrity sha512-k9GAId9bjdZB3oLBfzAjRD+LCOFQILS5o9s8ESPPJhR5apvURr7WkR2bR5/dHuxa0ivvPjksVzS/jyE2kk618g== dependencies: - "@textlint/text-to-ast" "^13.3.3" + "@textlint/text-to-ast" "^13.4.0" -"@textlint/types@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.3.3.tgz#97a38ee47390d8486fa36b6d9f573b9c6ba3a382" - integrity sha512-i2B7uRh+Iv8ZBKPJ3n4I6uSrTUQq5LdEkhFYNUwnDYxmhudz1o79xm906kri2eM8lxThX/UYYgVuJWpEwS0b+g== +"@textlint/types@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.4.0.tgz#be100b188ecc291436a86d7ab285ee29f6956ef8" + integrity sha512-K7JjP0gUOuRgc7xyfZv2NML7dmzcb9UjoBu0QCgCmJP861ikAd1bONH+qE/3brTi4n8MJq9gO9smGjB2upExMA== dependencies: - "@textlint/ast-node-types" "^13.3.3" + "@textlint/ast-node-types" "^13.4.0" -"@textlint/utils@^13.3.3": - version "13.3.3" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.3.3.tgz#27f5d4f71e586140c496d6b6b84ff220fb97bd39" - integrity sha512-roN+K3a36RxGc0tV+8HXVXpoPomEr3LCjNI8+hFmVjOu3RsUdLTyraNBqqaghaE0KgwCPODF0seuG1hteNI8LQ== +"@textlint/utils@^13.4.0": + version "13.4.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.4.0.tgz#eca13a4f8764cae363fc0c0a1304c38a610132f7" + integrity sha512-cXm9L3Ol/R5DR0YtHCMBa2PicvOoR5YU8Dx7RDJWHfp2rQvMghd3ogDmeol28s/Ei5oXRHY5HE2rWhYLhwrtVg== "@types/color-name@^1.1.1": version "1.1.1" @@ -1443,11 +1443,11 @@ "@types/unist" "*" "@types/mdast@^3.0.0": - version "3.0.11" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.11.tgz#dc130f7e7d9306124286f6d6cee40cf4d14a3dc0" - integrity sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw== + version "3.0.15" + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5" + integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ== dependencies: - "@types/unist" "*" + "@types/unist" "^2" "@types/node@*": version "12.7.4" @@ -1459,10 +1459,15 @@ resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== -"@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== +"@types/unist@*": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20" + integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ== + +"@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2": + version "2.0.10" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" + integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== "@types/vfile-message@*": version "1.0.1" From 2b094263a8200ffb8bb2cb4dbe7f77a357b69038 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 3 Feb 2024 14:23:51 +0000 Subject: [PATCH 23/51] Update textlint to v14 --- website/package.json | 10 +-- website/yarn.lock | 141 ++++++++++++++++++++++--------------------- 2 files changed, 78 insertions(+), 73 deletions(-) diff --git a/website/package.json b/website/package.json index 4049b2b5..7e17db0a 100644 --- a/website/package.json +++ b/website/package.json @@ -53,11 +53,11 @@ "@glimmer/syntax": "^0.73.1", "@humanwhocodes/momoa": "^1.0.0", "@mdx-js/mdx": "^1.5.8", - "@textlint/kernel": "^13.1.3", - "@textlint/markdown-to-ast": "^13.1.3", - "@textlint/text-to-ast": "^13.1.3", - "@textlint/textlint-plugin-markdown": "^13.1.3", - "@textlint/textlint-plugin-text": "^13.1.3", + "@textlint/kernel": "^14.0.0", + "@textlint/markdown-to-ast": "^14.0.0", + "@textlint/text-to-ast": "^14.0.0", + "@textlint/textlint-plugin-markdown": "^14.0.0", + "@textlint/textlint-plugin-text": "^14.0.0", "@typescript-eslint/parser": "^4.1.0", "@vue/compiler-dom": "^3.0.0-rc.10", "@webassemblyjs/wast-parser": "^1.9.0", diff --git a/website/yarn.lock b/website/yarn.lock index 3906e62a..99db139a 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,102 +1333,102 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.0.tgz#5bd775e3b7c1e6b23573876569390b3b298c5436" - integrity sha512-roVeLjnf8UPntFICb1uEwE2dccC8V/T5N1x7eBxkT3VDmSQkyfIAuGtlpwyH0wNKEwJmjO/2gSm2fCjW5K/rbA== +"@textlint/ast-node-types@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.0.tgz#1ac36493fadd976574138cd6fd75715a321122d0" + integrity sha512-IZq8PpIqmCE1yWQu2h3EV/+FDZ2TemLq/P4k3C/LjsTCQroYgwbglZHzxuRD7WbEQnjb+y4FyyT9/ziCXUFzaw== -"@textlint/ast-tester@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.4.0.tgz#4478453083e48631bb8f41620bcac82c910a0d26" - integrity sha512-dmqlPNxgQNaG63gTcMfF2b2VmQn7gnDN2ytF3c6sFB6YyTsiTh9wA/xsUBKqYWOMlYV5pLuO6TvItcUPCtVtZw== +"@textlint/ast-tester@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.0.tgz#fe6ba97d8071cf7f37edfd6b4df0bd1744c4359b" + integrity sha512-uZuAR5ndDkPuL87jaKAfU/WvKrN9eSYD/1pRI4h5163xm8Y89Kz+V6qHHSMZ6/DBeHqVOxtZgSx6UF0j481gAQ== dependencies: - "@textlint/ast-node-types" "^13.4.0" + "@textlint/ast-node-types" "^14.0.0" debug "^4.3.4" -"@textlint/ast-traverse@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.4.0.tgz#4d339576e858491cf14782675eefa175a1480af7" - integrity sha512-d64z9uJcyGRwZFNadkOTnSIMZEQfWiOEM4+RbakLF71kpmdMoF8pPK5mOgT0fsHoidGzlNxxUMThkIfSRMtG5w== - dependencies: - "@textlint/ast-node-types" "^13.4.0" - -"@textlint/feature-flag@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.4.0.tgz#650ee1076e203a5eebf818e4f8f25e19c4bafe41" - integrity sha512-L/p2rkuOg6rOS395TXUFIDfmoCyHpHKnA6YFCqNXkDcpxo0W+YXnEdXDMd9P+KlsU9MNTC9nFduO4nHOfFYlPg== - -"@textlint/kernel@^13.1.3": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.4.0.tgz#6145a25f75b0787b65bd89f8832726350fd67b67" - integrity sha512-QRHbaKSeqXzfi+XNISOyNM7h68v6/4QaLfo7CZnBBKxatvVoXUF5B/8MmxYrVB1TX/X9sY50zcwfTaYwZTYCNQ== - dependencies: - "@textlint/ast-node-types" "^13.4.0" - "@textlint/ast-tester" "^13.4.0" - "@textlint/ast-traverse" "^13.4.0" - "@textlint/feature-flag" "^13.4.0" - "@textlint/source-code-fixer" "^13.4.0" - "@textlint/types" "^13.4.0" - "@textlint/utils" "^13.4.0" +"@textlint/ast-traverse@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.0.tgz#53308483dcf0a507fd8f2493dc04bc7b3681dd84" + integrity sha512-Rs+QemP2d34+wM9RXgxNA6xCTy5YAwvh0Vsr55Q6jOU+DDAZuYUJwq91eD4KBzn5liR32e/gvjRw/9KgR9GB8Q== + dependencies: + "@textlint/ast-node-types" "^14.0.0" + +"@textlint/feature-flag@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.0.tgz#d7f0a80a1b47aa50e4bcb076ddfde447903886d7" + integrity sha512-jv3R+JO+BKLBmvpBp3Q7B+8/aJKsfFmF6qD4sup4ouqc/MGlxyzae/0T0t7RwTphXAFtVRH9pz52Q8P8mJCSnw== + +"@textlint/kernel@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.0.tgz#00894aa63cdc9d8e09231200de07f16da79ebe75" + integrity sha512-ofCuyzmTpmj3t83de3vij6WdnIwn0BUSBspTMhaTmd6RfY6oGbs+k7eZjx0ooq+etjq7iraFkyep9OvCZwuCoA== + dependencies: + "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-tester" "^14.0.0" + "@textlint/ast-traverse" "^14.0.0" + "@textlint/feature-flag" "^14.0.0" + "@textlint/source-code-fixer" "^14.0.0" + "@textlint/types" "^14.0.0" + "@textlint/utils" "^14.0.0" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^13.1.3", "@textlint/markdown-to-ast@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.4.0.tgz#70467d448887433b94a53c17d8809b7b0d561b8f" - integrity sha512-rF70kFestQHaqB+cRl4QrvjIn0bjR3birnAXjux9iEXWfrS7cxWyrEWmKkBPO5o8yoGF9q9JKBkDaypPzNsIhg== +"@textlint/markdown-to-ast@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.0.tgz#07ee4b9cfc54fe90eb768eae0d2032d051f27c40" + integrity sha512-jzMfPp9+0U9QSzZSm7P98GLwWAMeUgB3TzROIEEg4C06LmIEFZviWOeXQMdLDVIFE9E7fZAXMg7jnvXcl8FBPQ== dependencies: - "@textlint/ast-node-types" "^13.4.0" + "@textlint/ast-node-types" "^14.0.0" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" remark-frontmatter "^3.0.0" remark-gfm "^1.0.0" remark-parse "^9.0.0" - traverse "^0.6.7" + traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.4.0.tgz#f48588d83c87311bac288b1e5557ac5b18999fc3" - integrity sha512-3jR5XPrSzJmSH8sg3XrkCu9sGSR7OOl78zrbX+1d84nDLdRdjLSa90COc4aJWwOMpKycwZhU6XltTqPJWI50rg== +"@textlint/source-code-fixer@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.0.tgz#7416cfe0a8a1c3e09980ec94d4dd1a700274222e" + integrity sha512-co/uXDzhcDXErWfmFVSP4HTYtKxeJiw6imsVPxDRA7HvMj39DzO50tW4UEq4hAuGYVlaZpKJWNJBL5aczlVxqg== dependencies: - "@textlint/types" "^13.4.0" + "@textlint/types" "^14.0.0" debug "^4.3.4" -"@textlint/text-to-ast@^13.1.3", "@textlint/text-to-ast@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.4.0.tgz#35e902c606cefd503480803c4db93f5467207869" - integrity sha512-oZQ20rA5VqqjUT689q/RDgHSI1ML6ySoEjfXMRBSXaN+7LXKFZdvLg4RQ5ECddNh3MIXcQHdjT7+qxuGyQzy6g== +"@textlint/text-to-ast@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.0.tgz#c8081b61121e1a1bdd48bd0952c883156ad4399f" + integrity sha512-9+7wKgp/a6iXMIwampGFO9ztLFX/TMJzIuvx8oiF2J8kQzfZJlyzwdNpND6Q6YcMSW6IDkLb11i3wjn7EUkNUg== dependencies: - "@textlint/ast-node-types" "^13.4.0" + "@textlint/ast-node-types" "^14.0.0" -"@textlint/textlint-plugin-markdown@^13.1.3": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.4.0.tgz#e2525436d851108960a56b5ff74fd78cbc151ef6" - integrity sha512-+bIOsbfQpdRzjkNDXY1ze4YyPGf1XKlkVVkkVpUlI7rehoVaUWKy2v41Y8gsQZjpBft31EXP1okA9qs7wTYr/w== +"@textlint/textlint-plugin-markdown@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.0.tgz#03a5f7a3e54d851a637ba7f5f715ca54ea37ab3e" + integrity sha512-eXAQHwtkcf2WO8DQ0b4635qNNAdGAX0BotCsMYlQXbasUfew/jkO1eRQjji2B97q6rCwwwD03+dadBh5mbZEsg== dependencies: - "@textlint/markdown-to-ast" "^13.4.0" + "@textlint/markdown-to-ast" "^14.0.0" -"@textlint/textlint-plugin-text@^13.1.3": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.4.0.tgz#c82ea093e6239fca9e9d63c12a784dd5234214ff" - integrity sha512-k9GAId9bjdZB3oLBfzAjRD+LCOFQILS5o9s8ESPPJhR5apvURr7WkR2bR5/dHuxa0ivvPjksVzS/jyE2kk618g== +"@textlint/textlint-plugin-text@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.0.tgz#94e83c2d5b7b11d31a4e272e176eb1cecab20dfe" + integrity sha512-LJ7WVbgO0QRmdrMT0HEXeZIhGepBmTVs6obEUW0lzTeMZFd6VPsCf9k62bRM8qyVtYMp19m5x/aSZUzEwqIgrw== dependencies: - "@textlint/text-to-ast" "^13.4.0" + "@textlint/text-to-ast" "^14.0.0" -"@textlint/types@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.4.0.tgz#be100b188ecc291436a86d7ab285ee29f6956ef8" - integrity sha512-K7JjP0gUOuRgc7xyfZv2NML7dmzcb9UjoBu0QCgCmJP861ikAd1bONH+qE/3brTi4n8MJq9gO9smGjB2upExMA== +"@textlint/types@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.0.tgz#fa812f0b81569b4e6ee9bb0f1417a437bb10f041" + integrity sha512-svpl1niFSgkhckoEgvrEZwruypSIoiY3k2VBiQXRw1njPGOwuIYh7bS2L3B/7E8YvtVnNFS0RSxd4MgG0gSxfA== dependencies: - "@textlint/ast-node-types" "^13.4.0" + "@textlint/ast-node-types" "^14.0.0" -"@textlint/utils@^13.4.0": - version "13.4.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.4.0.tgz#eca13a4f8764cae363fc0c0a1304c38a610132f7" - integrity sha512-cXm9L3Ol/R5DR0YtHCMBa2PicvOoR5YU8Dx7RDJWHfp2rQvMghd3ogDmeol28s/Ei5oXRHY5HE2rWhYLhwrtVg== +"@textlint/utils@^14.0.0": + version "14.0.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.0.tgz#10ebe5c934bad42b3f9f9518413b14de83e07f89" + integrity sha512-m8wtgr+tdmqonksNeJmtSP5E7OixlT/KEHyRKtk5m/mFPnYmp2Dn6D++Xm63VvBBpZGxJ01OYFTTsGxHW/2Seg== "@types/color-name@^1.1.1": version "1.1.1" @@ -11188,6 +11188,11 @@ traverse@^0.6.7: resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== +traverse@^0.6.8: + version "0.6.8" + resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.8.tgz#5e5e0c41878b57e4b73ad2f3d1e36a715ea4ab15" + integrity sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA== + trim-lines@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.2.tgz#c8adbdbdae21bb5c2766240a661f693afe23e59b" From be63d01f49eb1e8492ec6c5ff3436940f6950f32 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 04:55:12 +0000 Subject: [PATCH 24/51] Update textlint to v14.0.1 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 99db139a..afaefab2 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,53 +1333,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.0.tgz#1ac36493fadd976574138cd6fd75715a321122d0" - integrity sha512-IZq8PpIqmCE1yWQu2h3EV/+FDZ2TemLq/P4k3C/LjsTCQroYgwbglZHzxuRD7WbEQnjb+y4FyyT9/ziCXUFzaw== +"@textlint/ast-node-types@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.1.tgz#e0f44204c0696018a530ce588d8d2dcc901f5186" + integrity sha512-7yc69/ip20OG3TrueSeGh/fSwZSuzxFkrxlMDDhWwSxq+/MXczshRx9HRczoy4uvecLgl1NHy/A1En6j4ag34A== -"@textlint/ast-tester@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.0.tgz#fe6ba97d8071cf7f37edfd6b4df0bd1744c4359b" - integrity sha512-uZuAR5ndDkPuL87jaKAfU/WvKrN9eSYD/1pRI4h5163xm8Y89Kz+V6qHHSMZ6/DBeHqVOxtZgSx6UF0j481gAQ== +"@textlint/ast-tester@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.1.tgz#b244bbb73b15dd619c3e7db02e34e79f875c4489" + integrity sha512-SOdWGQCoJHOSTvYMKXRh/GLfAqK7gPuYEg+ATFviO+0eETWvQEj9Z5C7PGeVaA9R8nbiP6fFOyZ4C91yhnMuBQ== dependencies: - "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-node-types" "^14.0.1" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.0.tgz#53308483dcf0a507fd8f2493dc04bc7b3681dd84" - integrity sha512-Rs+QemP2d34+wM9RXgxNA6xCTy5YAwvh0Vsr55Q6jOU+DDAZuYUJwq91eD4KBzn5liR32e/gvjRw/9KgR9GB8Q== +"@textlint/ast-traverse@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.1.tgz#60083ca18ff1dfc0cea5edab34feebfa825003b0" + integrity sha512-WABFpyDqq9gHQAvqMd/XpUmuj7U/vQrR+9WIxHUbJbaUNidJLJuSq6+beVj4bVJwcuYvH3OHn7iANHkh8JIrmA== dependencies: - "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-node-types" "^14.0.1" -"@textlint/feature-flag@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.0.tgz#d7f0a80a1b47aa50e4bcb076ddfde447903886d7" - integrity sha512-jv3R+JO+BKLBmvpBp3Q7B+8/aJKsfFmF6qD4sup4ouqc/MGlxyzae/0T0t7RwTphXAFtVRH9pz52Q8P8mJCSnw== +"@textlint/feature-flag@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.1.tgz#975b9747671e4943933fc7ca12a65a41001a0aba" + integrity sha512-hxYfrCrDswKpHJUyFyGfDGWGxScfzRnqUPTI4teXya29koVJ0GU0+tzR2yJKICYfZRrmPYDAb3NFeXvLWV5gLQ== "@textlint/kernel@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.0.tgz#00894aa63cdc9d8e09231200de07f16da79ebe75" - integrity sha512-ofCuyzmTpmj3t83de3vij6WdnIwn0BUSBspTMhaTmd6RfY6oGbs+k7eZjx0ooq+etjq7iraFkyep9OvCZwuCoA== - dependencies: - "@textlint/ast-node-types" "^14.0.0" - "@textlint/ast-tester" "^14.0.0" - "@textlint/ast-traverse" "^14.0.0" - "@textlint/feature-flag" "^14.0.0" - "@textlint/source-code-fixer" "^14.0.0" - "@textlint/types" "^14.0.0" - "@textlint/utils" "^14.0.0" + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.1.tgz#51bc67c4487c661bddc07baa252db9bf417c5415" + integrity sha512-2iKxRlpLy3lgRGtT72fg7cI7wtYeN2lGwyGduKseHiVFatUXXsOK57i/rXZ0sV4Uewk/KNfjaFZKRtFzWpw25Q== + dependencies: + "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-tester" "^14.0.1" + "@textlint/ast-traverse" "^14.0.1" + "@textlint/feature-flag" "^14.0.1" + "@textlint/source-code-fixer" "^14.0.1" + "@textlint/types" "^14.0.1" + "@textlint/utils" "^14.0.1" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.0.tgz#07ee4b9cfc54fe90eb768eae0d2032d051f27c40" - integrity sha512-jzMfPp9+0U9QSzZSm7P98GLwWAMeUgB3TzROIEEg4C06LmIEFZviWOeXQMdLDVIFE9E7fZAXMg7jnvXcl8FBPQ== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.1.tgz#4b12bc12dc5388982d9427b227c0707e06dadc06" + integrity sha512-PBNQ1+fhkj9I1wTg010WZxXndt/Cw1R7ytJIomKa56dWuhM6KUjCsFfwa1HfrWjP7PBJdTghL6wlyvktyvaW2A== dependencies: - "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-node-types" "^14.0.1" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,46 +1389,46 @@ traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.0.tgz#7416cfe0a8a1c3e09980ec94d4dd1a700274222e" - integrity sha512-co/uXDzhcDXErWfmFVSP4HTYtKxeJiw6imsVPxDRA7HvMj39DzO50tW4UEq4hAuGYVlaZpKJWNJBL5aczlVxqg== +"@textlint/source-code-fixer@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.1.tgz#7776ad0af42b3174a16cdcbb05c11197299899f2" + integrity sha512-6P7tH+kd/4q+m7P2SAvgE8W7RyEOj65KSpCWjLYqB9UFXbz2XUhMJhGYZ8U2wqPLfvL+nV8KHBd9DHH+jPgo0w== dependencies: - "@textlint/types" "^14.0.0" + "@textlint/types" "^14.0.1" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.0.tgz#c8081b61121e1a1bdd48bd0952c883156ad4399f" - integrity sha512-9+7wKgp/a6iXMIwampGFO9ztLFX/TMJzIuvx8oiF2J8kQzfZJlyzwdNpND6Q6YcMSW6IDkLb11i3wjn7EUkNUg== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.1.tgz#92562a3be10c4ec6c9cfe542ba9e016ffde00c7f" + integrity sha512-0e9fqTS7xU1JZfkja4rFE9IROrngzOBe0Oq7cl8gf0m2QM7dTxEmiPux37eHM1+mmBaP6zKMv9c5YlE4TW9sNg== dependencies: - "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-node-types" "^14.0.1" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.0.tgz#03a5f7a3e54d851a637ba7f5f715ca54ea37ab3e" - integrity sha512-eXAQHwtkcf2WO8DQ0b4635qNNAdGAX0BotCsMYlQXbasUfew/jkO1eRQjji2B97q6rCwwwD03+dadBh5mbZEsg== + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.1.tgz#3ca2f7b4efa1a6dae7e82238432ef9b85db63781" + integrity sha512-Q5ht+anCAj7X2PmK6yJF8t0dCEXUQouX5O9X+jpPzaOKcZHlHQqU5ta4NpjUAyHyxtkzlrOP+5hA9FoHiM0jvw== dependencies: - "@textlint/markdown-to-ast" "^14.0.0" + "@textlint/markdown-to-ast" "^14.0.1" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.0.tgz#94e83c2d5b7b11d31a4e272e176eb1cecab20dfe" - integrity sha512-LJ7WVbgO0QRmdrMT0HEXeZIhGepBmTVs6obEUW0lzTeMZFd6VPsCf9k62bRM8qyVtYMp19m5x/aSZUzEwqIgrw== + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.1.tgz#a68e3c3d84e0467720a4d64fc8e9afb8edb98162" + integrity sha512-Exe3waiRWSdkT6d1o4rNN1KKnrTA9v6VmR6x9wpBYxLxciPPQILwSYhPLKywSOzkZXEvgBZFLWSz5cAFBep5ng== dependencies: - "@textlint/text-to-ast" "^14.0.0" + "@textlint/text-to-ast" "^14.0.1" -"@textlint/types@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.0.tgz#fa812f0b81569b4e6ee9bb0f1417a437bb10f041" - integrity sha512-svpl1niFSgkhckoEgvrEZwruypSIoiY3k2VBiQXRw1njPGOwuIYh7bS2L3B/7E8YvtVnNFS0RSxd4MgG0gSxfA== +"@textlint/types@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.1.tgz#434c8b13c1afd97e1672922fbeca4959fe4eab55" + integrity sha512-LkM32+LgEFRBYnNuB8OqVfAV7t6X7qSh2l6QEC7OTr1HQi4hB5by8ahnasn8FJzGh7ytFAHLDUXZKoN6LuduoQ== dependencies: - "@textlint/ast-node-types" "^14.0.0" + "@textlint/ast-node-types" "^14.0.1" -"@textlint/utils@^14.0.0": - version "14.0.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.0.tgz#10ebe5c934bad42b3f9f9518413b14de83e07f89" - integrity sha512-m8wtgr+tdmqonksNeJmtSP5E7OixlT/KEHyRKtk5m/mFPnYmp2Dn6D++Xm63VvBBpZGxJ01OYFTTsGxHW/2Seg== +"@textlint/utils@^14.0.1": + version "14.0.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.1.tgz#0c761f022469e4fe4ade0daafabc36c5594ca199" + integrity sha512-rrFLvom82FBjSMUyAox1CcdPmJeS6S/nyDPnwjNJgTmZ8TQQinYS32j8JICbgH/oXEh8FB6Pj2rAe9fmqU/asg== "@types/color-name@^1.1.1": version "1.1.1" From 2ee914157dea25b7ab5743904d08638aeba6f0e8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 12:21:30 +0000 Subject: [PATCH 25/51] Update textlint to v14.0.2 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index afaefab2..0475ba0c 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,53 +1333,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.1.tgz#e0f44204c0696018a530ce588d8d2dcc901f5186" - integrity sha512-7yc69/ip20OG3TrueSeGh/fSwZSuzxFkrxlMDDhWwSxq+/MXczshRx9HRczoy4uvecLgl1NHy/A1En6j4ag34A== +"@textlint/ast-node-types@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.2.tgz#2547ae3ee35000bc97d2435cff5be83a52fcfaaa" + integrity sha512-EYVyA4+G+KRNkNW5nytg61VvNtwy7JXSujGrsb4FB2pTA8Hwq/0n6TMXKVdL29n+EhyMIKmmqHFY1rjBwh3B/A== -"@textlint/ast-tester@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.1.tgz#b244bbb73b15dd619c3e7db02e34e79f875c4489" - integrity sha512-SOdWGQCoJHOSTvYMKXRh/GLfAqK7gPuYEg+ATFviO+0eETWvQEj9Z5C7PGeVaA9R8nbiP6fFOyZ4C91yhnMuBQ== +"@textlint/ast-tester@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.2.tgz#ce19f6033349bd345fa1e5875c54dabc766ff1e0" + integrity sha512-1as1/LL/OE6pCzzsywyKt3onNixXyFCV6GI/HG3Xe9iJpesrx0wbGOhuUcuOZyb2MJC2aIHIFzfTNP2mlXOtYQ== dependencies: - "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-node-types" "^14.0.2" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.1.tgz#60083ca18ff1dfc0cea5edab34feebfa825003b0" - integrity sha512-WABFpyDqq9gHQAvqMd/XpUmuj7U/vQrR+9WIxHUbJbaUNidJLJuSq6+beVj4bVJwcuYvH3OHn7iANHkh8JIrmA== +"@textlint/ast-traverse@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.2.tgz#34b2621ecffea534bd73a6b9b0402047c3fc5ff9" + integrity sha512-4r/pH607AKf8WWW8Y+p+EBcXg2bWuxZfzjW0TsUFVFio1l3Wp2OARTUAFmFqbnz3NT0uXsayRgqW1T26vapOpg== dependencies: - "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-node-types" "^14.0.2" -"@textlint/feature-flag@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.1.tgz#975b9747671e4943933fc7ca12a65a41001a0aba" - integrity sha512-hxYfrCrDswKpHJUyFyGfDGWGxScfzRnqUPTI4teXya29koVJ0GU0+tzR2yJKICYfZRrmPYDAb3NFeXvLWV5gLQ== +"@textlint/feature-flag@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.2.tgz#be32184213ee5cefa3a0c9e28ec71bd5ee295bc4" + integrity sha512-4z3PjjM/K7UNav0zU1vx7+HsWI/X5t/JTKGznsd2sT7sWTq5RvcWrx7Z1akiIG+AmU8UVM2HbXIatw/1ZBfQ7g== "@textlint/kernel@^14.0.0": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.1.tgz#51bc67c4487c661bddc07baa252db9bf417c5415" - integrity sha512-2iKxRlpLy3lgRGtT72fg7cI7wtYeN2lGwyGduKseHiVFatUXXsOK57i/rXZ0sV4Uewk/KNfjaFZKRtFzWpw25Q== - dependencies: - "@textlint/ast-node-types" "^14.0.1" - "@textlint/ast-tester" "^14.0.1" - "@textlint/ast-traverse" "^14.0.1" - "@textlint/feature-flag" "^14.0.1" - "@textlint/source-code-fixer" "^14.0.1" - "@textlint/types" "^14.0.1" - "@textlint/utils" "^14.0.1" + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.2.tgz#1f1a3e6fac1cf51ebda66bcd385a1031a215d1df" + integrity sha512-RwJLB8GUAh156rdDo3EoCIVwKyNhfdAmX5369o1igE+/cwtzojI71KoqRHk5g6MQVf6OE1fFR5OQc8lap8wu9A== + dependencies: + "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-tester" "^14.0.2" + "@textlint/ast-traverse" "^14.0.2" + "@textlint/feature-flag" "^14.0.2" + "@textlint/source-code-fixer" "^14.0.2" + "@textlint/types" "^14.0.2" + "@textlint/utils" "^14.0.2" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.1.tgz#4b12bc12dc5388982d9427b227c0707e06dadc06" - integrity sha512-PBNQ1+fhkj9I1wTg010WZxXndt/Cw1R7ytJIomKa56dWuhM6KUjCsFfwa1HfrWjP7PBJdTghL6wlyvktyvaW2A== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.2.tgz#d2eb34631dff5c4a3383ffecbca5e87a1b50700a" + integrity sha512-4Z23NejawSfdkAEx7CrSt8on++s9V0QNnaYPUWCKbobjymvjO/VtFmBltz3zzuKsWqCPhyxWOaQQ+ezZmsj/oA== dependencies: - "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-node-types" "^14.0.2" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,46 +1389,46 @@ traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.1.tgz#7776ad0af42b3174a16cdcbb05c11197299899f2" - integrity sha512-6P7tH+kd/4q+m7P2SAvgE8W7RyEOj65KSpCWjLYqB9UFXbz2XUhMJhGYZ8U2wqPLfvL+nV8KHBd9DHH+jPgo0w== +"@textlint/source-code-fixer@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.2.tgz#ed0565300bb5a4d477d11c658b58abcd1bbe30f9" + integrity sha512-eMNStKpBLr8cS8EzUtpV6l1dZ/tglBT+/yJFXMJSk3pmSCQwNbiZTnDbi77Nvgei4e4A9u6PPqhwcRo2W9ZfsQ== dependencies: - "@textlint/types" "^14.0.1" + "@textlint/types" "^14.0.2" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.1.tgz#92562a3be10c4ec6c9cfe542ba9e016ffde00c7f" - integrity sha512-0e9fqTS7xU1JZfkja4rFE9IROrngzOBe0Oq7cl8gf0m2QM7dTxEmiPux37eHM1+mmBaP6zKMv9c5YlE4TW9sNg== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.2.tgz#b9f74fff8f6704b200d03321f2cfe32b5b508509" + integrity sha512-Ce6yYKGJJXyDmVQ9oeG7XBumDtD9/i/aGP2hSc9cLeeSwSnE2+TyPIaPpQSltjgygOlGfP/OENopi0P5MtnFxQ== dependencies: - "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-node-types" "^14.0.2" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.1.tgz#3ca2f7b4efa1a6dae7e82238432ef9b85db63781" - integrity sha512-Q5ht+anCAj7X2PmK6yJF8t0dCEXUQouX5O9X+jpPzaOKcZHlHQqU5ta4NpjUAyHyxtkzlrOP+5hA9FoHiM0jvw== + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.2.tgz#aade1380e092633f25005490c8e0bf57c4ddba86" + integrity sha512-yEn2ip2ggLU12y9EkBi9Xovi/PJfL8ALNJ0iPQ2pYhViUdFD6sboIYnIXMwm7zGxp2OuAPAeJncEh6ILNzH66w== dependencies: - "@textlint/markdown-to-ast" "^14.0.1" + "@textlint/markdown-to-ast" "^14.0.2" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.1.tgz#a68e3c3d84e0467720a4d64fc8e9afb8edb98162" - integrity sha512-Exe3waiRWSdkT6d1o4rNN1KKnrTA9v6VmR6x9wpBYxLxciPPQILwSYhPLKywSOzkZXEvgBZFLWSz5cAFBep5ng== + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.2.tgz#36de1932574e0643833aed95f44f4d1130eacc0c" + integrity sha512-8Y0cMqz5PbdB28J1yWcg6RCwuj1omjDDzBHZtnCK2eXJmBDeq7HrY+FeZfTjOxeiMimiAj/hJwfqaGTLfbXXpw== dependencies: - "@textlint/text-to-ast" "^14.0.1" + "@textlint/text-to-ast" "^14.0.2" -"@textlint/types@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.1.tgz#434c8b13c1afd97e1672922fbeca4959fe4eab55" - integrity sha512-LkM32+LgEFRBYnNuB8OqVfAV7t6X7qSh2l6QEC7OTr1HQi4hB5by8ahnasn8FJzGh7ytFAHLDUXZKoN6LuduoQ== +"@textlint/types@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.2.tgz#ae2ae6d158a3ec09a7f4bd3fb9d05178ea217b9f" + integrity sha512-0dXRXqjOeIxw0R7Gq3IVtq7Hr4jXkcpe5XMcouiGuSI9K8Jf+93ycaTzTg+QLiqmWMFz/ERcNPTVGf+6JBRt3g== dependencies: - "@textlint/ast-node-types" "^14.0.1" + "@textlint/ast-node-types" "^14.0.2" -"@textlint/utils@^14.0.1": - version "14.0.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.1.tgz#0c761f022469e4fe4ade0daafabc36c5594ca199" - integrity sha512-rrFLvom82FBjSMUyAox1CcdPmJeS6S/nyDPnwjNJgTmZ8TQQinYS32j8JICbgH/oXEh8FB6Pj2rAe9fmqU/asg== +"@textlint/utils@^14.0.2": + version "14.0.2" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.2.tgz#78eaee4fbbc1fdda60e62c1044e9d4566e6af758" + integrity sha512-8FVQWJ6C6xOCDQI25kGuqc+gvxL0xubINifKWsI3Bafc76LpMQi4NIls5R8BSK2TNhhJcLrPv+YAsiPj16h4wA== "@types/color-name@^1.1.1": version "1.1.1" From d1bb77258c46fb5566d8fb1835de21bc055f7ac4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 10:14:55 +0000 Subject: [PATCH 26/51] Update textlint to v14.0.3 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 0475ba0c..0e19a128 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1333,53 +1333,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.2.tgz#2547ae3ee35000bc97d2435cff5be83a52fcfaaa" - integrity sha512-EYVyA4+G+KRNkNW5nytg61VvNtwy7JXSujGrsb4FB2pTA8Hwq/0n6TMXKVdL29n+EhyMIKmmqHFY1rjBwh3B/A== +"@textlint/ast-node-types@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.3.tgz#08392117bceb0a7eb0ef939a2bade863b003eaab" + integrity sha512-umIMn3yy2arl9QHH2fEhCxVgbLbQFC8NpzYbAzOQ4Y5m+p0RQaKClHtHXnDqsXHp6WKAVAXxcuFolW2SZMnhDQ== -"@textlint/ast-tester@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.2.tgz#ce19f6033349bd345fa1e5875c54dabc766ff1e0" - integrity sha512-1as1/LL/OE6pCzzsywyKt3onNixXyFCV6GI/HG3Xe9iJpesrx0wbGOhuUcuOZyb2MJC2aIHIFzfTNP2mlXOtYQ== +"@textlint/ast-tester@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.3.tgz#5ad0c363220fa9e3983ed211465ae05ac2dfc9dc" + integrity sha512-TNArbA0a/9nxJadZDsnfV6I4kB6C+Vb6BmFbDxBglS/NWtFqI9SYPV2tRhGBnTHFyTl5bgyzrAyb2FNSxbrSuQ== dependencies: - "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-node-types" "^14.0.3" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.2.tgz#34b2621ecffea534bd73a6b9b0402047c3fc5ff9" - integrity sha512-4r/pH607AKf8WWW8Y+p+EBcXg2bWuxZfzjW0TsUFVFio1l3Wp2OARTUAFmFqbnz3NT0uXsayRgqW1T26vapOpg== +"@textlint/ast-traverse@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.3.tgz#796e3610a0c2445264d305ad3ed97a79e25e7d53" + integrity sha512-rZ0PwLWuLlAOkDp/9wGsHa1jZMjNdJ3CpZMPTNnqEppaxb3o4OKFbjt2Hh87E215B84Cz8KaeKFT/QEn+YiRjA== dependencies: - "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-node-types" "^14.0.3" -"@textlint/feature-flag@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.2.tgz#be32184213ee5cefa3a0c9e28ec71bd5ee295bc4" - integrity sha512-4z3PjjM/K7UNav0zU1vx7+HsWI/X5t/JTKGznsd2sT7sWTq5RvcWrx7Z1akiIG+AmU8UVM2HbXIatw/1ZBfQ7g== +"@textlint/feature-flag@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.3.tgz#c4487d6dba7c19fbb8761514f98f0fb1ecd79e99" + integrity sha512-qDQr8qA3glb6WF0cgmhG2OST5zTY5ft6OJ/J6smDoKse/1cnPlFwbvDLvrlxwnmWDyujvqb3p9Kw7GDToTIxYg== "@textlint/kernel@^14.0.0": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.2.tgz#1f1a3e6fac1cf51ebda66bcd385a1031a215d1df" - integrity sha512-RwJLB8GUAh156rdDo3EoCIVwKyNhfdAmX5369o1igE+/cwtzojI71KoqRHk5g6MQVf6OE1fFR5OQc8lap8wu9A== - dependencies: - "@textlint/ast-node-types" "^14.0.2" - "@textlint/ast-tester" "^14.0.2" - "@textlint/ast-traverse" "^14.0.2" - "@textlint/feature-flag" "^14.0.2" - "@textlint/source-code-fixer" "^14.0.2" - "@textlint/types" "^14.0.2" - "@textlint/utils" "^14.0.2" + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.3.tgz#443c32d2803944124a294d0c9844443fd0f633c6" + integrity sha512-RRyY7oL6CD5JwD3cgl8KvSd80rbnJKSUXTsn2ZAtLAjqJR+io0tVZLkQwij7diXaMjCnoJQfmnbIJf8C29/G5Q== + dependencies: + "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-tester" "^14.0.3" + "@textlint/ast-traverse" "^14.0.3" + "@textlint/feature-flag" "^14.0.3" + "@textlint/source-code-fixer" "^14.0.3" + "@textlint/types" "^14.0.3" + "@textlint/utils" "^14.0.3" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.2.tgz#d2eb34631dff5c4a3383ffecbca5e87a1b50700a" - integrity sha512-4Z23NejawSfdkAEx7CrSt8on++s9V0QNnaYPUWCKbobjymvjO/VtFmBltz3zzuKsWqCPhyxWOaQQ+ezZmsj/oA== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.3.tgz#a4744174345ffd1f44e436e0ca1fc0ce47bed2fe" + integrity sha512-+CkWt9a9pd1+Rl37dqiiEGQ2f2faLX/vd7qiV+OTfkKUyHQ0HkOLK7sfbPpTx5ee5+5fKVMTStTTHrFZz5mlBw== dependencies: - "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-node-types" "^14.0.3" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,46 +1389,46 @@ traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.2.tgz#ed0565300bb5a4d477d11c658b58abcd1bbe30f9" - integrity sha512-eMNStKpBLr8cS8EzUtpV6l1dZ/tglBT+/yJFXMJSk3pmSCQwNbiZTnDbi77Nvgei4e4A9u6PPqhwcRo2W9ZfsQ== +"@textlint/source-code-fixer@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.3.tgz#7daeda73373c3fa00c5e072d1dce3d0fa2bdfe45" + integrity sha512-/htnQzs+8qMIiZWQEpFF4+PgxDhi6flP+qIdoL8l5Q/jbIIZbGgOz9pdEFwnwOur/ddqFfuOKy5GtwZDoF+gOg== dependencies: - "@textlint/types" "^14.0.2" + "@textlint/types" "^14.0.3" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.2.tgz#b9f74fff8f6704b200d03321f2cfe32b5b508509" - integrity sha512-Ce6yYKGJJXyDmVQ9oeG7XBumDtD9/i/aGP2hSc9cLeeSwSnE2+TyPIaPpQSltjgygOlGfP/OENopi0P5MtnFxQ== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.3.tgz#0114e06c01a8500fec78f46ea1b6843d7b6ea6f4" + integrity sha512-NrlZQ5RO3O6aSqDMzLzGWhKP5Rx2UlbGulVgO2sQ+59837+32cHjzrV+J1nBVVcsfsv+GOFperfo5C/Rn+F7SA== dependencies: - "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-node-types" "^14.0.3" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.2.tgz#aade1380e092633f25005490c8e0bf57c4ddba86" - integrity sha512-yEn2ip2ggLU12y9EkBi9Xovi/PJfL8ALNJ0iPQ2pYhViUdFD6sboIYnIXMwm7zGxp2OuAPAeJncEh6ILNzH66w== + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.3.tgz#6b48da63c37337eeb70a81d14d864fa4778a2570" + integrity sha512-1zwiwmayFRIElGdeCUXCJjlP+mpZDCCtcsNqB+07i/xi3UlSFM3NGRUzJ5CYQbjJ7Nrb3kmA5FKxB7xTMdZH4w== dependencies: - "@textlint/markdown-to-ast" "^14.0.2" + "@textlint/markdown-to-ast" "^14.0.3" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.2.tgz#36de1932574e0643833aed95f44f4d1130eacc0c" - integrity sha512-8Y0cMqz5PbdB28J1yWcg6RCwuj1omjDDzBHZtnCK2eXJmBDeq7HrY+FeZfTjOxeiMimiAj/hJwfqaGTLfbXXpw== + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.3.tgz#ea123ac8a78870317a089fc96932066e2f21c1d1" + integrity sha512-dDRkNAoOH/HHxpC5Ghn89L90Ax5GQ4CIwCiV91qmjYUaCH710wkqRppBCEIHnS+1E/5wq1ukhTbGJjvxe7rP4w== dependencies: - "@textlint/text-to-ast" "^14.0.2" + "@textlint/text-to-ast" "^14.0.3" -"@textlint/types@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.2.tgz#ae2ae6d158a3ec09a7f4bd3fb9d05178ea217b9f" - integrity sha512-0dXRXqjOeIxw0R7Gq3IVtq7Hr4jXkcpe5XMcouiGuSI9K8Jf+93ycaTzTg+QLiqmWMFz/ERcNPTVGf+6JBRt3g== +"@textlint/types@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.3.tgz#66289a1036bafd0ba244829f61b6a52681dcf43a" + integrity sha512-Ft08kK3BNxbuRYb0BOEjSr9CkJyHIYBiUfWvaNcqhXESQLhplb5EfynkXw0uAerzhx9CxkdC2FcOFU+HIcuYRg== dependencies: - "@textlint/ast-node-types" "^14.0.2" + "@textlint/ast-node-types" "^14.0.3" -"@textlint/utils@^14.0.2": - version "14.0.2" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.2.tgz#78eaee4fbbc1fdda60e62c1044e9d4566e6af758" - integrity sha512-8FVQWJ6C6xOCDQI25kGuqc+gvxL0xubINifKWsI3Bafc76LpMQi4NIls5R8BSK2TNhhJcLrPv+YAsiPj16h4wA== +"@textlint/utils@^14.0.3": + version "14.0.3" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.3.tgz#6f5bae7d295419265d1d65961193c64396c0adb9" + integrity sha512-Rt7KFrqPpLmpTz3ftTbA8A4kUABwW8CuvgbAAOL/XYpejnQeGPmVfVF3b3AvDtD5jYjp4rPkXHGHDPJTj+lYwA== "@types/color-name@^1.1.1": version "1.1.1" From 98b1a86a98e6981d0f9276d1d56833d8df1ca5e4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 14:32:13 +0000 Subject: [PATCH 27/51] fix(deps): update textlint to v14.0.4 --- website/yarn.lock | 198 ++++++++++++++++++++++++++++++---------------- 1 file changed, 128 insertions(+), 70 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 0e19a128..4645c24c 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -56,8 +56,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@^7.1.6", "babel7@npm:@babel/core@^7": - name babel7 +"@babel/core@^7.1.6": version "7.13.8" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.8.tgz#c191d9c5871788a591d69ea1dc03e5843a3680fb" integrity sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg== @@ -374,8 +373,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.4", "@babel/parser@^7.12.13", "@babel/parser@^7.12.17", "@babel/parser@^7.13.0", "@babel/parser@^7.13.4", "@babel/parser@^7.8.4", "babylon7@npm:@babel/parser@^7": - name babylon7 +"@babel/parser@^7.0.0", "@babel/parser@^7.1.6", "@babel/parser@^7.10.4", "@babel/parser@^7.12.13", "@babel/parser@^7.12.17", "@babel/parser@^7.13.0", "@babel/parser@^7.13.4", "@babel/parser@^7.8.4": version "7.13.9" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.9.tgz#ca34cb95e1c2dd126863a84465ae8ef66114be99" integrity sha512-nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw== @@ -1333,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.3.tgz#08392117bceb0a7eb0ef939a2bade863b003eaab" - integrity sha512-umIMn3yy2arl9QHH2fEhCxVgbLbQFC8NpzYbAzOQ4Y5m+p0RQaKClHtHXnDqsXHp6WKAVAXxcuFolW2SZMnhDQ== +"@textlint/ast-node-types@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz#261de119ce332eedd6a03845115412158b183ce1" + integrity sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA== -"@textlint/ast-tester@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.3.tgz#5ad0c363220fa9e3983ed211465ae05ac2dfc9dc" - integrity sha512-TNArbA0a/9nxJadZDsnfV6I4kB6C+Vb6BmFbDxBglS/NWtFqI9SYPV2tRhGBnTHFyTl5bgyzrAyb2FNSxbrSuQ== +"@textlint/ast-tester@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.4.tgz#c419f16bffbfdd4dfc7769adedba77252250fa3e" + integrity sha512-SQ/2DjxVlDVeCEjVlD8c8R2Sl3VGDZEx8o9+i8bV8NUdY8qsSHbo29/BfiUZf/uaX6eeNpZsurtstJ25hbVrsQ== dependencies: - "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-node-types" "^14.0.4" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.3.tgz#796e3610a0c2445264d305ad3ed97a79e25e7d53" - integrity sha512-rZ0PwLWuLlAOkDp/9wGsHa1jZMjNdJ3CpZMPTNnqEppaxb3o4OKFbjt2Hh87E215B84Cz8KaeKFT/QEn+YiRjA== +"@textlint/ast-traverse@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.4.tgz#63cc96cbf1f9c615f1b159e7ea3c0a9612bcec9a" + integrity sha512-bzFC7UJ2FvhjH5ekXGQ0i9vjK+xzMT69gHBsYVEl+TtbplnH2YY3+sbw6B1j3LocJuo6xngZ2YWXXqmQlKgzLg== dependencies: - "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-node-types" "^14.0.4" -"@textlint/feature-flag@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.3.tgz#c4487d6dba7c19fbb8761514f98f0fb1ecd79e99" - integrity sha512-qDQr8qA3glb6WF0cgmhG2OST5zTY5ft6OJ/J6smDoKse/1cnPlFwbvDLvrlxwnmWDyujvqb3p9Kw7GDToTIxYg== +"@textlint/feature-flag@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.4.tgz#b0c9662fbc9eb8e3bd602d9c5a3c328af9d96483" + integrity sha512-1FMZqnjOA4KVpt/aloI1fNs46P0rUeHWcCRKl33/08wRHHMdcbaN4EsHkq7UfriuSfFgUuiyeo0bPjCpv15hhQ== "@textlint/kernel@^14.0.0": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.3.tgz#443c32d2803944124a294d0c9844443fd0f633c6" - integrity sha512-RRyY7oL6CD5JwD3cgl8KvSd80rbnJKSUXTsn2ZAtLAjqJR+io0tVZLkQwij7diXaMjCnoJQfmnbIJf8C29/G5Q== - dependencies: - "@textlint/ast-node-types" "^14.0.3" - "@textlint/ast-tester" "^14.0.3" - "@textlint/ast-traverse" "^14.0.3" - "@textlint/feature-flag" "^14.0.3" - "@textlint/source-code-fixer" "^14.0.3" - "@textlint/types" "^14.0.3" - "@textlint/utils" "^14.0.3" + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.4.tgz#892a9acb735891e3ff3cb704493a8f32747f6e94" + integrity sha512-6WNoEBZ4lYTYOGK4EEEdjp+kgxSSC1nIFwN6tY9XGVkd4OACzDNothVTvJBwaX73FWFG5zoSjnNQxBDPUHMc8g== + dependencies: + "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-tester" "^14.0.4" + "@textlint/ast-traverse" "^14.0.4" + "@textlint/feature-flag" "^14.0.4" + "@textlint/source-code-fixer" "^14.0.4" + "@textlint/types" "^14.0.4" + "@textlint/utils" "^14.0.4" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.3.tgz#a4744174345ffd1f44e436e0ca1fc0ce47bed2fe" - integrity sha512-+CkWt9a9pd1+Rl37dqiiEGQ2f2faLX/vd7qiV+OTfkKUyHQ0HkOLK7sfbPpTx5ee5+5fKVMTStTTHrFZz5mlBw== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.4.tgz#341521a6fa64174527b0fd1025ff5aaaf768fb00" + integrity sha512-D9UUxnRJoNROVjOa9bhoQPDdRvlvS/xP3MJo0Kl6b/mJFi0dOlW31WUfpOFjZkp4uXkL+oo0ji7AMnmV6JORsQ== dependencies: - "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-node-types" "^14.0.4" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" remark-footnotes "^3.0.0" @@ -1389,46 +1387,46 @@ traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.3.tgz#7daeda73373c3fa00c5e072d1dce3d0fa2bdfe45" - integrity sha512-/htnQzs+8qMIiZWQEpFF4+PgxDhi6flP+qIdoL8l5Q/jbIIZbGgOz9pdEFwnwOur/ddqFfuOKy5GtwZDoF+gOg== +"@textlint/source-code-fixer@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.4.tgz#135375fc1d7cdbe8f0de9a3e4682ba72d9f0f3eb" + integrity sha512-gIUeWjF0WdSwgCUhW310hKJsWOyRyFe6PGaqqCk7Mhc+vVcePfmC8mmmhVgeuyys/Dhe+0iaP4M1eJf4COaIQw== dependencies: - "@textlint/types" "^14.0.3" + "@textlint/types" "^14.0.4" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.3.tgz#0114e06c01a8500fec78f46ea1b6843d7b6ea6f4" - integrity sha512-NrlZQ5RO3O6aSqDMzLzGWhKP5Rx2UlbGulVgO2sQ+59837+32cHjzrV+J1nBVVcsfsv+GOFperfo5C/Rn+F7SA== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.4.tgz#289d5b6be820cbfab90a12fe9b1a22b074e8a947" + integrity sha512-r2KSnKzhsCIvX72yX+7sEuu9nDQIS4+xRsSffuXYB0etRQUI6VTTsE6Ibd6yMbEsMDUF4BfKWzNGn+bQ8U7oHA== dependencies: - "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-node-types" "^14.0.4" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.3.tgz#6b48da63c37337eeb70a81d14d864fa4778a2570" - integrity sha512-1zwiwmayFRIElGdeCUXCJjlP+mpZDCCtcsNqB+07i/xi3UlSFM3NGRUzJ5CYQbjJ7Nrb3kmA5FKxB7xTMdZH4w== + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.4.tgz#9a2da78d9b4e4c15918f97cde0ee1948881d4272" + integrity sha512-mqQieI9U5GTRTjkK4Cj57Axl6fVloaA8g0+sCsp3TjmNWyEgGBvt3aw+FIUiFTvheg9L3RGe/aXgvp5ORADOAA== dependencies: - "@textlint/markdown-to-ast" "^14.0.3" + "@textlint/markdown-to-ast" "^14.0.4" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.3.tgz#ea123ac8a78870317a089fc96932066e2f21c1d1" - integrity sha512-dDRkNAoOH/HHxpC5Ghn89L90Ax5GQ4CIwCiV91qmjYUaCH710wkqRppBCEIHnS+1E/5wq1ukhTbGJjvxe7rP4w== + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.4.tgz#7d8b007613c57a3bd9d74224060c6a7433416894" + integrity sha512-HwTQyOcwDRrPPHyD8lwSMyGR1ETasR2WK6BLO0PRbowRe6K/K4b9OBBd6+nJcRFa+9Nd6p7nxPzA2WxDi1X/Zg== dependencies: - "@textlint/text-to-ast" "^14.0.3" + "@textlint/text-to-ast" "^14.0.4" -"@textlint/types@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.3.tgz#66289a1036bafd0ba244829f61b6a52681dcf43a" - integrity sha512-Ft08kK3BNxbuRYb0BOEjSr9CkJyHIYBiUfWvaNcqhXESQLhplb5EfynkXw0uAerzhx9CxkdC2FcOFU+HIcuYRg== +"@textlint/types@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.4.tgz#0c163398a69bb53d0fc98f9717c8fe643b5c9cd7" + integrity sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg== dependencies: - "@textlint/ast-node-types" "^14.0.3" + "@textlint/ast-node-types" "^14.0.4" -"@textlint/utils@^14.0.3": - version "14.0.3" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.3.tgz#6f5bae7d295419265d1d65961193c64396c0adb9" - integrity sha512-Rt7KFrqPpLmpTz3ftTbA8A4kUABwW8CuvgbAAOL/XYpejnQeGPmVfVF3b3AvDtD5jYjp4rPkXHGHDPJTj+lYwA== +"@textlint/utils@^14.0.4": + version "14.0.4" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.4.tgz#70224fa1ee6f616a8697e625311092a32d527c4f" + integrity sha512-/ThtVZCB/vB2e8+MnKquCFNO2cKXCPEGxFlkdvJ5g9q9ODpVyFcf2ogYoIlvR7cNotvq67zVjENS7dsGDNFEmw== "@types/color-name@^1.1.1": version "1.1.1" @@ -2167,7 +2165,7 @@ babel-code-frame@^6.16.0, babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: esutils "^2.0.2" js-tokens "^3.0.2" -babel-core@^6.24.0, babel-core@^6.26.0, "babel6@npm:babel-core@^6": +babel-core@^6.24.0, babel-core@^6.26.0: version "6.26.3" resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== @@ -3081,23 +3079,83 @@ babel-types@^6.19.0, babel-types@^6.23.0, babel-types@^6.24.1, babel-types@^6.26 trim-right "^1.0.0" try-resolve "^1.0.0" -"babylon5@npm:babylon@^5", babylon@^5.8.38: - name babylon5 +"babel6@npm:babel-core@^6": + version "6.26.3" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" + integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.1" + debug "^2.6.9" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.8" + slash "^1.0.0" + source-map "^0.5.7" + +"babel7@npm:@babel/core@^7": + version "7.13.8" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.13.8.tgz#c191d9c5871788a591d69ea1dc03e5843a3680fb" + integrity sha512-oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg== + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.13.0" + "@babel/helper-compilation-targets" "^7.13.8" + "@babel/helper-module-transforms" "^7.13.0" + "@babel/helpers" "^7.13.0" + "@babel/parser" "^7.13.4" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.13.0" + "@babel/types" "^7.13.0" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.1.2" + lodash "^4.17.19" + semver "^6.3.0" + source-map "^0.5.0" + +"babylon5@npm:babylon@^5": version "5.8.38" resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" integrity sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0= -"babylon6@npm:babylon@^6", babylon@^6.17.0, babylon@^6.18.0, babylon@^6.8.0: - name babylon6 +"babylon6@npm:babylon@^6": version "6.18.0" resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== +"babylon7@npm:@babel/parser@^7": + version "7.13.9" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.13.9.tgz#ca34cb95e1c2dd126863a84465ae8ef66114be99" + integrity sha512-nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw== + babylon@7.0.0-beta.44: version "7.0.0-beta.44" resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.44.tgz#89159e15e6e30c5096e22d738d8c0af8a0e8ca1d" integrity sha512-5Hlm13BJVAioCHpImtFqNOF2H3ieTOHd0fmFGMxOJ9jgeFqeAwsv3u5P5cR7CSeFrkgHsT19DgFJkHV0/Mcd8g== +babylon@^5.8.38: + version "5.8.38" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-5.8.38.tgz#ec9b120b11bf6ccd4173a18bf217e60b79859ffd" + integrity sha1-7JsSCxG/bM1Bc6GL8hfmC3mFn/0= + +babylon@^6.17.0, babylon@^6.18.0, babylon@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + bail@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" From f7570e4dde5543e9f114d56e282010ad46995100 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 09:58:47 +0000 Subject: [PATCH 28/51] fix(deps): update textlint to v14.0.5 --- website/yarn.lock | 140 +++++++++++++++++++++++----------------------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 4645c24c..36a4fffd 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,102 +1331,102 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== -"@textlint/ast-node-types@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.4.tgz#261de119ce332eedd6a03845115412158b183ce1" - integrity sha512-O7L1pgle030Co9ou1+6e2/6GgcIpKgqwEc0XiBabokc22Yl0QEkrf00K/usBDmSx+wo1ficWBux2mfBEF0jnDA== +"@textlint/ast-node-types@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.5.tgz#410009ec7e3d9a692de5c54d6a2a4cc4827c8465" + integrity sha512-pOMQX9MGee9VYKYVsmQzJpZxllEiTHUgZgpRxorHDNqojrlU6cBKWDX1+cQhptpP+Ry/wS2VsWK6kHx6u1v7CQ== -"@textlint/ast-tester@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.4.tgz#c419f16bffbfdd4dfc7769adedba77252250fa3e" - integrity sha512-SQ/2DjxVlDVeCEjVlD8c8R2Sl3VGDZEx8o9+i8bV8NUdY8qsSHbo29/BfiUZf/uaX6eeNpZsurtstJ25hbVrsQ== +"@textlint/ast-tester@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.5.tgz#418bef321b49d0ae32b6c04b550b8ac682d4a779" + integrity sha512-fXIffKbOXwULZwMib9BtGf+IkARXs/CnEmFhAGwLhzPjLTB9YgNftjTyxmVvNbpKA02KTMdK3JFpgZ5Vyxsykg== dependencies: - "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-node-types" "^14.0.5" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.4.tgz#63cc96cbf1f9c615f1b159e7ea3c0a9612bcec9a" - integrity sha512-bzFC7UJ2FvhjH5ekXGQ0i9vjK+xzMT69gHBsYVEl+TtbplnH2YY3+sbw6B1j3LocJuo6xngZ2YWXXqmQlKgzLg== +"@textlint/ast-traverse@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.5.tgz#e71c373f808cd9f5a5ebec1d5a6582304fa9d546" + integrity sha512-5q/7vifbG8mqDEpByaUjAfHHjJlFiS737axziNQ8qXVswyrMdmRIRE9Wv0unvrs0W9mLKHcsPHh8JQd1RGpfIg== dependencies: - "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-node-types" "^14.0.5" -"@textlint/feature-flag@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.4.tgz#b0c9662fbc9eb8e3bd602d9c5a3c328af9d96483" - integrity sha512-1FMZqnjOA4KVpt/aloI1fNs46P0rUeHWcCRKl33/08wRHHMdcbaN4EsHkq7UfriuSfFgUuiyeo0bPjCpv15hhQ== +"@textlint/feature-flag@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.5.tgz#b8ffcc5d3e3625ea75e276108e6993d5bfd93250" + integrity sha512-hTlCE+cyJ6BxsXgDJfe/mF/b/GVKrPUMzgqbd6n5bbGuhdTYO0hDrl/nCAbasQz4oJh6TGq4WH2dNts38TlZng== "@textlint/kernel@^14.0.0": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.4.tgz#892a9acb735891e3ff3cb704493a8f32747f6e94" - integrity sha512-6WNoEBZ4lYTYOGK4EEEdjp+kgxSSC1nIFwN6tY9XGVkd4OACzDNothVTvJBwaX73FWFG5zoSjnNQxBDPUHMc8g== - dependencies: - "@textlint/ast-node-types" "^14.0.4" - "@textlint/ast-tester" "^14.0.4" - "@textlint/ast-traverse" "^14.0.4" - "@textlint/feature-flag" "^14.0.4" - "@textlint/source-code-fixer" "^14.0.4" - "@textlint/types" "^14.0.4" - "@textlint/utils" "^14.0.4" + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.5.tgz#a07b9736237f05b6f3899e63dc458fc6d77e3538" + integrity sha512-AfCGRSq4XuH1UCAcKKurbBRxxypTJzdWmG3Netpa/cGmkdI4tcL+kfaimG3hSnXvQfv6VIzHASBB6u2WpUAGXg== + dependencies: + "@textlint/ast-node-types" "^14.0.5" + "@textlint/ast-tester" "^14.0.5" + "@textlint/ast-traverse" "^14.0.5" + "@textlint/feature-flag" "^14.0.5" + "@textlint/source-code-fixer" "^14.0.5" + "@textlint/types" "^14.0.5" + "@textlint/utils" "^14.0.5" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.4.tgz#341521a6fa64174527b0fd1025ff5aaaf768fb00" - integrity sha512-D9UUxnRJoNROVjOa9bhoQPDdRvlvS/xP3MJo0Kl6b/mJFi0dOlW31WUfpOFjZkp4uXkL+oo0ji7AMnmV6JORsQ== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.5.tgz#dec3335d1aaa063aee59dcbc1ac25c4599a1e082" + integrity sha512-m6EIJL/qhvGuB5zXCQNHBF8MdhPpN4s2F2WPxfwFunXb/K58murSEkUTCviuHiDG/7XOFT030dY9eck3Pez0gg== dependencies: - "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-node-types" "^14.0.5" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" + neotraverse "^0.6.15" remark-footnotes "^3.0.0" remark-frontmatter "^3.0.0" remark-gfm "^1.0.0" remark-parse "^9.0.0" - traverse "^0.6.8" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.4.tgz#135375fc1d7cdbe8f0de9a3e4682ba72d9f0f3eb" - integrity sha512-gIUeWjF0WdSwgCUhW310hKJsWOyRyFe6PGaqqCk7Mhc+vVcePfmC8mmmhVgeuyys/Dhe+0iaP4M1eJf4COaIQw== +"@textlint/source-code-fixer@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.5.tgz#3a73434a2546e57c8e2a280228035663a6b366a6" + integrity sha512-JNSBVFQ09LXxeiebQ4PI72N1XTW/CZb3gVewnojL/un39oAo3yGjzFox/59TL5rdrGAqsijOq4CrWkJ+3Xb2kg== dependencies: - "@textlint/types" "^14.0.4" + "@textlint/types" "^14.0.5" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.4.tgz#289d5b6be820cbfab90a12fe9b1a22b074e8a947" - integrity sha512-r2KSnKzhsCIvX72yX+7sEuu9nDQIS4+xRsSffuXYB0etRQUI6VTTsE6Ibd6yMbEsMDUF4BfKWzNGn+bQ8U7oHA== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.5.tgz#08f24ddab548713c2d67faa4bb0873189f0c3018" + integrity sha512-3dq1OL6gU522H+/b+NmE4z8OXMG5aLgKAlBu1zBbcXGAjgtIEdplYn6XGvpkGRM2FnypMzsDIUjzwUS8bjbpWw== dependencies: - "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-node-types" "^14.0.5" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.4.tgz#9a2da78d9b4e4c15918f97cde0ee1948881d4272" - integrity sha512-mqQieI9U5GTRTjkK4Cj57Axl6fVloaA8g0+sCsp3TjmNWyEgGBvt3aw+FIUiFTvheg9L3RGe/aXgvp5ORADOAA== + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.5.tgz#25ac88f3f7574ca9f516fa06c877f376422f758c" + integrity sha512-QjfATGYKuPkLVT+GsG8WjwrkgNpksKED6Qd4TDL/q2LwNVEZ6ULFLZmufL9z9ENCeBs6y0YDE7IbE26Vhq5zww== dependencies: - "@textlint/markdown-to-ast" "^14.0.4" + "@textlint/markdown-to-ast" "^14.0.5" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.4.tgz#7d8b007613c57a3bd9d74224060c6a7433416894" - integrity sha512-HwTQyOcwDRrPPHyD8lwSMyGR1ETasR2WK6BLO0PRbowRe6K/K4b9OBBd6+nJcRFa+9Nd6p7nxPzA2WxDi1X/Zg== + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.5.tgz#2ea116d3ce6adafadb1f273ed566feb4c7270b55" + integrity sha512-OJJP5WXo3rqqL7bXYy44f8z9s1Ssb/2/nmTStbTepSOujQjOoEwehtwV+QBwdzwRkzbQFcZ0HS+dJ/yNdneKWA== dependencies: - "@textlint/text-to-ast" "^14.0.4" + "@textlint/text-to-ast" "^14.0.5" -"@textlint/types@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.4.tgz#0c163398a69bb53d0fc98f9717c8fe643b5c9cd7" - integrity sha512-SNdFG/GB6utYeHmNfoAMlI+K1NykPxK9TtilkEfhr/fF9TqmeeJ+6CMk5NLQzEvfKm6jUbv2pp5DPS27vo6GKg== +"@textlint/types@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.5.tgz#98a9a6ef49adca45eff810f5d2ec15fd7cb0c8a4" + integrity sha512-scrY5Zzz/SSAXaxw6OspbgFuiyQpHq88iK7OhUYE3BMnM90ijKzSohGMUHHK872zenzGTTOepE2sdjkIyXr1pA== dependencies: - "@textlint/ast-node-types" "^14.0.4" + "@textlint/ast-node-types" "^14.0.5" -"@textlint/utils@^14.0.4": - version "14.0.4" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.4.tgz#70224fa1ee6f616a8697e625311092a32d527c4f" - integrity sha512-/ThtVZCB/vB2e8+MnKquCFNO2cKXCPEGxFlkdvJ5g9q9ODpVyFcf2ogYoIlvR7cNotvq67zVjENS7dsGDNFEmw== +"@textlint/utils@^14.0.5": + version "14.0.5" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.5.tgz#556c4124df676097cd5845c93f1e8a69d7057558" + integrity sha512-+EDQlPx4t/DcH4EYXB62J+5mTRdJaMlFEyzCK7QUfZ9u2JeIE+AFt4D7xDAeiXcdxYTAm2ASdJ+lw7z3Z+vasQ== "@types/color-name@^1.1.1": version "1.1.1" @@ -4309,9 +4309,9 @@ debug@^3.1.0: ms "^2.1.1" debug@^4.0.0, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + version "4.3.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" + integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== dependencies: ms "2.1.2" @@ -8398,6 +8398,11 @@ neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== +neotraverse@^0.6.15: + version "0.6.15" + resolved "https://registry.yarnpkg.com/neotraverse/-/neotraverse-0.6.15.tgz#dc4abb64700c52440f13bc53635b559862420360" + integrity sha512-HZpdkco+JeXq0G+WWpMJ4NsX3pqb5O7eR9uGz3FfoFt+LYzU8iRWp49nJtud6hsDoywM8tIrDo3gjgmOqJA8LA== + next-tick@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" @@ -11246,11 +11251,6 @@ traverse@^0.6.7: resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== -traverse@^0.6.8: - version "0.6.8" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.8.tgz#5e5e0c41878b57e4b73ad2f3d1e36a715ea4ab15" - integrity sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA== - trim-lines@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.2.tgz#c8adbdbdae21bb5c2766240a661f693afe23e59b" From eb34926b148668efc9571a156ca3872c020446bd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 18 Aug 2024 01:55:01 +0000 Subject: [PATCH 29/51] fix(deps): update textlint --- website/yarn.lock | 135 +++++++++++++++++++++++++--------------------- 1 file changed, 75 insertions(+), 60 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 36a4fffd..9c99fdc3 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1327,15 +1327,20 @@ integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== "@textlint/ast-node-types@^13.0.5": - version "13.1.4" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.1.4.tgz#d727995d37c9cda7ea09bac9d095c45ee3d7013d" - integrity sha512-6MQvKz+rlMi/3DjLGywBlRSoJGJowMJbtc3IUTjAg9lVbfqPYkkYp3XvaC5C1m8OeBcca55g+d3CzZOUGhR6DA== + version "13.4.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" + integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== "@textlint/ast-node-types@^14.0.5": version "14.0.5" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.5.tgz#410009ec7e3d9a692de5c54d6a2a4cc4827c8465" integrity sha512-pOMQX9MGee9VYKYVsmQzJpZxllEiTHUgZgpRxorHDNqojrlU6cBKWDX1+cQhptpP+Ry/wS2VsWK6kHx6u1v7CQ== +"@textlint/ast-node-types@^14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.1.0.tgz#32f432284cc076928d90aebd9f10fd9f6bd9198f" + integrity sha512-xN1YzHH59m0mruMaE6scTEj06ALvonofJ7anh5Badr3GZDkMbkTW+U/cFY+hVCIxRawwIUDtBWtWIYB15uPhqg== + "@textlint/ast-tester@^14.0.5": version "14.0.5" resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.5.tgz#418bef321b49d0ae32b6c04b550b8ac682d4a779" @@ -1372,7 +1377,7 @@ fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.0.5": +"@textlint/markdown-to-ast@^14.0.0": version "14.0.5" resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.5.tgz#dec3335d1aaa063aee59dcbc1ac25c4599a1e082" integrity sha512-m6EIJL/qhvGuB5zXCQNHBF8MdhPpN4s2F2WPxfwFunXb/K58murSEkUTCviuHiDG/7XOFT030dY9eck3Pez0gg== @@ -1387,6 +1392,21 @@ remark-parse "^9.0.0" unified "^9.2.2" +"@textlint/markdown-to-ast@^14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.1.0.tgz#7699993701b6e17b95ef1a83448b08c5431c241d" + integrity sha512-9DoH2X3UlCpj9q06kIKkBdeH+LxhQLUsdwuDTxgRT89eFQTE9pm6iRhDFoGeOuvH70L7NRO7GhbmqcmITy9Raw== + dependencies: + "@textlint/ast-node-types" "^14.1.0" + debug "^4.3.4" + mdast-util-gfm-autolink-literal "^0.1.3" + neotraverse "^0.6.15" + remark-footnotes "^3.0.0" + remark-frontmatter "^3.0.0" + remark-gfm "^1.0.0" + remark-parse "^9.0.0" + unified "^9.2.2" + "@textlint/source-code-fixer@^14.0.5": version "14.0.5" resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.5.tgz#3a73434a2546e57c8e2a280228035663a6b366a6" @@ -1395,26 +1415,26 @@ "@textlint/types" "^14.0.5" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.0.5.tgz#08f24ddab548713c2d67faa4bb0873189f0c3018" - integrity sha512-3dq1OL6gU522H+/b+NmE4z8OXMG5aLgKAlBu1zBbcXGAjgtIEdplYn6XGvpkGRM2FnypMzsDIUjzwUS8bjbpWw== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.1.0": + version "14.1.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.1.0.tgz#5353f99f01ae19e37908d7d9a119f2cbc3e45b0d" + integrity sha512-qz2KVy22y7MQa0wgGNlHP1K6ayQU6884MaWH1VtmDCuq04njAiAvoeppTvu2pgnQIfghD1LeSrTT9zyqHe+GYQ== dependencies: - "@textlint/ast-node-types" "^14.0.5" + "@textlint/ast-node-types" "^14.1.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.0.5.tgz#25ac88f3f7574ca9f516fa06c877f376422f758c" - integrity sha512-QjfATGYKuPkLVT+GsG8WjwrkgNpksKED6Qd4TDL/q2LwNVEZ6ULFLZmufL9z9ENCeBs6y0YDE7IbE26Vhq5zww== + version "14.1.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.1.0.tgz#62ef202af3f26ea64b0c23178859fd7d9d2e9912" + integrity sha512-fzbSt4FrS04cpg79EvlJ9sOoaVWI2MZLwXiMGHK9ONPhWXIUnQHAM1GAmwsNi2/bf7zGP2VSdVecDiOkGcB78Q== dependencies: - "@textlint/markdown-to-ast" "^14.0.5" + "@textlint/markdown-to-ast" "^14.1.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.0.5.tgz#2ea116d3ce6adafadb1f273ed566feb4c7270b55" - integrity sha512-OJJP5WXo3rqqL7bXYy44f8z9s1Ssb/2/nmTStbTepSOujQjOoEwehtwV+QBwdzwRkzbQFcZ0HS+dJ/yNdneKWA== + version "14.1.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.1.0.tgz#f9034c4e59f14c224b78952b1b299331e0edbd3b" + integrity sha512-BQMItWlvuGNqZf73zhl9o7ggTXw5au8w2nDoUHsIugF403wEhfOmKYz3g0FNBD59eVymwlUFeb67ByCtFcv3Eg== dependencies: - "@textlint/text-to-ast" "^14.0.5" + "@textlint/text-to-ast" "^14.1.0" "@textlint/types@^14.0.5": version "14.0.5" @@ -1434,11 +1454,11 @@ integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== "@types/hast@^2.0.0": - version "2.3.4" - resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" - integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== + version "2.3.10" + resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.10.tgz#5c9d9e0b304bbb8879b857225c5ebab2d81d7643" + integrity sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw== dependencies: - "@types/unist" "*" + "@types/unist" "^2" "@types/mdast@^3.0.0": version "3.0.15" @@ -1458,14 +1478,14 @@ integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/unist@*": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.2.tgz#6dd61e43ef60b34086287f83683a5c1b2dc53d20" - integrity sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ== + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c" + integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q== "@types/unist@^2", "@types/unist@^2.0.0", "@types/unist@^2.0.2": - version "2.0.10" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.10.tgz#04ffa7f406ab628f7f7e97ca23e290cd8ab15efc" - integrity sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA== + version "2.0.11" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4" + integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA== "@types/vfile-message@*": version "1.0.1" @@ -6276,9 +6296,9 @@ hast-util-from-parse5@^5.0.0: xtend "^4.0.1" hast-util-from-parse5@^7.0.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.1.tgz#1887b4dd4e19f29d9c48c2e1c8bfeaac13a1f3a0" - integrity sha512-R6PoNcUs89ZxLJmMWsVbwSWuz95/9OriyQZ3e2ybwqGsRXzhA6gv49rgGmQvLbZuSNDv9fCg7vV7gXUsvtUFaA== + version "7.1.2" + resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz#aecfef73e3ceafdfa4550716443e4eb7b02e22b0" + integrity sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw== dependencies: "@types/hast" "^2.0.0" "@types/unist" "^2.0.0" @@ -8399,9 +8419,9 @@ neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== neotraverse@^0.6.15: - version "0.6.15" - resolved "https://registry.yarnpkg.com/neotraverse/-/neotraverse-0.6.15.tgz#dc4abb64700c52440f13bc53635b559862420360" - integrity sha512-HZpdkco+JeXq0G+WWpMJ4NsX3pqb5O7eR9uGz3FfoFt+LYzU8iRWp49nJtud6hsDoywM8tIrDo3gjgmOqJA8LA== + version "0.6.18" + resolved "https://registry.yarnpkg.com/neotraverse/-/neotraverse-0.6.18.tgz#abcb33dda2e8e713cf6321b29405e822230cdb30" + integrity sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA== next-tick@^1.0.0: version "1.0.0" @@ -9310,9 +9330,9 @@ property-information@^5.0.0, property-information@^5.0.1: xtend "^4.0.1" property-information@^6.0.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d" - integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg== + version "6.5.0" + resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec" + integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig== prr@~1.0.1: version "1.0.1" @@ -9827,9 +9847,9 @@ regjsparser@^0.6.0, regjsparser@^0.6.4: jsesc "~0.5.0" rehype-parse@^8.0.4: - version "8.0.4" - resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.4.tgz#3d17c9ff16ddfef6bbcc8e6a25a99467b482d688" - integrity sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg== + version "8.0.5" + resolved "https://registry.yarnpkg.com/rehype-parse/-/rehype-parse-8.0.5.tgz#ccffc21e08e288c7846614f8dc1dc23d603a4a80" + integrity sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A== dependencies: "@types/hast" "^2.0.0" hast-util-from-parse5 "^7.0.0" @@ -11121,14 +11141,14 @@ text-table@^0.2.0, text-table@~0.2.0: integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= textlint-plugin-html@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-1.0.0.tgz#15ea39f3f9b99bf2d95d456160324b7d4f6b1d26" - integrity sha512-eOLyUWtt2OJhibqrW7lDdlYEWXcTyIbGTYjK/Zlxe7vNjiEsOKFBHRlrnIwGW0gQsMNOipdCak2xmGHNQWDs+w== + version "1.0.1" + resolved "https://registry.yarnpkg.com/textlint-plugin-html/-/textlint-plugin-html-1.0.1.tgz#bf5e82b68b033cc0f1b96520f37c04db0cec71e0" + integrity sha512-BsuRnb8G3viZPZsDCplGY0z2LKtV6W517JAJsoJemzAWfvHqg9O2Wz05QZaSFcBF2/KS/A36eeXzviLuarvduA== dependencies: "@textlint/ast-node-types" "^13.0.5" + neotraverse "^0.6.15" rehype-parse "^8.0.4" structured-source "^4.0.0" - traverse "^0.6.7" unified "^10.1.2" through2@^0.6.3: @@ -11246,11 +11266,6 @@ traceur@0.0.111: semver "^4.3.3" source-map-support "~0.2.8" -traverse@^0.6.7: - version "0.6.7" - resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe" - integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg== - trim-lines@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-1.1.2.tgz#c8adbdbdae21bb5c2766240a661f693afe23e59b" @@ -11277,9 +11292,9 @@ trough@^1.0.0: integrity sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA== trough@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876" - integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g== + version "2.2.0" + resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f" + integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw== try-resolve@^1.0.0: version "1.0.1" @@ -11794,9 +11809,9 @@ vfile-location@^2.0.0: integrity sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA== vfile-location@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz#06f2b9244a3565bef91f099359486a08b10d3a95" - integrity sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw== + version "4.1.0" + resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.1.0.tgz#69df82fb9ef0a38d0d02b90dd84620e120050dd0" + integrity sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw== dependencies: "@types/unist" "^2.0.0" vfile "^5.0.0" @@ -11817,9 +11832,9 @@ vfile-message@^2.0.0: unist-util-stringify-position "^2.0.0" vfile-message@^3.0.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.3.tgz#1360c27a99234bebf7bddbbbca67807115e6b0dd" - integrity sha512-0yaU+rj2gKAyEk12ffdSbBfjnnj+b1zqTBv3OQCTn8yEB02bsPizwdBPrLJjHnK+cU9EMMcUnNv938XcZIkmdA== + version "3.1.4" + resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" + integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== dependencies: "@types/unist" "^2.0.0" unist-util-stringify-position "^3.0.0" @@ -11845,9 +11860,9 @@ vfile@^4.0.0: vfile-message "^2.0.0" vfile@^5.0.0: - version "5.3.6" - resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.6.tgz#61b2e70690cc835a5d0d0fd135beae74e5a39546" - integrity sha512-ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA== + version "5.3.7" + resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7" + integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g== dependencies: "@types/unist" "^2.0.0" is-buffer "^2.0.0" From 9ad15278c0f01bed710e4910841b5c66290346e7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:54:18 +0000 Subject: [PATCH 30/51] fix(deps): update textlint to v14.3.0 --- website/yarn.lock | 159 +++++++++++++++++++++------------------------- 1 file changed, 72 insertions(+), 87 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 9c99fdc3..65eaa190 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,73 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.0.5.tgz#410009ec7e3d9a692de5c54d6a2a4cc4827c8465" - integrity sha512-pOMQX9MGee9VYKYVsmQzJpZxllEiTHUgZgpRxorHDNqojrlU6cBKWDX1+cQhptpP+Ry/wS2VsWK6kHx6u1v7CQ== - -"@textlint/ast-node-types@^14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.1.0.tgz#32f432284cc076928d90aebd9f10fd9f6bd9198f" - integrity sha512-xN1YzHH59m0mruMaE6scTEj06ALvonofJ7anh5Badr3GZDkMbkTW+U/cFY+hVCIxRawwIUDtBWtWIYB15uPhqg== - -"@textlint/ast-tester@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.0.5.tgz#418bef321b49d0ae32b6c04b550b8ac682d4a779" - integrity sha512-fXIffKbOXwULZwMib9BtGf+IkARXs/CnEmFhAGwLhzPjLTB9YgNftjTyxmVvNbpKA02KTMdK3JFpgZ5Vyxsykg== - dependencies: - "@textlint/ast-node-types" "^14.0.5" +"@textlint/ast-node-types@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.3.0.tgz#d62f34d113c619922d353691035778a3ac10d8e3" + integrity sha512-baDgKcA8MeO55I2+LNc9FTAJ/aUKlxN6DgM5B511tT9kDwECXRk+iYi/H+oaP25z5Zq3FqrL6n7mmyfFWDUWkQ== + +"@textlint/ast-tester@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.3.0.tgz#ad7871f2c1f46c0dd6f734f3c333269eed94ddd3" + integrity sha512-K1TbF1Kko1XAKCWuFY/TkZO521ZWv2DAHu4JYsqqY/PnqqySHZorjSG78EfYBhkVq1E3ktprlAJmp8GNmpoYWQ== + dependencies: + "@textlint/ast-node-types" "^14.3.0" debug "^4.3.4" -"@textlint/ast-traverse@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.0.5.tgz#e71c373f808cd9f5a5ebec1d5a6582304fa9d546" - integrity sha512-5q/7vifbG8mqDEpByaUjAfHHjJlFiS737axziNQ8qXVswyrMdmRIRE9Wv0unvrs0W9mLKHcsPHh8JQd1RGpfIg== +"@textlint/ast-traverse@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.3.0.tgz#0769add0add66d88a9c2789a56fd5d8971bbdb9b" + integrity sha512-1YA5M2T+KeIHC0br5FwhkTwuLEUxkf5K5QtXJmXSF0Mf06ZlLfZ44RMlKYD3ElmzG+TmpmFdKIs4FzFSJRtslw== dependencies: - "@textlint/ast-node-types" "^14.0.5" + "@textlint/ast-node-types" "^14.3.0" -"@textlint/feature-flag@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.0.5.tgz#b8ffcc5d3e3625ea75e276108e6993d5bfd93250" - integrity sha512-hTlCE+cyJ6BxsXgDJfe/mF/b/GVKrPUMzgqbd6n5bbGuhdTYO0hDrl/nCAbasQz4oJh6TGq4WH2dNts38TlZng== +"@textlint/feature-flag@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.3.0.tgz#a44353892ff410ec3d15036105cb9b244bf6bbca" + integrity sha512-wWKbyHpmwxEEcyoBMd2u6GB5bw7vJ2a68HmBRknUABFL7vvp8JAzf4D/I2cLXgV06OoMbWE+hnV2CInayJiCpA== "@textlint/kernel@^14.0.0": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.0.5.tgz#a07b9736237f05b6f3899e63dc458fc6d77e3538" - integrity sha512-AfCGRSq4XuH1UCAcKKurbBRxxypTJzdWmG3Netpa/cGmkdI4tcL+kfaimG3hSnXvQfv6VIzHASBB6u2WpUAGXg== - dependencies: - "@textlint/ast-node-types" "^14.0.5" - "@textlint/ast-tester" "^14.0.5" - "@textlint/ast-traverse" "^14.0.5" - "@textlint/feature-flag" "^14.0.5" - "@textlint/source-code-fixer" "^14.0.5" - "@textlint/types" "^14.0.5" - "@textlint/utils" "^14.0.5" + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.3.0.tgz#198865b00fc222eced21958116ad39e52485a03e" + integrity sha512-RLkIJjP+GtrLmjLtAYSCORKF55z5wtw2E9Vb4h3RSQLjzYopQ3s9N1LbUwLJDr8tz0AphtOb6t1efF3d+NIemw== + dependencies: + "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-tester" "^14.3.0" + "@textlint/ast-traverse" "^14.3.0" + "@textlint/feature-flag" "^14.3.0" + "@textlint/source-code-fixer" "^14.3.0" + "@textlint/types" "^14.3.0" + "@textlint/utils" "^14.3.0" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.0.5.tgz#dec3335d1aaa063aee59dcbc1ac25c4599a1e082" - integrity sha512-m6EIJL/qhvGuB5zXCQNHBF8MdhPpN4s2F2WPxfwFunXb/K58murSEkUTCviuHiDG/7XOFT030dY9eck3Pez0gg== - dependencies: - "@textlint/ast-node-types" "^14.0.5" - debug "^4.3.4" - mdast-util-gfm-autolink-literal "^0.1.3" - neotraverse "^0.6.15" - remark-footnotes "^3.0.0" - remark-frontmatter "^3.0.0" - remark-gfm "^1.0.0" - remark-parse "^9.0.0" - unified "^9.2.2" - -"@textlint/markdown-to-ast@^14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.1.0.tgz#7699993701b6e17b95ef1a83448b08c5431c241d" - integrity sha512-9DoH2X3UlCpj9q06kIKkBdeH+LxhQLUsdwuDTxgRT89eFQTE9pm6iRhDFoGeOuvH70L7NRO7GhbmqcmITy9Raw== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.3.0.tgz#5262526def20ce391409fce26f9745e9190486a7" + integrity sha512-z4UMKFh3r5KtylPt5OO6su7DScU+fMZ7Qv5LTrJNaOqcmOzFho64Y1I26BJv86f8BC+MUYP0kza5MZGaR2LYQA== dependencies: - "@textlint/ast-node-types" "^14.1.0" + "@textlint/ast-node-types" "^14.3.0" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1407,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.0.5.tgz#3a73434a2546e57c8e2a280228035663a6b366a6" - integrity sha512-JNSBVFQ09LXxeiebQ4PI72N1XTW/CZb3gVewnojL/un39oAo3yGjzFox/59TL5rdrGAqsijOq4CrWkJ+3Xb2kg== +"@textlint/source-code-fixer@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.3.0.tgz#ec56e57162cf0243227ff4f35de44a95be295cc3" + integrity sha512-KJJoiN1Ha9R6tJrg3KHnYkq0s86D53PUjYxxCYJxo9Q8yTcXx+aXPspvgW+qGD+qcQxjarqbLl6m8uRlbyrg3Q== dependencies: - "@textlint/types" "^14.0.5" + "@textlint/types" "^14.3.0" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.1.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.1.0.tgz#5353f99f01ae19e37908d7d9a119f2cbc3e45b0d" - integrity sha512-qz2KVy22y7MQa0wgGNlHP1K6ayQU6884MaWH1VtmDCuq04njAiAvoeppTvu2pgnQIfghD1LeSrTT9zyqHe+GYQ== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.3.0.tgz#6e7834cc29aac148530c967f1b809c1dac7c06d5" + integrity sha512-wCjJmpwlff/wPsGaECBbNn0hPfiCnbr4mPJKFE59M3aeISoH3zqITCx9RCVPBYbYHzqTWmHPNLYI7egVIbZgrA== dependencies: - "@textlint/ast-node-types" "^14.1.0" + "@textlint/ast-node-types" "^14.3.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.1.0.tgz#62ef202af3f26ea64b0c23178859fd7d9d2e9912" - integrity sha512-fzbSt4FrS04cpg79EvlJ9sOoaVWI2MZLwXiMGHK9ONPhWXIUnQHAM1GAmwsNi2/bf7zGP2VSdVecDiOkGcB78Q== + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.3.0.tgz#86d2b6539142462f12c58afca936b8b39240f6a8" + integrity sha512-0lyYK/SUOgww+sxBtvjjsinHKMvFZUpLKvxCepymGlTyuOTYo7QmjmfhLc5G97PChOpUG41dpQoZt9miohQT1A== dependencies: - "@textlint/markdown-to-ast" "^14.1.0" + "@textlint/markdown-to-ast" "^14.3.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.1.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.1.0.tgz#f9034c4e59f14c224b78952b1b299331e0edbd3b" - integrity sha512-BQMItWlvuGNqZf73zhl9o7ggTXw5au8w2nDoUHsIugF403wEhfOmKYz3g0FNBD59eVymwlUFeb67ByCtFcv3Eg== + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.3.0.tgz#a875c3052cc349952204a5908fff536dcb8ce974" + integrity sha512-XpgyWTy2CqoKGuBrEsBJOVJqoXREAB6RFjPaa5bHvdvjwzU+EFqCNR9RXXs3Iov1ip/AaXDz/JeB4IYk6zj8GQ== dependencies: - "@textlint/text-to-ast" "^14.1.0" + "@textlint/text-to-ast" "^14.3.0" -"@textlint/types@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.0.5.tgz#98a9a6ef49adca45eff810f5d2ec15fd7cb0c8a4" - integrity sha512-scrY5Zzz/SSAXaxw6OspbgFuiyQpHq88iK7OhUYE3BMnM90ijKzSohGMUHHK872zenzGTTOepE2sdjkIyXr1pA== +"@textlint/types@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.3.0.tgz#4d13a3b0f49ed71deef29cbcf642a96b4913717e" + integrity sha512-zvPCQUpK1hOQA6Bg4XLYvKbOvFcQT65Nm25wsDdOGRgOvZbUzA+DJkiaH9Z8DAaJx83tTknIeLl4qwu97Hw1Ew== dependencies: - "@textlint/ast-node-types" "^14.0.5" + "@textlint/ast-node-types" "^14.3.0" -"@textlint/utils@^14.0.5": - version "14.0.5" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.0.5.tgz#556c4124df676097cd5845c93f1e8a69d7057558" - integrity sha512-+EDQlPx4t/DcH4EYXB62J+5mTRdJaMlFEyzCK7QUfZ9u2JeIE+AFt4D7xDAeiXcdxYTAm2ASdJ+lw7z3Z+vasQ== +"@textlint/utils@^14.3.0": + version "14.3.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.3.0.tgz#0a288b7f24a9b587b13d408007ad5eeba9d0c802" + integrity sha512-Q7bKiPobKCDXM5z+xByLZzSjcOBhvlDufQGHNgHR8EFie2/AFc68cN8RYCY0MmwCMBMuHuYaOzfIOpQpK9oTcQ== "@types/color-name@^1.1.1": version "1.1.1" @@ -4329,11 +4309,11 @@ debug@^3.1.0: ms "^2.1.1" debug@^4.0.0, debug@^4.3.4: - version "4.3.6" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" - integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== dependencies: - ms "2.1.2" + ms "^2.1.3" debug@^4.0.1, debug@^4.1.1: version "4.1.1" @@ -8351,6 +8331,11 @@ ms@2.1.2, ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== +ms@^2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + msgpack5@^4.2.1: version "4.5.1" resolved "https://registry.yarnpkg.com/msgpack5/-/msgpack5-4.5.1.tgz#2da4dba4ea20c09fd4309c9c04f046e38cb4975e" From b610f508f647bfa32b20045f7cb3619436d81bc5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 15:38:46 +0000 Subject: [PATCH 31/51] fix(deps): update textlint to v14.4.0 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 65eaa190..e7040998 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.3.0.tgz#d62f34d113c619922d353691035778a3ac10d8e3" - integrity sha512-baDgKcA8MeO55I2+LNc9FTAJ/aUKlxN6DgM5B511tT9kDwECXRk+iYi/H+oaP25z5Zq3FqrL6n7mmyfFWDUWkQ== +"@textlint/ast-node-types@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.4.0.tgz#63d3d99e33b6af21656d9509d6079f68f8da9762" + integrity sha512-tEZbu6dMU8lysTpFrrW9WzN/hWnfGoanOX1WmdKZ7LgqUVDdsd9Q8RNLlQLOgl7ev1C7O3T4ruzl4rdYI5he1g== -"@textlint/ast-tester@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.3.0.tgz#ad7871f2c1f46c0dd6f734f3c333269eed94ddd3" - integrity sha512-K1TbF1Kko1XAKCWuFY/TkZO521ZWv2DAHu4JYsqqY/PnqqySHZorjSG78EfYBhkVq1E3ktprlAJmp8GNmpoYWQ== +"@textlint/ast-tester@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.4.0.tgz#3e0a1782522eb11be9f672b61d00fc72d3447a35" + integrity sha512-pCKEUDaZVvvj/uZOTTUgU1tTkNsK+ufNs4Xx5BsBAqy+E0aAJJ47c8h2WIoL/MJniK6ZLctsDIwaZ4z9rUvrsQ== dependencies: - "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-node-types" "^14.4.0" debug "^4.3.4" -"@textlint/ast-traverse@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.3.0.tgz#0769add0add66d88a9c2789a56fd5d8971bbdb9b" - integrity sha512-1YA5M2T+KeIHC0br5FwhkTwuLEUxkf5K5QtXJmXSF0Mf06ZlLfZ44RMlKYD3ElmzG+TmpmFdKIs4FzFSJRtslw== +"@textlint/ast-traverse@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.4.0.tgz#76d33bc7624112ed9f2b246a7f716aa4ba2c509f" + integrity sha512-P6UrqKlXd9Lm0kJ1O8vyQU0/btXULiUHhE5nLZMnTNfgZYG3VasQ9BUyDHJn19O4PhUrIzZJusMi1XFcb3Y46Q== dependencies: - "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-node-types" "^14.4.0" -"@textlint/feature-flag@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.3.0.tgz#a44353892ff410ec3d15036105cb9b244bf6bbca" - integrity sha512-wWKbyHpmwxEEcyoBMd2u6GB5bw7vJ2a68HmBRknUABFL7vvp8JAzf4D/I2cLXgV06OoMbWE+hnV2CInayJiCpA== +"@textlint/feature-flag@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.4.0.tgz#bbace464df9b7d74608d0aa73afdcf0f4c7e1acc" + integrity sha512-aSphE9jw4QTjiCOe1tbtZ2NZpMRbYoUTi2E62KQ/mcVnwGC+Jk671wNSoUJzR/YNaLo63cQ7OKhHrBEb55t+Iw== "@textlint/kernel@^14.0.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.3.0.tgz#198865b00fc222eced21958116ad39e52485a03e" - integrity sha512-RLkIJjP+GtrLmjLtAYSCORKF55z5wtw2E9Vb4h3RSQLjzYopQ3s9N1LbUwLJDr8tz0AphtOb6t1efF3d+NIemw== - dependencies: - "@textlint/ast-node-types" "^14.3.0" - "@textlint/ast-tester" "^14.3.0" - "@textlint/ast-traverse" "^14.3.0" - "@textlint/feature-flag" "^14.3.0" - "@textlint/source-code-fixer" "^14.3.0" - "@textlint/types" "^14.3.0" - "@textlint/utils" "^14.3.0" + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.4.0.tgz#cea53d1e64812a6844e4cdd3e3bb911fb101f851" + integrity sha512-zH19vQ0ns4n8kPr+csjPnV5yPip6gKs08GvDJBQlX3AEbRQkaSw4H5kBCE+R0D9qDkuqt7xe8Z8Tdm7E7aUvGw== + dependencies: + "@textlint/ast-node-types" "^14.4.0" + "@textlint/ast-tester" "^14.4.0" + "@textlint/ast-traverse" "^14.4.0" + "@textlint/feature-flag" "^14.4.0" + "@textlint/source-code-fixer" "^14.4.0" + "@textlint/types" "^14.4.0" + "@textlint/utils" "^14.4.0" debug "^4.3.4" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.3.0.tgz#5262526def20ce391409fce26f9745e9190486a7" - integrity sha512-z4UMKFh3r5KtylPt5OO6su7DScU+fMZ7Qv5LTrJNaOqcmOzFho64Y1I26BJv86f8BC+MUYP0kza5MZGaR2LYQA== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.4.0.tgz#692b86f65f2241fd2fe83bbbbee7bd36053881c4" + integrity sha512-y6UxfRZ00w8XQ1jfKhR0jcQd7qbYaQgo3aERWbJR0Gxxl0T+G+TKBS12pdnUFOTshgSTEgqlvrE+Zt3lTl0e1A== dependencies: - "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-node-types" "^14.4.0" debug "^4.3.4" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.3.0.tgz#ec56e57162cf0243227ff4f35de44a95be295cc3" - integrity sha512-KJJoiN1Ha9R6tJrg3KHnYkq0s86D53PUjYxxCYJxo9Q8yTcXx+aXPspvgW+qGD+qcQxjarqbLl6m8uRlbyrg3Q== +"@textlint/source-code-fixer@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.4.0.tgz#ac1d63b69a95581b8abe3dc8cc87261d0332e54f" + integrity sha512-S2QBZ3pUQQeH01kgfKa1Tmusz0A2/sm3QkW1Uhag9x5v5OKYC4W3070eliY+p0I88nxmqy72M/j+78sDutUcuw== dependencies: - "@textlint/types" "^14.3.0" + "@textlint/types" "^14.4.0" debug "^4.3.4" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.3.0.tgz#6e7834cc29aac148530c967f1b809c1dac7c06d5" - integrity sha512-wCjJmpwlff/wPsGaECBbNn0hPfiCnbr4mPJKFE59M3aeISoH3zqITCx9RCVPBYbYHzqTWmHPNLYI7egVIbZgrA== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.4.0.tgz#ceded6926458aac333384dc99fa5712c57e1c60a" + integrity sha512-MA3z7cksYpjXRPIFFcbB6CM5UbNFD53GJ823qo74ImU2MRlIrs9dcR9yQ76YxbYZ9OazPzUNGg5AS9tbp3Exbg== dependencies: - "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-node-types" "^14.4.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.3.0.tgz#86d2b6539142462f12c58afca936b8b39240f6a8" - integrity sha512-0lyYK/SUOgww+sxBtvjjsinHKMvFZUpLKvxCepymGlTyuOTYo7QmjmfhLc5G97PChOpUG41dpQoZt9miohQT1A== + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.4.0.tgz#3d4ae94048cbb7c188aeab04b2a61050e4cb7bdd" + integrity sha512-J6RoZSC7MOr9WYqyG4s1BZxExiHfS6fMmiQuWGJB133vDDrY+wmiaFm/C6Li59YPdPivddxSDo7v8z2zyayW1A== dependencies: - "@textlint/markdown-to-ast" "^14.3.0" + "@textlint/markdown-to-ast" "^14.4.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.3.0.tgz#a875c3052cc349952204a5908fff536dcb8ce974" - integrity sha512-XpgyWTy2CqoKGuBrEsBJOVJqoXREAB6RFjPaa5bHvdvjwzU+EFqCNR9RXXs3Iov1ip/AaXDz/JeB4IYk6zj8GQ== + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.4.0.tgz#71df2efbb742d8f306c7d7e19385ac72dff6b69b" + integrity sha512-ut3+MhOh9taPUKLaTT4nyil3MLnAbo60BYGWIz6cPrv3YMyvN/eCw4jW4VscvV1WTik19lzmDCBfSpfnmz/PiA== dependencies: - "@textlint/text-to-ast" "^14.3.0" + "@textlint/text-to-ast" "^14.4.0" -"@textlint/types@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.3.0.tgz#4d13a3b0f49ed71deef29cbcf642a96b4913717e" - integrity sha512-zvPCQUpK1hOQA6Bg4XLYvKbOvFcQT65Nm25wsDdOGRgOvZbUzA+DJkiaH9Z8DAaJx83tTknIeLl4qwu97Hw1Ew== +"@textlint/types@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.4.0.tgz#845830a4c7d28f18f7854debcace985fdf7700f5" + integrity sha512-ZxZkiFxaXfjoaa/gzbGyUWR0mSMLChDaQrYJ0sPToCQ0QXUG3w5sIT2hCGZyBfNRc8/g0eH+KbDejD014oBPBQ== dependencies: - "@textlint/ast-node-types" "^14.3.0" + "@textlint/ast-node-types" "^14.4.0" -"@textlint/utils@^14.3.0": - version "14.3.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.3.0.tgz#0a288b7f24a9b587b13d408007ad5eeba9d0c802" - integrity sha512-Q7bKiPobKCDXM5z+xByLZzSjcOBhvlDufQGHNgHR8EFie2/AFc68cN8RYCY0MmwCMBMuHuYaOzfIOpQpK9oTcQ== +"@textlint/utils@^14.4.0": + version "14.4.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.4.0.tgz#d8b249b34972b8823422f60a7c64149a61540096" + integrity sha512-/5QSdYa042z0SX+10+UPzHlMT2nWuRBkouf90/P60nycpFmWn0waIbVoARDlekzmaqB4BitbP7NGjjPmEju4bA== "@types/color-name@^1.1.1": version "1.1.1" From 82f74a47d3c9f40662f06c170132ff0282c3e47e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 22:00:55 +0000 Subject: [PATCH 32/51] fix(deps): update textlint to v14.4.2 --- website/yarn.lock | 138 +++++++++++++++++++++++----------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index e7040998..68a48374 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,54 +1331,54 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.4.0.tgz#63d3d99e33b6af21656d9509d6079f68f8da9762" - integrity sha512-tEZbu6dMU8lysTpFrrW9WzN/hWnfGoanOX1WmdKZ7LgqUVDdsd9Q8RNLlQLOgl7ev1C7O3T4ruzl4rdYI5he1g== +"@textlint/ast-node-types@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.4.2.tgz#bc90a143f414cae83ec5b0666678b34c0384177b" + integrity sha512-e8/drNznaZHS/qGDC83k6Ht1wDWNHzGQ0RHcXD+72YMFercEFvp6WVfW5XbCbxGbSITEO5NBCOCTyeccS9lxEA== -"@textlint/ast-tester@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.4.0.tgz#3e0a1782522eb11be9f672b61d00fc72d3447a35" - integrity sha512-pCKEUDaZVvvj/uZOTTUgU1tTkNsK+ufNs4Xx5BsBAqy+E0aAJJ47c8h2WIoL/MJniK6ZLctsDIwaZ4z9rUvrsQ== +"@textlint/ast-tester@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.4.2.tgz#51b2694fc7b209daed5fc6497628e827d431824b" + integrity sha512-w1MlGa9DsJgp2W+ifNZ57vIWDoRVRExy0rXek7/voxBmSpTo76zHq74ggwjOrmoZpX8ADkvDc0tUWWWyiUVskQ== dependencies: - "@textlint/ast-node-types" "^14.4.0" - debug "^4.3.4" + "@textlint/ast-node-types" "^14.4.2" + debug "^4.4.0" -"@textlint/ast-traverse@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.4.0.tgz#76d33bc7624112ed9f2b246a7f716aa4ba2c509f" - integrity sha512-P6UrqKlXd9Lm0kJ1O8vyQU0/btXULiUHhE5nLZMnTNfgZYG3VasQ9BUyDHJn19O4PhUrIzZJusMi1XFcb3Y46Q== +"@textlint/ast-traverse@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.4.2.tgz#d3b0ffcf978f5838e2e562a0d635679a2c5a792d" + integrity sha512-HQp1iatBiLn9Qg8wqN3WxYWoiHJnkcv+30MdVPe5d0CmnBBXXRqFO1eSUHUlYarGNc3LyE0GFEkS72D7lefyNg== dependencies: - "@textlint/ast-node-types" "^14.4.0" + "@textlint/ast-node-types" "^14.4.2" -"@textlint/feature-flag@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.4.0.tgz#bbace464df9b7d74608d0aa73afdcf0f4c7e1acc" - integrity sha512-aSphE9jw4QTjiCOe1tbtZ2NZpMRbYoUTi2E62KQ/mcVnwGC+Jk671wNSoUJzR/YNaLo63cQ7OKhHrBEb55t+Iw== +"@textlint/feature-flag@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.4.2.tgz#c16b0287897472fad8e7030cd3830ae8befb47d3" + integrity sha512-jeK7FuaYVr+gqgvjZazYHLCA+0oJybXa26kgF7P0qJ4yWq9qoENnjZtHF1VCi40euIS60z+/VJ8SlQj3LfnaoQ== "@textlint/kernel@^14.0.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.4.0.tgz#cea53d1e64812a6844e4cdd3e3bb911fb101f851" - integrity sha512-zH19vQ0ns4n8kPr+csjPnV5yPip6gKs08GvDJBQlX3AEbRQkaSw4H5kBCE+R0D9qDkuqt7xe8Z8Tdm7E7aUvGw== - dependencies: - "@textlint/ast-node-types" "^14.4.0" - "@textlint/ast-tester" "^14.4.0" - "@textlint/ast-traverse" "^14.4.0" - "@textlint/feature-flag" "^14.4.0" - "@textlint/source-code-fixer" "^14.4.0" - "@textlint/types" "^14.4.0" - "@textlint/utils" "^14.4.0" - debug "^4.3.4" + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.4.2.tgz#1c7e88615c2ca9e18bbcfc4621b0a0e8329042cd" + integrity sha512-nwUpdOl/whw8Cq9ELYRatmxEUEGApzKRAFJQpdIB/Ex0gKG1S/ctzSYbqSBUZ/Xctnn93yBDgOngDFdgoHbfWg== + dependencies: + "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-tester" "^14.4.2" + "@textlint/ast-traverse" "^14.4.2" + "@textlint/feature-flag" "^14.4.2" + "@textlint/source-code-fixer" "^14.4.2" + "@textlint/types" "^14.4.2" + "@textlint/utils" "^14.4.2" + debug "^4.4.0" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.4.0.tgz#692b86f65f2241fd2fe83bbbbee7bd36053881c4" - integrity sha512-y6UxfRZ00w8XQ1jfKhR0jcQd7qbYaQgo3aERWbJR0Gxxl0T+G+TKBS12pdnUFOTshgSTEgqlvrE+Zt3lTl0e1A== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.4.2.tgz#f44d4bda3a24fc3a2a94bc6710c7064dc61d18d3" + integrity sha512-hj2xR9hz5/Tu7Hlrn6VORJgdAfUhAd5j6cBkEVpnKAU4LaERkNyVCgK/da2JHK2w84YHmaDjER4D6zUUkllwag== dependencies: - "@textlint/ast-node-types" "^14.4.0" - debug "^4.3.4" + "@textlint/ast-node-types" "^14.4.2" + debug "^4.4.0" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" remark-footnotes "^3.0.0" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.4.0.tgz#ac1d63b69a95581b8abe3dc8cc87261d0332e54f" - integrity sha512-S2QBZ3pUQQeH01kgfKa1Tmusz0A2/sm3QkW1Uhag9x5v5OKYC4W3070eliY+p0I88nxmqy72M/j+78sDutUcuw== +"@textlint/source-code-fixer@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.4.2.tgz#73f5f611a2a3314dbabf3040f369b0658a977f8f" + integrity sha512-8AFoRL0uQPiu7hlszM1jlido+PdL3/3Ddp8sz1XxOpFgnjuTKnlRLYjziaL8X4JCpXQjUy4Q9am8NI6M1Y18lw== dependencies: - "@textlint/types" "^14.4.0" - debug "^4.3.4" + "@textlint/types" "^14.4.2" + debug "^4.4.0" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.4.0.tgz#ceded6926458aac333384dc99fa5712c57e1c60a" - integrity sha512-MA3z7cksYpjXRPIFFcbB6CM5UbNFD53GJ823qo74ImU2MRlIrs9dcR9yQ76YxbYZ9OazPzUNGg5AS9tbp3Exbg== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.4.2.tgz#b9abfc69bbce842f02dcc537da1d0726f3638a11" + integrity sha512-fLyNHMczXZOP/jkKqBbjntszJR0ytsdQOPg9E8fnnbcX6eBMw3q924+M/vkYno/9ArSnUMPbdfhKBc/lWTXvcQ== dependencies: - "@textlint/ast-node-types" "^14.4.0" + "@textlint/ast-node-types" "^14.4.2" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.4.0.tgz#3d4ae94048cbb7c188aeab04b2a61050e4cb7bdd" - integrity sha512-J6RoZSC7MOr9WYqyG4s1BZxExiHfS6fMmiQuWGJB133vDDrY+wmiaFm/C6Li59YPdPivddxSDo7v8z2zyayW1A== + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.4.2.tgz#20adb97ae51f1c0464a66c24a06d4254ea48180b" + integrity sha512-qtUta0iHEn843Hzhq7VnYPRp5rsYLnaZC5fOGOMh8DIpUlnuNXI1ANs9TkL5LsgexyYyMuPtFbvwr7S4JNu6ig== dependencies: - "@textlint/markdown-to-ast" "^14.4.0" + "@textlint/markdown-to-ast" "^14.4.2" "@textlint/textlint-plugin-text@^14.0.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.4.0.tgz#71df2efbb742d8f306c7d7e19385ac72dff6b69b" - integrity sha512-ut3+MhOh9taPUKLaTT4nyil3MLnAbo60BYGWIz6cPrv3YMyvN/eCw4jW4VscvV1WTik19lzmDCBfSpfnmz/PiA== + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.4.2.tgz#60bca54157a5346b90dfea534180f16e132e1811" + integrity sha512-cg7J6qTgAsV7ms2fP2KpEBIaI+3GQAbQtjNTF4Zu5d8Kn07wNqFqZIpTnsKUC/b64Fn/ujo+HYse76nSU+5EZg== dependencies: - "@textlint/text-to-ast" "^14.4.0" + "@textlint/text-to-ast" "^14.4.2" -"@textlint/types@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.4.0.tgz#845830a4c7d28f18f7854debcace985fdf7700f5" - integrity sha512-ZxZkiFxaXfjoaa/gzbGyUWR0mSMLChDaQrYJ0sPToCQ0QXUG3w5sIT2hCGZyBfNRc8/g0eH+KbDejD014oBPBQ== +"@textlint/types@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.4.2.tgz#05726846d163acde65edf57b6555c203d955bdcf" + integrity sha512-s2UbCeYY8TQNdSusPs0n+g57g6fwx8Vz6nDZLD7vIXMEW10zIwkQnQf9IpxDwvKnstBWYTJ24Kx9nzddpBS9oQ== dependencies: - "@textlint/ast-node-types" "^14.4.0" + "@textlint/ast-node-types" "^14.4.2" -"@textlint/utils@^14.4.0": - version "14.4.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.4.0.tgz#d8b249b34972b8823422f60a7c64149a61540096" - integrity sha512-/5QSdYa042z0SX+10+UPzHlMT2nWuRBkouf90/P60nycpFmWn0waIbVoARDlekzmaqB4BitbP7NGjjPmEju4bA== +"@textlint/utils@^14.4.2": + version "14.4.2" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.4.2.tgz#b709cbbf1ee4023c7ee1b47d7f1ca5979608c583" + integrity sha512-bhns1Cws+4dERz6KGFVLLGf0vFK6r5LiKKeg7N3Hnh0QNbzy7TYO+HTfZsgcqBvZSJeAeowzKyDQ8nSsflPbJw== "@types/color-name@^1.1.1": version "1.1.1" @@ -4308,10 +4308,10 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.3.4: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== +debug@^4.0.0, debug@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" From 9880e233d42caafac4dbf72c36dd58956da9dc02 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 02:48:57 +0000 Subject: [PATCH 33/51] fix(deps): update textlint to v14.5.0 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 68a48374..e9174172 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.4.2.tgz#bc90a143f414cae83ec5b0666678b34c0384177b" - integrity sha512-e8/drNznaZHS/qGDC83k6Ht1wDWNHzGQ0RHcXD+72YMFercEFvp6WVfW5XbCbxGbSITEO5NBCOCTyeccS9lxEA== +"@textlint/ast-node-types@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.5.0.tgz#aba6fba825bb31258c74c6b743a60f945221b167" + integrity sha512-T7NQ2DUnx1zOrnBqcFpJGFgHder5/M7TV596LZTJS/sc1anT7WVrsoGCMmu3oJh2ALg9oJN+PgSmZQ8Mm0Mg+w== -"@textlint/ast-tester@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.4.2.tgz#51b2694fc7b209daed5fc6497628e827d431824b" - integrity sha512-w1MlGa9DsJgp2W+ifNZ57vIWDoRVRExy0rXek7/voxBmSpTo76zHq74ggwjOrmoZpX8ADkvDc0tUWWWyiUVskQ== +"@textlint/ast-tester@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.5.0.tgz#436b663548502f786fb612760490fa07be8fe342" + integrity sha512-biwtMuv+B1A5tqDLYSwMSjEr24l4zji69Ttg9ZxAEkr5sGre2W5ojEZRA79edDxcAASDF35XgHkWR+tvMsVAdg== dependencies: - "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-node-types" "^14.5.0" debug "^4.4.0" -"@textlint/ast-traverse@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.4.2.tgz#d3b0ffcf978f5838e2e562a0d635679a2c5a792d" - integrity sha512-HQp1iatBiLn9Qg8wqN3WxYWoiHJnkcv+30MdVPe5d0CmnBBXXRqFO1eSUHUlYarGNc3LyE0GFEkS72D7lefyNg== +"@textlint/ast-traverse@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.5.0.tgz#06ca1b0bbf92abcf28338ccaa49c7366a72adc09" + integrity sha512-K83si1a2s1LdIVPmzrtuI+SdKjNp2A5jmOcoyXAVNLv3qlJc4DTCyKO7Qn/xTq00zQrhLrZXJSaooBSXi4HXvQ== dependencies: - "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-node-types" "^14.5.0" -"@textlint/feature-flag@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.4.2.tgz#c16b0287897472fad8e7030cd3830ae8befb47d3" - integrity sha512-jeK7FuaYVr+gqgvjZazYHLCA+0oJybXa26kgF7P0qJ4yWq9qoENnjZtHF1VCi40euIS60z+/VJ8SlQj3LfnaoQ== +"@textlint/feature-flag@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.5.0.tgz#1602fe9f1003771222c5f3e8add3f7ed62f55c0e" + integrity sha512-fM0W1JRbEkO4IuJhDLDAam50usW+z7B1wA8Y6PciJeojzpTXUiV29MtUISTCfSVkjrDo54aIRgTPn8HogkUGPQ== "@textlint/kernel@^14.0.0": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.4.2.tgz#1c7e88615c2ca9e18bbcfc4621b0a0e8329042cd" - integrity sha512-nwUpdOl/whw8Cq9ELYRatmxEUEGApzKRAFJQpdIB/Ex0gKG1S/ctzSYbqSBUZ/Xctnn93yBDgOngDFdgoHbfWg== - dependencies: - "@textlint/ast-node-types" "^14.4.2" - "@textlint/ast-tester" "^14.4.2" - "@textlint/ast-traverse" "^14.4.2" - "@textlint/feature-flag" "^14.4.2" - "@textlint/source-code-fixer" "^14.4.2" - "@textlint/types" "^14.4.2" - "@textlint/utils" "^14.4.2" + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.5.0.tgz#fb616d25a15d86263eef447f60d95162706d467d" + integrity sha512-hgq0b7eUJxEwCf1jNx/DCZeU2SJXXRH+qycvyrGVEOWgLYmtizlCm6GQ+ejDgUdcoNpQhzCkiwV2HF0z9UbmMw== + dependencies: + "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-tester" "^14.5.0" + "@textlint/ast-traverse" "^14.5.0" + "@textlint/feature-flag" "^14.5.0" + "@textlint/source-code-fixer" "^14.5.0" + "@textlint/types" "^14.5.0" + "@textlint/utils" "^14.5.0" debug "^4.4.0" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.4.2.tgz#f44d4bda3a24fc3a2a94bc6710c7064dc61d18d3" - integrity sha512-hj2xR9hz5/Tu7Hlrn6VORJgdAfUhAd5j6cBkEVpnKAU4LaERkNyVCgK/da2JHK2w84YHmaDjER4D6zUUkllwag== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.5.0.tgz#7f3e0adf53453cb0d76bf109e274aa5f6585ae6f" + integrity sha512-qftHkBnyWEy2PmAhmhrmTemCKMJCpPKtFZt0woaa0yZkMwXo/RN66elnjAEJZenkRntQgphlKJJZ0I/NA2hH4g== dependencies: - "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-node-types" "^14.5.0" debug "^4.4.0" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.4.2.tgz#73f5f611a2a3314dbabf3040f369b0658a977f8f" - integrity sha512-8AFoRL0uQPiu7hlszM1jlido+PdL3/3Ddp8sz1XxOpFgnjuTKnlRLYjziaL8X4JCpXQjUy4Q9am8NI6M1Y18lw== +"@textlint/source-code-fixer@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.5.0.tgz#e93100bfa20540142874fbbab83a8a2063077f09" + integrity sha512-zcokW+MBTppOzGumeB1SZvjDitCnO2sAZrWpmw849L6P11RdxS/iQXakg4jkRTTlWYR1AtzyAa9j0lLCdxsfuQ== dependencies: - "@textlint/types" "^14.4.2" + "@textlint/types" "^14.5.0" debug "^4.4.0" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.4.2.tgz#b9abfc69bbce842f02dcc537da1d0726f3638a11" - integrity sha512-fLyNHMczXZOP/jkKqBbjntszJR0ytsdQOPg9E8fnnbcX6eBMw3q924+M/vkYno/9ArSnUMPbdfhKBc/lWTXvcQ== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.5.0.tgz#ddfa833fd3fb313b4e41c4f169fa81a4a506eb7b" + integrity sha512-e6SrPeCScmxxfTDpXo+nBh4tt6sbqySX/fE65sYVYupLwpJsCtxTEnYft2jEqifvgaM4JjgzETSQMG799HBTPw== dependencies: - "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-node-types" "^14.5.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.4.2.tgz#20adb97ae51f1c0464a66c24a06d4254ea48180b" - integrity sha512-qtUta0iHEn843Hzhq7VnYPRp5rsYLnaZC5fOGOMh8DIpUlnuNXI1ANs9TkL5LsgexyYyMuPtFbvwr7S4JNu6ig== + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.5.0.tgz#3b01ea7fa022be61f9b012e5347c8a9e15fd06c7" + integrity sha512-riMcW6Sj/IvTnIAA4W0O5pxJxdqth+MUe2li7wg8yCq3jilS0EYIlolNXvX414v/9swsLu8Tztwugrh0E6HJDw== dependencies: - "@textlint/markdown-to-ast" "^14.4.2" + "@textlint/markdown-to-ast" "^14.5.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.4.2.tgz#60bca54157a5346b90dfea534180f16e132e1811" - integrity sha512-cg7J6qTgAsV7ms2fP2KpEBIaI+3GQAbQtjNTF4Zu5d8Kn07wNqFqZIpTnsKUC/b64Fn/ujo+HYse76nSU+5EZg== + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.5.0.tgz#aa6684b112ace1b9a9d63bd2ced492417f6e7e8d" + integrity sha512-aASQwkRnupRlY9w168SBjrsDbO1wtg2EYx8JSnt/YboUnhszQD8Zys178Zu/00ECtpxwpjQYowoYNq0BoP9aig== dependencies: - "@textlint/text-to-ast" "^14.4.2" + "@textlint/text-to-ast" "^14.5.0" -"@textlint/types@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.4.2.tgz#05726846d163acde65edf57b6555c203d955bdcf" - integrity sha512-s2UbCeYY8TQNdSusPs0n+g57g6fwx8Vz6nDZLD7vIXMEW10zIwkQnQf9IpxDwvKnstBWYTJ24Kx9nzddpBS9oQ== +"@textlint/types@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.5.0.tgz#a9b47011094b1c8db850713986c0c2bfb17aea8f" + integrity sha512-z+oJS5GHK5KiV87ZNCYAQnZTgq1MRGl9g301GOV6Zq4RjH75JVQPNa4hUlwzG2sF6jks+wLhMjxwaQaG6cKCpA== dependencies: - "@textlint/ast-node-types" "^14.4.2" + "@textlint/ast-node-types" "^14.5.0" -"@textlint/utils@^14.4.2": - version "14.4.2" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.4.2.tgz#b709cbbf1ee4023c7ee1b47d7f1ca5979608c583" - integrity sha512-bhns1Cws+4dERz6KGFVLLGf0vFK6r5LiKKeg7N3Hnh0QNbzy7TYO+HTfZsgcqBvZSJeAeowzKyDQ8nSsflPbJw== +"@textlint/utils@^14.5.0": + version "14.5.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.5.0.tgz#10f72a6d41c74dc8d6d691f82c21625e28290b80" + integrity sha512-gAKZh1woc0IZGoVjQ8G8Og10dsBJ6UxaCFXofeHveWsZhJAdVzjw49/tJLVu/39t8GTdZQ4BAHuNxHNFgLN57w== "@types/color-name@^1.1.1": version "1.1.1" From a578ab96e8992f251c7f7f804d5bc904e8d386f1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 10:57:37 +0000 Subject: [PATCH 34/51] fix(deps): update textlint to v14.6.0 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index e9174172..2447c1df 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.5.0.tgz#aba6fba825bb31258c74c6b743a60f945221b167" - integrity sha512-T7NQ2DUnx1zOrnBqcFpJGFgHder5/M7TV596LZTJS/sc1anT7WVrsoGCMmu3oJh2ALg9oJN+PgSmZQ8Mm0Mg+w== +"@textlint/ast-node-types@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.6.0.tgz#3a61744a62d7089c8c8221104dfe4a62fe3d650b" + integrity sha512-PqWpzFa64M5uKqBSQPV8wPqo14zvmz5JXWIIUkVCMQ/gN8/8IrXjpsp0O+/To8u5D5woVpxihBi/3nJdR8E37g== -"@textlint/ast-tester@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.5.0.tgz#436b663548502f786fb612760490fa07be8fe342" - integrity sha512-biwtMuv+B1A5tqDLYSwMSjEr24l4zji69Ttg9ZxAEkr5sGre2W5ojEZRA79edDxcAASDF35XgHkWR+tvMsVAdg== +"@textlint/ast-tester@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.6.0.tgz#d39931aa780974426006c6d855eb50aa125dfb6d" + integrity sha512-wGoNB35KA/LEWaGp5ccsUqQwNjygCDnkGxe8A8kCMURgM2KYTuCCItGMLrajm0T9BhNdQtK/ST6+EljTFERasA== dependencies: - "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-node-types" "^14.6.0" debug "^4.4.0" -"@textlint/ast-traverse@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.5.0.tgz#06ca1b0bbf92abcf28338ccaa49c7366a72adc09" - integrity sha512-K83si1a2s1LdIVPmzrtuI+SdKjNp2A5jmOcoyXAVNLv3qlJc4DTCyKO7Qn/xTq00zQrhLrZXJSaooBSXi4HXvQ== +"@textlint/ast-traverse@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.6.0.tgz#3caaca8b31192957994db6b6f47bcbf0255beb44" + integrity sha512-BkfQ/bWfpO6FErrpYoUF+SzlPqJklxD+o6rs2TwSoqO2EMP5vAgIVdGJiTBjV4kxghTzq0w5UkMi9xtNZw1sUg== dependencies: - "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-node-types" "^14.6.0" -"@textlint/feature-flag@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.5.0.tgz#1602fe9f1003771222c5f3e8add3f7ed62f55c0e" - integrity sha512-fM0W1JRbEkO4IuJhDLDAam50usW+z7B1wA8Y6PciJeojzpTXUiV29MtUISTCfSVkjrDo54aIRgTPn8HogkUGPQ== +"@textlint/feature-flag@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.6.0.tgz#865cf2c20cfe911b821b982d9cbdd63fe2438ba2" + integrity sha512-WmmFHEt71rtSk2ZjcvrLJPN6dKYtYwC8fAFZcnjw15h80Di7wuw7vrpW85udloq+XYDlJ5GnhumDX5yZ4mt4Ug== "@textlint/kernel@^14.0.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.5.0.tgz#fb616d25a15d86263eef447f60d95162706d467d" - integrity sha512-hgq0b7eUJxEwCf1jNx/DCZeU2SJXXRH+qycvyrGVEOWgLYmtizlCm6GQ+ejDgUdcoNpQhzCkiwV2HF0z9UbmMw== - dependencies: - "@textlint/ast-node-types" "^14.5.0" - "@textlint/ast-tester" "^14.5.0" - "@textlint/ast-traverse" "^14.5.0" - "@textlint/feature-flag" "^14.5.0" - "@textlint/source-code-fixer" "^14.5.0" - "@textlint/types" "^14.5.0" - "@textlint/utils" "^14.5.0" + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.6.0.tgz#8ea028459f5e64041c645fd4e00ef765e7f3ec3d" + integrity sha512-Mf8cikqVDHdf0RgjSYxs/G1a+I5UK5GjM+ehc67zSF/vtFUaLRn5bkWcEKrWQ67mjrM24tqH46oqVM9RL+utMQ== + dependencies: + "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-tester" "^14.6.0" + "@textlint/ast-traverse" "^14.6.0" + "@textlint/feature-flag" "^14.6.0" + "@textlint/source-code-fixer" "^14.6.0" + "@textlint/types" "^14.6.0" + "@textlint/utils" "^14.6.0" debug "^4.4.0" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.5.0.tgz#7f3e0adf53453cb0d76bf109e274aa5f6585ae6f" - integrity sha512-qftHkBnyWEy2PmAhmhrmTemCKMJCpPKtFZt0woaa0yZkMwXo/RN66elnjAEJZenkRntQgphlKJJZ0I/NA2hH4g== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.6.0.tgz#6167a391bd8fe7ca9605f9f8f123b58ab899273e" + integrity sha512-T29IbY9cAupWBuds1DPl9TzS4oI2c0wVd0+0E43j5XezJKR3oE4e5/g9v4U2oo/LIbxDLlI22o3IGSyfUv3fFw== dependencies: - "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-node-types" "^14.6.0" debug "^4.4.0" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.5.0.tgz#e93100bfa20540142874fbbab83a8a2063077f09" - integrity sha512-zcokW+MBTppOzGumeB1SZvjDitCnO2sAZrWpmw849L6P11RdxS/iQXakg4jkRTTlWYR1AtzyAa9j0lLCdxsfuQ== +"@textlint/source-code-fixer@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.6.0.tgz#dc20975effa66400a599f7fbb4e603e59ea62e61" + integrity sha512-GbnKYQ91KHhg3XfiYAIe++E9UI0wsUZVGq3lzVUO9+nzJ4MUtUk1QpTmwP9+DYxnzi7w5jTcXHN6kh/zmHK4AA== dependencies: - "@textlint/types" "^14.5.0" + "@textlint/types" "^14.6.0" debug "^4.4.0" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.5.0.tgz#ddfa833fd3fb313b4e41c4f169fa81a4a506eb7b" - integrity sha512-e6SrPeCScmxxfTDpXo+nBh4tt6sbqySX/fE65sYVYupLwpJsCtxTEnYft2jEqifvgaM4JjgzETSQMG799HBTPw== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.6.0.tgz#62e4eb9d9cdac94d01d6167746a7fa9ca3a59452" + integrity sha512-1rNBbC8EfxxAk76jHCMrNduUd2CuaaXyAZvuSWzRM+Fx+YyTOelKEv9sppCWnThcD2A34KKlghHg40YH3CjriQ== dependencies: - "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-node-types" "^14.6.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.5.0.tgz#3b01ea7fa022be61f9b012e5347c8a9e15fd06c7" - integrity sha512-riMcW6Sj/IvTnIAA4W0O5pxJxdqth+MUe2li7wg8yCq3jilS0EYIlolNXvX414v/9swsLu8Tztwugrh0E6HJDw== + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.6.0.tgz#ac88d3be48f81bcfbe023435e33b962063c14c14" + integrity sha512-0W5wxWbDxAJoMe6ju2oq0IZ2ZX91JoWLHti+4LrPc9uiMx6CaTS/ZLYlu0hoYSk5DNQ75/bDD9wm78APM07zGA== dependencies: - "@textlint/markdown-to-ast" "^14.5.0" + "@textlint/markdown-to-ast" "^14.6.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.5.0.tgz#aa6684b112ace1b9a9d63bd2ced492417f6e7e8d" - integrity sha512-aASQwkRnupRlY9w168SBjrsDbO1wtg2EYx8JSnt/YboUnhszQD8Zys178Zu/00ECtpxwpjQYowoYNq0BoP9aig== + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.6.0.tgz#18eb9b20edcdf9d4c7974019531d9beee6adfd61" + integrity sha512-QglDssLXVBdjk4cVUI5nK9DJtJ6XjtdKGV7Ehgv202MEMvTktGa5mJlIv5tQK0O+zVpLWqVl4q9P76MASk/qOg== dependencies: - "@textlint/text-to-ast" "^14.5.0" + "@textlint/text-to-ast" "^14.6.0" -"@textlint/types@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.5.0.tgz#a9b47011094b1c8db850713986c0c2bfb17aea8f" - integrity sha512-z+oJS5GHK5KiV87ZNCYAQnZTgq1MRGl9g301GOV6Zq4RjH75JVQPNa4hUlwzG2sF6jks+wLhMjxwaQaG6cKCpA== +"@textlint/types@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.6.0.tgz#f48b5ba28cd8b78582ca6d359d88a2f3b9b31f95" + integrity sha512-XsK3FUdCtVNCe/aUz0TivpCzQchupcyOgNlRKt36AjDCEtqyPCOjpJxj1fmvYnTODG0M/4XKrlufn8onw+qWew== dependencies: - "@textlint/ast-node-types" "^14.5.0" + "@textlint/ast-node-types" "^14.6.0" -"@textlint/utils@^14.5.0": - version "14.5.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.5.0.tgz#10f72a6d41c74dc8d6d691f82c21625e28290b80" - integrity sha512-gAKZh1woc0IZGoVjQ8G8Og10dsBJ6UxaCFXofeHveWsZhJAdVzjw49/tJLVu/39t8GTdZQ4BAHuNxHNFgLN57w== +"@textlint/utils@^14.6.0": + version "14.6.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.6.0.tgz#74c1b45a06448333250266d7e714fb4419387a20" + integrity sha512-kQQg38c2wyWtbBnQ4zIGp4KrUmMmcZJKz2hrCn0z2kCMbDFpasTaG2EuteY1Szupl186fuMePGAGB6p7xeVsiQ== "@types/color-name@^1.1.1": version "1.1.1" From 88234e4d217a13a7616fe9a3102832ca75384e15 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 3 May 2025 10:46:42 +0000 Subject: [PATCH 35/51] fix(deps): update textlint to v14.7.1 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 2447c1df..87e7c914 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.6.0.tgz#3a61744a62d7089c8c8221104dfe4a62fe3d650b" - integrity sha512-PqWpzFa64M5uKqBSQPV8wPqo14zvmz5JXWIIUkVCMQ/gN8/8IrXjpsp0O+/To8u5D5woVpxihBi/3nJdR8E37g== +"@textlint/ast-node-types@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.7.1.tgz#8f2760a064753e5375009ed3d8e196f77dc8052f" + integrity sha512-7C/xYNZtaG+erIMjNZbRz7av9/S5eC+GAMh0rJ6A9Hik6nS4WyWKblutw2p+O2YWWT2tmOjzu/81fWzzDzmtRg== -"@textlint/ast-tester@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.6.0.tgz#d39931aa780974426006c6d855eb50aa125dfb6d" - integrity sha512-wGoNB35KA/LEWaGp5ccsUqQwNjygCDnkGxe8A8kCMURgM2KYTuCCItGMLrajm0T9BhNdQtK/ST6+EljTFERasA== +"@textlint/ast-tester@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.7.1.tgz#1ea916f9e51667023458430539a2abc79494d19b" + integrity sha512-WMXqBRsEaNJowPCASXOqKhu5zu+DL8I6u4R+j3gTHZiBZFXMCLVmBT6pY9ed1i2Owqzj7akYTqjaHJKagGLwxg== dependencies: - "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-node-types" "^14.7.1" debug "^4.4.0" -"@textlint/ast-traverse@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.6.0.tgz#3caaca8b31192957994db6b6f47bcbf0255beb44" - integrity sha512-BkfQ/bWfpO6FErrpYoUF+SzlPqJklxD+o6rs2TwSoqO2EMP5vAgIVdGJiTBjV4kxghTzq0w5UkMi9xtNZw1sUg== +"@textlint/ast-traverse@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.7.1.tgz#489e5446cb94ce096f1127c421a4ad99c37802e5" + integrity sha512-E9uflmEmr9bUbnX5W+KXoH4c2o5Bu6aimeqadIAixkVjVcYFKL7XJ44HJJx/Ern6hcSSYlbIPHjScjAMTT/kqQ== dependencies: - "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-node-types" "^14.7.1" -"@textlint/feature-flag@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.6.0.tgz#865cf2c20cfe911b821b982d9cbdd63fe2438ba2" - integrity sha512-WmmFHEt71rtSk2ZjcvrLJPN6dKYtYwC8fAFZcnjw15h80Di7wuw7vrpW85udloq+XYDlJ5GnhumDX5yZ4mt4Ug== +"@textlint/feature-flag@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.7.1.tgz#5e0d0231bc26bd63fc29d9548c0d1050d289e9f4" + integrity sha512-yuwNOVPiwDRg+rL0uXzqo9q6g+Ac2T+TETU7RuMxPBlSQWak98I4c8NbjL+aWzL7xj5bZJw5q9MIlOk1jRxl2g== "@textlint/kernel@^14.0.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.6.0.tgz#8ea028459f5e64041c645fd4e00ef765e7f3ec3d" - integrity sha512-Mf8cikqVDHdf0RgjSYxs/G1a+I5UK5GjM+ehc67zSF/vtFUaLRn5bkWcEKrWQ67mjrM24tqH46oqVM9RL+utMQ== - dependencies: - "@textlint/ast-node-types" "^14.6.0" - "@textlint/ast-tester" "^14.6.0" - "@textlint/ast-traverse" "^14.6.0" - "@textlint/feature-flag" "^14.6.0" - "@textlint/source-code-fixer" "^14.6.0" - "@textlint/types" "^14.6.0" - "@textlint/utils" "^14.6.0" + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.7.1.tgz#64729fb15567a1c6dee594d89bc91e3768863f41" + integrity sha512-aRzw6jdU3UPKxZpeZtM98OBjx0gGUK1QP3RrNBaLSqKOeSn8q2NkfApVIldBV9oQ+z1Drwmati8Pf3xSExTYew== + dependencies: + "@textlint/ast-node-types" "^14.7.1" + "@textlint/ast-tester" "^14.7.1" + "@textlint/ast-traverse" "^14.7.1" + "@textlint/feature-flag" "^14.7.1" + "@textlint/source-code-fixer" "^14.7.1" + "@textlint/types" "^14.7.1" + "@textlint/utils" "^14.7.1" debug "^4.4.0" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.6.0.tgz#6167a391bd8fe7ca9605f9f8f123b58ab899273e" - integrity sha512-T29IbY9cAupWBuds1DPl9TzS4oI2c0wVd0+0E43j5XezJKR3oE4e5/g9v4U2oo/LIbxDLlI22o3IGSyfUv3fFw== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.7.1.tgz#1553633ad9e50255195990935c0d68d6bb843c56" + integrity sha512-aKIJi1FZj8PYr/n9EYFsifofT2XNPDX9E/24PiFMNBjiOfovCayOpfn6iuqNEo3CEPx7w4d20rQOUnxD+GYzhg== dependencies: - "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-node-types" "^14.7.1" debug "^4.4.0" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.6.0.tgz#dc20975effa66400a599f7fbb4e603e59ea62e61" - integrity sha512-GbnKYQ91KHhg3XfiYAIe++E9UI0wsUZVGq3lzVUO9+nzJ4MUtUk1QpTmwP9+DYxnzi7w5jTcXHN6kh/zmHK4AA== +"@textlint/source-code-fixer@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.7.1.tgz#7a73d637ab580750fe7eb109ad341ed594832f6c" + integrity sha512-2teYM26+mwFhKaPKYiKjTH3gInjBFJRMPrd2t+WO8NkZnVCrCq0IdWNJYAP34zBd1JLgXAK0EL93Mo+RPwCtcQ== dependencies: - "@textlint/types" "^14.6.0" + "@textlint/types" "^14.7.1" debug "^4.4.0" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.6.0.tgz#62e4eb9d9cdac94d01d6167746a7fa9ca3a59452" - integrity sha512-1rNBbC8EfxxAk76jHCMrNduUd2CuaaXyAZvuSWzRM+Fx+YyTOelKEv9sppCWnThcD2A34KKlghHg40YH3CjriQ== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.7.1.tgz#8ea402af720deaf85f6a9c503aa0e85991f2ca15" + integrity sha512-sSyWYdsX407xMiTKqnB5xWW4ft9SyxwFW2sY3Cpl0emoH5x1CLiYnxpW8uLIN/eFWiSzQlKU9UpyHFfozSC3Ag== dependencies: - "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-node-types" "^14.7.1" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.6.0.tgz#ac88d3be48f81bcfbe023435e33b962063c14c14" - integrity sha512-0W5wxWbDxAJoMe6ju2oq0IZ2ZX91JoWLHti+4LrPc9uiMx6CaTS/ZLYlu0hoYSk5DNQ75/bDD9wm78APM07zGA== + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.7.1.tgz#6a5dafad56626dfd2a6460d5acfdade7a71d588c" + integrity sha512-FnxwOOvvkIZ7HPV4gV0ZU6mA+G6LhA5QdspUqXAqTPQ0SY7X95PfQYbzk8Yz4RNyXFMhIcviKLO4+eSyBBTSuw== dependencies: - "@textlint/markdown-to-ast" "^14.6.0" + "@textlint/markdown-to-ast" "^14.7.1" "@textlint/textlint-plugin-text@^14.0.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.6.0.tgz#18eb9b20edcdf9d4c7974019531d9beee6adfd61" - integrity sha512-QglDssLXVBdjk4cVUI5nK9DJtJ6XjtdKGV7Ehgv202MEMvTktGa5mJlIv5tQK0O+zVpLWqVl4q9P76MASk/qOg== + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.7.1.tgz#9e6945193926bf0dd2dffeb27867f9b5aa461db5" + integrity sha512-Cq1pmUWU95W2cYpXr9GDkKm5RN5XAPwVThFeMtj6RE4bCS+qqH/2O08yhUobKo0ryKb7j1zzBi/QdQ2U34YwvQ== dependencies: - "@textlint/text-to-ast" "^14.6.0" + "@textlint/text-to-ast" "^14.7.1" -"@textlint/types@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.6.0.tgz#f48b5ba28cd8b78582ca6d359d88a2f3b9b31f95" - integrity sha512-XsK3FUdCtVNCe/aUz0TivpCzQchupcyOgNlRKt36AjDCEtqyPCOjpJxj1fmvYnTODG0M/4XKrlufn8onw+qWew== +"@textlint/types@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.7.1.tgz#0726de7ed2e6c59a9c40ef94445ddd52d2a02b9a" + integrity sha512-j10OEEHRAaqGMC6dK3+H1Eg3bksASGTmGDozsSepYs7qInY+lYBCe5m3JTrKkDnAX4nNy8ninnKzrYKcVkWahw== dependencies: - "@textlint/ast-node-types" "^14.6.0" + "@textlint/ast-node-types" "^14.7.1" -"@textlint/utils@^14.6.0": - version "14.6.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.6.0.tgz#74c1b45a06448333250266d7e714fb4419387a20" - integrity sha512-kQQg38c2wyWtbBnQ4zIGp4KrUmMmcZJKz2hrCn0z2kCMbDFpasTaG2EuteY1Szupl186fuMePGAGB6p7xeVsiQ== +"@textlint/utils@^14.7.1": + version "14.7.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.7.1.tgz#ee8c02f1d679b6622b160701f4391fb819e9936e" + integrity sha512-nvIOltt0U5HQzu28qfYgbXUvZxEZBPRnQZHqlwMsqKp55bZ5L3iSNYwHvCej7fm9GOXH7Yz3UzLSko9eF5m3PA== "@types/color-name@^1.1.1": version "1.1.1" From e9c5e04b9ad34103506cc7555e233771e3d5d6de Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 22:00:13 +0000 Subject: [PATCH 36/51] fix(deps): update textlint to v14.8.0 --- website/yarn.lock | 138 +++++++++++++++++++++++----------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 87e7c914..75938d88 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,54 +1331,54 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.7.1.tgz#8f2760a064753e5375009ed3d8e196f77dc8052f" - integrity sha512-7C/xYNZtaG+erIMjNZbRz7av9/S5eC+GAMh0rJ6A9Hik6nS4WyWKblutw2p+O2YWWT2tmOjzu/81fWzzDzmtRg== +"@textlint/ast-node-types@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.8.0.tgz#cc59d5fe75ac8b5a2733313f13a5c15fb0b58220" + integrity sha512-CARGqRSX+DhHdSYssa6+Yb0KAk5cGPDOgKbJo/H8djJAmw7qNzo/oYbuYZlO/fqmUbZjZcvI/6QgCxa/78Nxew== -"@textlint/ast-tester@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.7.1.tgz#1ea916f9e51667023458430539a2abc79494d19b" - integrity sha512-WMXqBRsEaNJowPCASXOqKhu5zu+DL8I6u4R+j3gTHZiBZFXMCLVmBT6pY9ed1i2Owqzj7akYTqjaHJKagGLwxg== +"@textlint/ast-tester@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.8.0.tgz#26b618532598fc4e9c780c48c249a0332c5d9e0a" + integrity sha512-nRsgHmY+O7OhCYwGyWze+8mhnTYfCPFYTvuF3mCE5nQrfO9y2anvdjj2Yf6FU7OZI7qxp/R7MWYkiIQb/WEfHQ== dependencies: - "@textlint/ast-node-types" "^14.7.1" - debug "^4.4.0" + "@textlint/ast-node-types" "^14.8.0" + debug "^4.4.1" -"@textlint/ast-traverse@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.7.1.tgz#489e5446cb94ce096f1127c421a4ad99c37802e5" - integrity sha512-E9uflmEmr9bUbnX5W+KXoH4c2o5Bu6aimeqadIAixkVjVcYFKL7XJ44HJJx/Ern6hcSSYlbIPHjScjAMTT/kqQ== +"@textlint/ast-traverse@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.8.0.tgz#4bbccc1fd935ede73d461f8ddf245ad13633b91a" + integrity sha512-/u1SiIVnRFm1D/pglLtaP0QJND7UAo8axrUfaikFJZ67ciiguu17/yB0VBMbx9iZn5bmeUHH1NicgCnuirvvJg== dependencies: - "@textlint/ast-node-types" "^14.7.1" + "@textlint/ast-node-types" "^14.8.0" -"@textlint/feature-flag@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.7.1.tgz#5e0d0231bc26bd63fc29d9548c0d1050d289e9f4" - integrity sha512-yuwNOVPiwDRg+rL0uXzqo9q6g+Ac2T+TETU7RuMxPBlSQWak98I4c8NbjL+aWzL7xj5bZJw5q9MIlOk1jRxl2g== +"@textlint/feature-flag@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.8.0.tgz#65c3a75f80635101968327aff2c6ea991cd59280" + integrity sha512-cmqPYs1EUYC/5YE8pd70ODrtHCeumR5kamK+CuNj2tS2lDPJ55XJt2I+UnX0SqyRATdl7Yp7OizLfZ5xrtAlUQ== "@textlint/kernel@^14.0.0": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.7.1.tgz#64729fb15567a1c6dee594d89bc91e3768863f41" - integrity sha512-aRzw6jdU3UPKxZpeZtM98OBjx0gGUK1QP3RrNBaLSqKOeSn8q2NkfApVIldBV9oQ+z1Drwmati8Pf3xSExTYew== - dependencies: - "@textlint/ast-node-types" "^14.7.1" - "@textlint/ast-tester" "^14.7.1" - "@textlint/ast-traverse" "^14.7.1" - "@textlint/feature-flag" "^14.7.1" - "@textlint/source-code-fixer" "^14.7.1" - "@textlint/types" "^14.7.1" - "@textlint/utils" "^14.7.1" - debug "^4.4.0" + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.8.0.tgz#3de3286f7663bb69c35f3ecaf02b656d7b96a2b3" + integrity sha512-AUy2qK7Z1pWBwtHjb3kdCwKjPo6M5SuS+e/Homvn77oUKXJVtJi4+HpDvVxTRZjW37LtYxIr/CyNhhNN8HAu4Q== + dependencies: + "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-tester" "^14.8.0" + "@textlint/ast-traverse" "^14.8.0" + "@textlint/feature-flag" "^14.8.0" + "@textlint/source-code-fixer" "^14.8.0" + "@textlint/types" "^14.8.0" + "@textlint/utils" "^14.8.0" + debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.7.1.tgz#1553633ad9e50255195990935c0d68d6bb843c56" - integrity sha512-aKIJi1FZj8PYr/n9EYFsifofT2XNPDX9E/24PiFMNBjiOfovCayOpfn6iuqNEo3CEPx7w4d20rQOUnxD+GYzhg== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.8.0.tgz#30c37abc9712fe46a44ed36a5379f56af449d683" + integrity sha512-KxvogGH8BPfR4eP5TNlRiR7KcPWzFjk1k8TX0WBnqWTzQeYbDYulYslVyiq06qc1NkTHvpK34zbS8UWZyzIQKA== dependencies: - "@textlint/ast-node-types" "^14.7.1" - debug "^4.4.0" + "@textlint/ast-node-types" "^14.8.0" + debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" remark-footnotes "^3.0.0" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.7.1.tgz#7a73d637ab580750fe7eb109ad341ed594832f6c" - integrity sha512-2teYM26+mwFhKaPKYiKjTH3gInjBFJRMPrd2t+WO8NkZnVCrCq0IdWNJYAP34zBd1JLgXAK0EL93Mo+RPwCtcQ== +"@textlint/source-code-fixer@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.8.0.tgz#bcce6a3f4d6ae7db81a059939ffedae1abff670a" + integrity sha512-/BtG3IRpmUG3A0Pr2wra2uY0d4sjmESeJlYn++ZlP8eYNYM9jotWsdb9K+fa1jMX4OzozKv1nOewhSfo/AD6Cw== dependencies: - "@textlint/types" "^14.7.1" - debug "^4.4.0" + "@textlint/types" "^14.8.0" + debug "^4.4.1" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.7.1.tgz#8ea402af720deaf85f6a9c503aa0e85991f2ca15" - integrity sha512-sSyWYdsX407xMiTKqnB5xWW4ft9SyxwFW2sY3Cpl0emoH5x1CLiYnxpW8uLIN/eFWiSzQlKU9UpyHFfozSC3Ag== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.8.0.tgz#edaa08020634158027767cdc60d8d17e3b6116b1" + integrity sha512-/U8k2Y6azqeKJnEJej2b8dylqKZw4tSqsOlfeI82qslDEjjdtseuzbLz7Z0X/VgWmbnqxrt1y/ZsLaThhOntuQ== dependencies: - "@textlint/ast-node-types" "^14.7.1" + "@textlint/ast-node-types" "^14.8.0" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.7.1.tgz#6a5dafad56626dfd2a6460d5acfdade7a71d588c" - integrity sha512-FnxwOOvvkIZ7HPV4gV0ZU6mA+G6LhA5QdspUqXAqTPQ0SY7X95PfQYbzk8Yz4RNyXFMhIcviKLO4+eSyBBTSuw== + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.8.0.tgz#6bdbea4cb818242fed6c66ad38796b505d966252" + integrity sha512-BDjcoBfv+Vxg83/GrTg9XK4wKIuZb7x85gLmRqlsy48Lj5l++AIk5qe/iL1hI38PDr8IfY8JRYvfMpyn+KGuNA== dependencies: - "@textlint/markdown-to-ast" "^14.7.1" + "@textlint/markdown-to-ast" "^14.8.0" "@textlint/textlint-plugin-text@^14.0.0": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.7.1.tgz#9e6945193926bf0dd2dffeb27867f9b5aa461db5" - integrity sha512-Cq1pmUWU95W2cYpXr9GDkKm5RN5XAPwVThFeMtj6RE4bCS+qqH/2O08yhUobKo0ryKb7j1zzBi/QdQ2U34YwvQ== + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.8.0.tgz#c12ac6a44d7df25a2e7be72b6269d46af5d09056" + integrity sha512-fg2382TsRL7FiWxatvr3VNyjIQqMTRIqFkuPjBSb8HjC5xabi5s2ZU8Z0O58SBN9YWpihcTP+N84W5l5iU784g== dependencies: - "@textlint/text-to-ast" "^14.7.1" + "@textlint/text-to-ast" "^14.8.0" -"@textlint/types@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.7.1.tgz#0726de7ed2e6c59a9c40ef94445ddd52d2a02b9a" - integrity sha512-j10OEEHRAaqGMC6dK3+H1Eg3bksASGTmGDozsSepYs7qInY+lYBCe5m3JTrKkDnAX4nNy8ninnKzrYKcVkWahw== +"@textlint/types@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.8.0.tgz#b48cc0f43857ccfaa824578d973960899b1bbf2d" + integrity sha512-Lsq2gxh2pmCKV6KN4fL70DMNNGuZlPuDQ0RHLU59/wgUs5krzrpHWCRYHK4M4J45U1PfZzQnWvLIfFETlR9GPA== dependencies: - "@textlint/ast-node-types" "^14.7.1" + "@textlint/ast-node-types" "^14.8.0" -"@textlint/utils@^14.7.1": - version "14.7.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.7.1.tgz#ee8c02f1d679b6622b160701f4391fb819e9936e" - integrity sha512-nvIOltt0U5HQzu28qfYgbXUvZxEZBPRnQZHqlwMsqKp55bZ5L3iSNYwHvCej7fm9GOXH7Yz3UzLSko9eF5m3PA== +"@textlint/utils@^14.8.0": + version "14.8.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.8.0.tgz#d9bfad7f304ecfec9e198451b507846b89a25728" + integrity sha512-ZYZuyPl7EW1Tio/jfjf92MFgPwrQ6nklir5uCJAwrdl9Me/9rL7l3n8HlFHc8Z7dPNeqUbDuOLgoS+74coZplA== "@types/color-name@^1.1.1": version "1.1.1" @@ -4308,10 +4308,10 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" - integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== +debug@^4.0.0, debug@^4.4.1: + version "4.4.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b" + integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== dependencies: ms "^2.1.3" From 8892c9e50ed68d832520414a21d50b599980b2f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 14 Jun 2025 06:00:14 +0000 Subject: [PATCH 37/51] fix(deps): update textlint to v14.8.1 --- website/yarn.lock | 122 +++++++++++++++++++++++----------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 75938d88..2328bead 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1331,53 +1331,53 @@ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.8.0.tgz#cc59d5fe75ac8b5a2733313f13a5c15fb0b58220" - integrity sha512-CARGqRSX+DhHdSYssa6+Yb0KAk5cGPDOgKbJo/H8djJAmw7qNzo/oYbuYZlO/fqmUbZjZcvI/6QgCxa/78Nxew== +"@textlint/ast-node-types@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.8.1.tgz#62aed41cf419e05c72a83bf8eb90f56e49bb4cc2" + integrity sha512-fW5Tx5F3ZmTZeKNins9uRhoDCVLHcuUijGNQRfCmJX8R6MjL0yBFt3hHlrvXDpZg5t2PELCvBA25id83LhNMSg== -"@textlint/ast-tester@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.8.0.tgz#26b618532598fc4e9c780c48c249a0332c5d9e0a" - integrity sha512-nRsgHmY+O7OhCYwGyWze+8mhnTYfCPFYTvuF3mCE5nQrfO9y2anvdjj2Yf6FU7OZI7qxp/R7MWYkiIQb/WEfHQ== +"@textlint/ast-tester@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.8.1.tgz#741475b330feaf05b4efcf1a08f67f4e317839d1" + integrity sha512-3Gs/Y6QZQC9klGhTeaESCdGshQntQ6R/KWBcQGtLTg8IJ8vSQHy2ryk2bBOY5rC33myhnnNadv51KtmScdrOPw== dependencies: - "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-node-types" "^14.8.1" debug "^4.4.1" -"@textlint/ast-traverse@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.8.0.tgz#4bbccc1fd935ede73d461f8ddf245ad13633b91a" - integrity sha512-/u1SiIVnRFm1D/pglLtaP0QJND7UAo8axrUfaikFJZ67ciiguu17/yB0VBMbx9iZn5bmeUHH1NicgCnuirvvJg== +"@textlint/ast-traverse@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.8.1.tgz#ce1b52e9d0f66c367d5bbb420e2830df7fadc7cd" + integrity sha512-uECyp3kPQq2WCzbK6TEdFThWb4Wi9aGnn9Iu/v/gyilnz/NLE8C8WtEHvxul+NhXsj8kOYVRnhscGnaIsW8vpw== dependencies: - "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-node-types" "^14.8.1" -"@textlint/feature-flag@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.8.0.tgz#65c3a75f80635101968327aff2c6ea991cd59280" - integrity sha512-cmqPYs1EUYC/5YE8pd70ODrtHCeumR5kamK+CuNj2tS2lDPJ55XJt2I+UnX0SqyRATdl7Yp7OizLfZ5xrtAlUQ== +"@textlint/feature-flag@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.8.1.tgz#d4f0a65c468d061492d674b544e1990ea0e3a7e4" + integrity sha512-8Gn3Dy5HuPWHesZB1FBNbZ/bCJy5aeUJ73zE3hBC3jCtpNGpcq3QJENMC40XxS+rMWt2qot8bB1sa190/hgJUg== "@textlint/kernel@^14.0.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.8.0.tgz#3de3286f7663bb69c35f3ecaf02b656d7b96a2b3" - integrity sha512-AUy2qK7Z1pWBwtHjb3kdCwKjPo6M5SuS+e/Homvn77oUKXJVtJi4+HpDvVxTRZjW37LtYxIr/CyNhhNN8HAu4Q== - dependencies: - "@textlint/ast-node-types" "^14.8.0" - "@textlint/ast-tester" "^14.8.0" - "@textlint/ast-traverse" "^14.8.0" - "@textlint/feature-flag" "^14.8.0" - "@textlint/source-code-fixer" "^14.8.0" - "@textlint/types" "^14.8.0" - "@textlint/utils" "^14.8.0" + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.8.1.tgz#9e45c8a607a73f737d215d27abd087a25eebf9b1" + integrity sha512-3lDjIKqfWltUg+swyHeX8ui5ucttSIkAK1F1PHP+Cn8+hLyRxW8NxFQM+u7whTi+dAPmlQqevrur8tIfjEPAaA== + dependencies: + "@textlint/ast-node-types" "^14.8.1" + "@textlint/ast-tester" "^14.8.1" + "@textlint/ast-traverse" "^14.8.1" + "@textlint/feature-flag" "^14.8.1" + "@textlint/source-code-fixer" "^14.8.1" + "@textlint/types" "^14.8.1" + "@textlint/utils" "^14.8.1" debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.8.0.tgz#30c37abc9712fe46a44ed36a5379f56af449d683" - integrity sha512-KxvogGH8BPfR4eP5TNlRiR7KcPWzFjk1k8TX0WBnqWTzQeYbDYulYslVyiq06qc1NkTHvpK34zbS8UWZyzIQKA== +"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.8.1.tgz#e22116431570e3a451c97a21bb2914653e87e618" + integrity sha512-3zHMYRDHWFoIjTzj8bALdkl2yobvfNVkvLOCdmHUkAY4SgwoB1ion0CQpoQ0ePrKke7UVfkr7zvJUfmWRp0lKA== dependencies: - "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-node-types" "^14.8.1" debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.15" @@ -1387,46 +1387,46 @@ remark-parse "^9.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.8.0.tgz#bcce6a3f4d6ae7db81a059939ffedae1abff670a" - integrity sha512-/BtG3IRpmUG3A0Pr2wra2uY0d4sjmESeJlYn++ZlP8eYNYM9jotWsdb9K+fa1jMX4OzozKv1nOewhSfo/AD6Cw== +"@textlint/source-code-fixer@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.8.1.tgz#2ee17739edafaf104d34872f9fb247db0d9f124f" + integrity sha512-4mAdHH+C+5XOreqZ0Jb6/Allpw+uxo9OY4K5swZv8dq08DdJw4v6oqMcZoLa0dG/640pTLfpYMkA9F2VXNIKZA== dependencies: - "@textlint/types" "^14.8.0" + "@textlint/types" "^14.8.1" debug "^4.4.1" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.8.0.tgz#edaa08020634158027767cdc60d8d17e3b6116b1" - integrity sha512-/U8k2Y6azqeKJnEJej2b8dylqKZw4tSqsOlfeI82qslDEjjdtseuzbLz7Z0X/VgWmbnqxrt1y/ZsLaThhOntuQ== +"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.8.1.tgz#0dc78b00c4fa0e8e386fa2eaca1d8a7603d78d8b" + integrity sha512-D337EBWjvUnxyeovREXq52pDfwz37DhyQRDbof/dqPFzIlweqSoXuYD2s9a/kT/KtD2f3paNUqLrcBYOSPotWw== dependencies: - "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-node-types" "^14.8.1" "@textlint/textlint-plugin-markdown@^14.0.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.8.0.tgz#6bdbea4cb818242fed6c66ad38796b505d966252" - integrity sha512-BDjcoBfv+Vxg83/GrTg9XK4wKIuZb7x85gLmRqlsy48Lj5l++AIk5qe/iL1hI38PDr8IfY8JRYvfMpyn+KGuNA== + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.8.1.tgz#e01896b57d7134a8cd27237ad5f3d95fde27a703" + integrity sha512-t6okCas3o/HvKQLHK8/cD15m3XnOnsxJEW1PFkBKuLoqtWt1tXOb3kW1AHcumW0kdHD7ZvwRNyUrOmhuCHXxww== dependencies: - "@textlint/markdown-to-ast" "^14.8.0" + "@textlint/markdown-to-ast" "^14.8.1" "@textlint/textlint-plugin-text@^14.0.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.8.0.tgz#c12ac6a44d7df25a2e7be72b6269d46af5d09056" - integrity sha512-fg2382TsRL7FiWxatvr3VNyjIQqMTRIqFkuPjBSb8HjC5xabi5s2ZU8Z0O58SBN9YWpihcTP+N84W5l5iU784g== + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.8.1.tgz#f31e3d9e2d29296c5e3d30280e122b7f38f691be" + integrity sha512-w5fm62kbzWv6KJw/bm2gVloi9A4XWIya416B4A3Og6fADPdG/YbWp0dvUynnJSw0GPYKKna6u+dc9SgdOUNcBg== dependencies: - "@textlint/text-to-ast" "^14.8.0" + "@textlint/text-to-ast" "^14.8.1" -"@textlint/types@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.8.0.tgz#b48cc0f43857ccfaa824578d973960899b1bbf2d" - integrity sha512-Lsq2gxh2pmCKV6KN4fL70DMNNGuZlPuDQ0RHLU59/wgUs5krzrpHWCRYHK4M4J45U1PfZzQnWvLIfFETlR9GPA== +"@textlint/types@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.8.1.tgz#860614a5c63545e10c3a7a69398375ce92785805" + integrity sha512-8ncGYcEoKLE3JP2s9+2IlxMbMLWpNmvptOZmF3qI188vW3g/a00r3hBRNMcKxJg3phYDtgLOyXdv44/jwJxsLw== dependencies: - "@textlint/ast-node-types" "^14.8.0" + "@textlint/ast-node-types" "^14.8.1" -"@textlint/utils@^14.8.0": - version "14.8.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.8.0.tgz#d9bfad7f304ecfec9e198451b507846b89a25728" - integrity sha512-ZYZuyPl7EW1Tio/jfjf92MFgPwrQ6nklir5uCJAwrdl9Me/9rL7l3n8HlFHc8Z7dPNeqUbDuOLgoS+74coZplA== +"@textlint/utils@^14.8.1": + version "14.8.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.8.1.tgz#f7fda2feb7145fdf45bba04996c67d1362cb2d94" + integrity sha512-EcUFmmzfHB/+cLtK1Rv1M3zmOUuUChAYMahGgKhSErreP3bpIxBm6uOZrgpq/cXKp23pLa2QkChpV4WqXrGG1g== "@types/color-name@^1.1.1": version "1.1.1" From 69036a731868c951c84869fb44a148b72e8d9bcd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Jun 2025 17:02:39 +0000 Subject: [PATCH 38/51] fix(deps): update textlint to v15 --- website/package.json | 10 +-- website/yarn.lock | 143 ++++++++++++++++++++++--------------------- 2 files changed, 78 insertions(+), 75 deletions(-) diff --git a/website/package.json b/website/package.json index 7e17db0a..296a5310 100644 --- a/website/package.json +++ b/website/package.json @@ -53,11 +53,11 @@ "@glimmer/syntax": "^0.73.1", "@humanwhocodes/momoa": "^1.0.0", "@mdx-js/mdx": "^1.5.8", - "@textlint/kernel": "^14.0.0", - "@textlint/markdown-to-ast": "^14.0.0", - "@textlint/text-to-ast": "^14.0.0", - "@textlint/textlint-plugin-markdown": "^14.0.0", - "@textlint/textlint-plugin-text": "^14.0.0", + "@textlint/kernel": "^15.0.0", + "@textlint/markdown-to-ast": "^15.0.0", + "@textlint/text-to-ast": "^15.0.0", + "@textlint/textlint-plugin-markdown": "^15.0.0", + "@textlint/textlint-plugin-text": "^15.0.0", "@typescript-eslint/parser": "^4.1.0", "@vue/compiler-dom": "^3.0.0-rc.10", "@webassemblyjs/wast-parser": "^1.9.0", diff --git a/website/yarn.lock b/website/yarn.lock index 2328bead..5715a1d9 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,107 +1326,110 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== +"@textlint/ast-node-types@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.0.0.tgz#0c12cbb1a99e4fd774cc69168786560e7faacd96" + integrity sha512-0yY8PgN5vGMTLGZex2CQsc/nCcr4xB/Y0xum//XdomwVotpULpl3F2wuCI6k1ksiS7ZOgYhBRt+jpLdhPIXMZA== + "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-node-types@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-14.8.1.tgz#62aed41cf419e05c72a83bf8eb90f56e49bb4cc2" - integrity sha512-fW5Tx5F3ZmTZeKNins9uRhoDCVLHcuUijGNQRfCmJX8R6MjL0yBFt3hHlrvXDpZg5t2PELCvBA25id83LhNMSg== - -"@textlint/ast-tester@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-14.8.1.tgz#741475b330feaf05b4efcf1a08f67f4e317839d1" - integrity sha512-3Gs/Y6QZQC9klGhTeaESCdGshQntQ6R/KWBcQGtLTg8IJ8vSQHy2ryk2bBOY5rC33myhnnNadv51KtmScdrOPw== +"@textlint/ast-tester@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.0.0.tgz#bf6d6dfcac33213b8b1eb3426c692df762b17e59" + integrity sha512-WZauQLMD+/0Awkhh0p60j7UdjQWzcPECCDFyQMpCaLZSgKnG8+KYnpHQgqlLU7ghPoP3zUgux5qv6J5lZZnBTQ== dependencies: - "@textlint/ast-node-types" "^14.8.1" + "@textlint/ast-node-types" "15.0.0" debug "^4.4.1" -"@textlint/ast-traverse@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-14.8.1.tgz#ce1b52e9d0f66c367d5bbb420e2830df7fadc7cd" - integrity sha512-uECyp3kPQq2WCzbK6TEdFThWb4Wi9aGnn9Iu/v/gyilnz/NLE8C8WtEHvxul+NhXsj8kOYVRnhscGnaIsW8vpw== - dependencies: - "@textlint/ast-node-types" "^14.8.1" - -"@textlint/feature-flag@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-14.8.1.tgz#d4f0a65c468d061492d674b544e1990ea0e3a7e4" - integrity sha512-8Gn3Dy5HuPWHesZB1FBNbZ/bCJy5aeUJ73zE3hBC3jCtpNGpcq3QJENMC40XxS+rMWt2qot8bB1sa190/hgJUg== - -"@textlint/kernel@^14.0.0": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-14.8.1.tgz#9e45c8a607a73f737d215d27abd087a25eebf9b1" - integrity sha512-3lDjIKqfWltUg+swyHeX8ui5ucttSIkAK1F1PHP+Cn8+hLyRxW8NxFQM+u7whTi+dAPmlQqevrur8tIfjEPAaA== - dependencies: - "@textlint/ast-node-types" "^14.8.1" - "@textlint/ast-tester" "^14.8.1" - "@textlint/ast-traverse" "^14.8.1" - "@textlint/feature-flag" "^14.8.1" - "@textlint/source-code-fixer" "^14.8.1" - "@textlint/types" "^14.8.1" - "@textlint/utils" "^14.8.1" +"@textlint/ast-traverse@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.0.0.tgz#55a032d8df74fd5a65093ca51ddce3172f1ac77b" + integrity sha512-RK2Vz7bwqUpGzN1pCV7r5SRa+22apSVFZqhVCWzK/9Wgd5w4KB8EyboS/LkjDDhKUR4WebtihNoZOwCfPZVgoA== + dependencies: + "@textlint/ast-node-types" "15.0.0" + +"@textlint/feature-flag@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.0.0.tgz#261e531db44650794f3c416c41fce1c8f107d128" + integrity sha512-eZJFBSLdChu0Y6DwpC5e330zSuaZs+iq4hTPduc3hNYK1GT3AsyKdaALpgfZ47SSEv3ucjacvbz+dVIXq9H/Aw== + +"@textlint/kernel@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.0.0.tgz#87b1b556cccfb9ed6fe2cbba942db23c0c949747" + integrity sha512-90rCSEfUdwZKrMPytCIeWeLlH621s6YKdB2s2OJErm9HVxSZD3PgT43DUiidHhIXKs1mx+HI24vYxPTf89gX/g== + dependencies: + "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-tester" "15.0.0" + "@textlint/ast-traverse" "15.0.0" + "@textlint/feature-flag" "15.0.0" + "@textlint/source-code-fixer" "15.0.0" + "@textlint/types" "15.0.0" + "@textlint/utils" "15.0.0" debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@^14.0.0", "@textlint/markdown-to-ast@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-14.8.1.tgz#e22116431570e3a451c97a21bb2914653e87e618" - integrity sha512-3zHMYRDHWFoIjTzj8bALdkl2yobvfNVkvLOCdmHUkAY4SgwoB1ion0CQpoQ0ePrKke7UVfkr7zvJUfmWRp0lKA== +"@textlint/markdown-to-ast@15.0.0", "@textlint/markdown-to-ast@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.0.0.tgz#f3545d6f033cb8efb30367a698281e02d5ddf260" + integrity sha512-YUYzWBA3yXjZ0Rdi4fPEGtlBC9FiOZR88iCi38LyAPUwPVcgtSBKdIqNJqEKks5M9rBoN92GdrxXaOFULEfS/Q== dependencies: - "@textlint/ast-node-types" "^14.8.1" + "@textlint/ast-node-types" "15.0.0" debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" - neotraverse "^0.6.15" + neotraverse "^0.6.18" remark-footnotes "^3.0.0" remark-frontmatter "^3.0.0" remark-gfm "^1.0.0" remark-parse "^9.0.0" + structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-14.8.1.tgz#2ee17739edafaf104d34872f9fb247db0d9f124f" - integrity sha512-4mAdHH+C+5XOreqZ0Jb6/Allpw+uxo9OY4K5swZv8dq08DdJw4v6oqMcZoLa0dG/640pTLfpYMkA9F2VXNIKZA== +"@textlint/source-code-fixer@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.0.0.tgz#98fc5ac69015ee27e681fc295d5b0bf19ac93641" + integrity sha512-uZxWybKuNHN64yKehTxcERUa3XeuhbeoJs8HaCOfH5pidRCDEnRiiGmQDXROHXlyDKfs+ZcLVSy8zh6M/gf4Bg== dependencies: - "@textlint/types" "^14.8.1" + "@textlint/types" "15.0.0" debug "^4.4.1" -"@textlint/text-to-ast@^14.0.0", "@textlint/text-to-ast@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-14.8.1.tgz#0dc78b00c4fa0e8e386fa2eaca1d8a7603d78d8b" - integrity sha512-D337EBWjvUnxyeovREXq52pDfwz37DhyQRDbof/dqPFzIlweqSoXuYD2s9a/kT/KtD2f3paNUqLrcBYOSPotWw== +"@textlint/text-to-ast@15.0.0", "@textlint/text-to-ast@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.0.0.tgz#db5624c0f8506a5f370ef7087954a2ebc764246b" + integrity sha512-N6MZf22lwcFBSuzEz7Zg+e5JWYNQSuXzz+9dRXXH7Cyk86EimZ3GPnI1eGHNX1+rOjY48PQ99Uv5r2TZVsjGog== dependencies: - "@textlint/ast-node-types" "^14.8.1" + "@textlint/ast-node-types" "15.0.0" -"@textlint/textlint-plugin-markdown@^14.0.0": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-14.8.1.tgz#e01896b57d7134a8cd27237ad5f3d95fde27a703" - integrity sha512-t6okCas3o/HvKQLHK8/cD15m3XnOnsxJEW1PFkBKuLoqtWt1tXOb3kW1AHcumW0kdHD7ZvwRNyUrOmhuCHXxww== +"@textlint/textlint-plugin-markdown@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.0.0.tgz#c8cdd7f28f800b3868513a97cb3d92f40b39d159" + integrity sha512-ezm/bt2FXNKyf1IQ1x8eqX7MHqHzGOqoPNH23MNOVv/MhEScocs8CbMzBBk2MKb8EhurlwzvQSHgDoRLDXwK5Q== dependencies: - "@textlint/markdown-to-ast" "^14.8.1" + "@textlint/markdown-to-ast" "15.0.0" + "@textlint/types" "15.0.0" -"@textlint/textlint-plugin-text@^14.0.0": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-14.8.1.tgz#f31e3d9e2d29296c5e3d30280e122b7f38f691be" - integrity sha512-w5fm62kbzWv6KJw/bm2gVloi9A4XWIya416B4A3Og6fADPdG/YbWp0dvUynnJSw0GPYKKna6u+dc9SgdOUNcBg== +"@textlint/textlint-plugin-text@^15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.0.0.tgz#8f30b1c69fc55cd57ad2a12e1dfd94dead8622e9" + integrity sha512-08wrLQGkTnm98lUnxHM45iOsuyf4zylai95EkD+ah+OjEG0Wq+b0wH8/cIovFdovzOihUrvzjdELceEWhFPXaQ== dependencies: - "@textlint/text-to-ast" "^14.8.1" + "@textlint/text-to-ast" "15.0.0" + "@textlint/types" "15.0.0" -"@textlint/types@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-14.8.1.tgz#860614a5c63545e10c3a7a69398375ce92785805" - integrity sha512-8ncGYcEoKLE3JP2s9+2IlxMbMLWpNmvptOZmF3qI188vW3g/a00r3hBRNMcKxJg3phYDtgLOyXdv44/jwJxsLw== +"@textlint/types@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.0.0.tgz#f9089933cfbf5b722020acc2226e7386227c9b26" + integrity sha512-Yrds0Y7I2hQ/7Ygo0t8Qd8Zlg5AhYmrHKsMyuOnSfugwW6Jt4dV74kd/c7r6RAkgQBfQgpuBOiNeuLigDIwnHw== dependencies: - "@textlint/ast-node-types" "^14.8.1" + "@textlint/ast-node-types" "15.0.0" -"@textlint/utils@^14.8.1": - version "14.8.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-14.8.1.tgz#f7fda2feb7145fdf45bba04996c67d1362cb2d94" - integrity sha512-EcUFmmzfHB/+cLtK1Rv1M3zmOUuUChAYMahGgKhSErreP3bpIxBm6uOZrgpq/cXKp23pLa2QkChpV4WqXrGG1g== +"@textlint/utils@15.0.0": + version "15.0.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.0.0.tgz#adde2a030935ab37a84ff7989fc0cffefab6865c" + integrity sha512-90uFH8JxBQGx1hSWzIHTxmvpFaZwkdjakS2jC/pINUt300Iud+vRK9jcyBVOybkRMNZdn5i2Rk6w2OmebGzQqw== "@types/color-name@^1.1.1": version "1.1.1" @@ -8403,7 +8406,7 @@ neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== -neotraverse@^0.6.15: +neotraverse@^0.6.15, neotraverse@^0.6.18: version "0.6.18" resolved "https://registry.yarnpkg.com/neotraverse/-/neotraverse-0.6.18.tgz#abcb33dda2e8e713cf6321b29405e822230cdb30" integrity sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA== From 5b532cc11ce3c3ed82a9b9d7ba263b8d6cc33db4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:56:56 +0000 Subject: [PATCH 39/51] fix(deps): update textlint to v15.0.1 --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 5715a1d9..fb2ee6b1 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.0.0.tgz#0c12cbb1a99e4fd774cc69168786560e7faacd96" - integrity sha512-0yY8PgN5vGMTLGZex2CQsc/nCcr4xB/Y0xum//XdomwVotpULpl3F2wuCI6k1ksiS7ZOgYhBRt+jpLdhPIXMZA== +"@textlint/ast-node-types@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.0.1.tgz#8e56a0e12098b299954133e6e6b11ad6128b50a6" + integrity sha512-e93SMkYpyHsAy62UDfOm3P91M/6Lm4akVfYd7cGqsAW8VjvGeJTEuo1kDJxlddOrck3WWid8h8KwGPCBbHfRBg== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.0.0.tgz#bf6d6dfcac33213b8b1eb3426c692df762b17e59" - integrity sha512-WZauQLMD+/0Awkhh0p60j7UdjQWzcPECCDFyQMpCaLZSgKnG8+KYnpHQgqlLU7ghPoP3zUgux5qv6J5lZZnBTQ== +"@textlint/ast-tester@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.0.1.tgz#9cd167047897271f2ec011a9c81a5b64064fa8c1" + integrity sha512-rPWRFMn8CtOJS6kubBv5IIs/TjPxoueeP7VuWSw7UFsf4lVQtBi8KvkVXEqA8k0AnQE6e8K9hEaKGxeTQsrpRg== dependencies: - "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-node-types" "15.0.1" debug "^4.4.1" -"@textlint/ast-traverse@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.0.0.tgz#55a032d8df74fd5a65093ca51ddce3172f1ac77b" - integrity sha512-RK2Vz7bwqUpGzN1pCV7r5SRa+22apSVFZqhVCWzK/9Wgd5w4KB8EyboS/LkjDDhKUR4WebtihNoZOwCfPZVgoA== +"@textlint/ast-traverse@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.0.1.tgz#10eed1d0ec53c3ec4277ce5aef6e50c908f9affb" + integrity sha512-xslCOzIUd2ZYWYrkyrNLiU7Tq7VpvqnJOUaeN60FHQfN4uQTcmm7JQPbbv9BTRkD3E/tuWhKR14gm+f0FPRRYg== dependencies: - "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-node-types" "15.0.1" -"@textlint/feature-flag@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.0.0.tgz#261e531db44650794f3c416c41fce1c8f107d128" - integrity sha512-eZJFBSLdChu0Y6DwpC5e330zSuaZs+iq4hTPduc3hNYK1GT3AsyKdaALpgfZ47SSEv3ucjacvbz+dVIXq9H/Aw== +"@textlint/feature-flag@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.0.1.tgz#8c825eed2d6feaf05a16d78dc1a80de3909c0310" + integrity sha512-4eAoh1viI0dukpqL+Zi2X+Vti7/K6Tho+sE9Fv2yQTTXlDc8A7Xmgdvyzkbz6GXNKLEWf6N9VzBQGK9YPRPqnQ== "@textlint/kernel@^15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.0.0.tgz#87b1b556cccfb9ed6fe2cbba942db23c0c949747" - integrity sha512-90rCSEfUdwZKrMPytCIeWeLlH621s6YKdB2s2OJErm9HVxSZD3PgT43DUiidHhIXKs1mx+HI24vYxPTf89gX/g== - dependencies: - "@textlint/ast-node-types" "15.0.0" - "@textlint/ast-tester" "15.0.0" - "@textlint/ast-traverse" "15.0.0" - "@textlint/feature-flag" "15.0.0" - "@textlint/source-code-fixer" "15.0.0" - "@textlint/types" "15.0.0" - "@textlint/utils" "15.0.0" + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.0.1.tgz#8d6172ba78012786bd7a8092af25b2b66bdd2fb6" + integrity sha512-JgyRwMzU483AtzjXxVWpMxoThUJLBSaMHJqJ9EzzAthI4c4qPb5Vb9silwDryWXrFQvOCL2uCnVBCKoChzdhHw== + dependencies: + "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-tester" "15.0.1" + "@textlint/ast-traverse" "15.0.1" + "@textlint/feature-flag" "15.0.1" + "@textlint/source-code-fixer" "15.0.1" + "@textlint/types" "15.0.1" + "@textlint/utils" "15.0.1" debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.0.0", "@textlint/markdown-to-ast@^15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.0.0.tgz#f3545d6f033cb8efb30367a698281e02d5ddf260" - integrity sha512-YUYzWBA3yXjZ0Rdi4fPEGtlBC9FiOZR88iCi38LyAPUwPVcgtSBKdIqNJqEKks5M9rBoN92GdrxXaOFULEfS/Q== +"@textlint/markdown-to-ast@15.0.1", "@textlint/markdown-to-ast@^15.0.0": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.0.1.tgz#ee1776c0eb94c226a90b91cd0423b069e39a79fd" + integrity sha512-78p2a2TEln71sFd3eWlNX9ZJekaLC1YiuAec4Ixo3jMCh5t29AS35FdW1ZNF1iHBXjhvkyKW30TquQWkNwfTuw== dependencies: - "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-node-types" "15.0.1" debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.0.0.tgz#98fc5ac69015ee27e681fc295d5b0bf19ac93641" - integrity sha512-uZxWybKuNHN64yKehTxcERUa3XeuhbeoJs8HaCOfH5pidRCDEnRiiGmQDXROHXlyDKfs+ZcLVSy8zh6M/gf4Bg== +"@textlint/source-code-fixer@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.0.1.tgz#6e46b925843c3c37d7e8a179642643257b2aee40" + integrity sha512-yHAo6fXzB90RWrnCBTSXRrcp+heV9+yVebRLsLlex4CtCmF0eZNL574z/SnY7oT78Dxp8rzvv1NASFOSKDvYBg== dependencies: - "@textlint/types" "15.0.0" + "@textlint/types" "15.0.1" debug "^4.4.1" -"@textlint/text-to-ast@15.0.0", "@textlint/text-to-ast@^15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.0.0.tgz#db5624c0f8506a5f370ef7087954a2ebc764246b" - integrity sha512-N6MZf22lwcFBSuzEz7Zg+e5JWYNQSuXzz+9dRXXH7Cyk86EimZ3GPnI1eGHNX1+rOjY48PQ99Uv5r2TZVsjGog== +"@textlint/text-to-ast@15.0.1", "@textlint/text-to-ast@^15.0.0": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.0.1.tgz#11fed338258e14863a105fd5247c881a7be1f9fa" + integrity sha512-ZPGpN9c6/5bvBf5DZifDrSjF2b51zwlLR4l9CtBTSisxLV7dMgm06zLlgrsk7ic44P8hvDRz0T31zD59CC0dYQ== dependencies: - "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-node-types" "15.0.1" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.0.0.tgz#c8cdd7f28f800b3868513a97cb3d92f40b39d159" - integrity sha512-ezm/bt2FXNKyf1IQ1x8eqX7MHqHzGOqoPNH23MNOVv/MhEScocs8CbMzBBk2MKb8EhurlwzvQSHgDoRLDXwK5Q== + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.0.1.tgz#ae75577ead68c1842c1a877a0c05deecbda808ce" + integrity sha512-otvlCqjd3PMaEryh1sP/zQ4Cawi8Zj9iKFUWJiJF/rgf2wuMNBABg36HfglLJpgFxGM7yDgX4mJzM6aYUEzcCQ== dependencies: - "@textlint/markdown-to-ast" "15.0.0" - "@textlint/types" "15.0.0" + "@textlint/markdown-to-ast" "15.0.1" + "@textlint/types" "15.0.1" "@textlint/textlint-plugin-text@^15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.0.0.tgz#8f30b1c69fc55cd57ad2a12e1dfd94dead8622e9" - integrity sha512-08wrLQGkTnm98lUnxHM45iOsuyf4zylai95EkD+ah+OjEG0Wq+b0wH8/cIovFdovzOihUrvzjdELceEWhFPXaQ== + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.0.1.tgz#ed48e64b4e9c0c653b0ef761ec93ca2a4e63dd5a" + integrity sha512-ha+L6gx0Q8V8ZghT1EzVeqnrWxWY5NBcIfc0nfGF/m5XiFGpwbausyE1HefpfjOJC0BFJgSUZ/PGDYJeow+uWw== dependencies: - "@textlint/text-to-ast" "15.0.0" - "@textlint/types" "15.0.0" + "@textlint/text-to-ast" "15.0.1" + "@textlint/types" "15.0.1" -"@textlint/types@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.0.0.tgz#f9089933cfbf5b722020acc2226e7386227c9b26" - integrity sha512-Yrds0Y7I2hQ/7Ygo0t8Qd8Zlg5AhYmrHKsMyuOnSfugwW6Jt4dV74kd/c7r6RAkgQBfQgpuBOiNeuLigDIwnHw== +"@textlint/types@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.0.1.tgz#91103313f4fccdbe3d81cd5d8037aef27740ab76" + integrity sha512-ACekqqM0TCUw+PtTsiXkjigCSYWHut9ZKXpJ0t6IvTVBABgGDz+jLhTkUp1scrMFSJhYKNrWLVAxPV7ukoSVgw== dependencies: - "@textlint/ast-node-types" "15.0.0" + "@textlint/ast-node-types" "15.0.1" -"@textlint/utils@15.0.0": - version "15.0.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.0.0.tgz#adde2a030935ab37a84ff7989fc0cffefab6865c" - integrity sha512-90uFH8JxBQGx1hSWzIHTxmvpFaZwkdjakS2jC/pINUt300Iud+vRK9jcyBVOybkRMNZdn5i2Rk6w2OmebGzQqw== +"@textlint/utils@15.0.1": + version "15.0.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.0.1.tgz#4ec6ce6c8338cda4b3f137e6f24270752356aa14" + integrity sha512-W1FreIILp3TZ9//7hULI+QiWwdQvK6/WVpdvniFU85JIg9yZUJ3oOSGAVl4hSvc64qqRiYWYc7Ng8xAXNFA7hQ== "@types/color-name@^1.1.1": version "1.1.1" From b21358f4d2f43558d1fa28218a2322782736afdb Mon Sep 17 00:00:00 2001 From: azu Date: Sun, 6 Jul 2025 10:43:49 +0900 Subject: [PATCH 40/51] Update renovate.json --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index d7d46b39..b23eecfa 100644 --- a/renovate.json +++ b/renovate.json @@ -20,7 +20,8 @@ "^@textlint/", "textlint-plugin-html" ], - "enabled": true + "enabled": true, + "automerge": true } ] } From 8fcb526215758f3821432d574d6f04e9a1ef98e9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Jul 2025 17:59:08 +0000 Subject: [PATCH 41/51] fix(deps): update textlint to v15.2.1 --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index fb2ee6b1..0a9d0c4b 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.0.1.tgz#8e56a0e12098b299954133e6e6b11ad6128b50a6" - integrity sha512-e93SMkYpyHsAy62UDfOm3P91M/6Lm4akVfYd7cGqsAW8VjvGeJTEuo1kDJxlddOrck3WWid8h8KwGPCBbHfRBg== +"@textlint/ast-node-types@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.1.tgz#b98ce5bdf9e39941caa02e4cfcee459656c82b21" + integrity sha512-20fEcLPsXg81yWpApv4FQxrZmlFF/Ta7/kz1HGIL+pJo5cSTmkc+eCki3GpOPZIoZk0tbJU8hrlwUb91F+3SNQ== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.0.1.tgz#9cd167047897271f2ec011a9c81a5b64064fa8c1" - integrity sha512-rPWRFMn8CtOJS6kubBv5IIs/TjPxoueeP7VuWSw7UFsf4lVQtBi8KvkVXEqA8k0AnQE6e8K9hEaKGxeTQsrpRg== +"@textlint/ast-tester@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.1.tgz#f0a413a3af2fbf1b817c15cba5b51da2d2390601" + integrity sha512-B3BNE52w+6eCsybpKhxIm/bMY1i3oF8AC5amYeaPaTaluz+rPDR4S5S6QAMaMM8XJlD0osYBdKd9LDwQPJFsIQ== dependencies: - "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-node-types" "15.2.1" debug "^4.4.1" -"@textlint/ast-traverse@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.0.1.tgz#10eed1d0ec53c3ec4277ce5aef6e50c908f9affb" - integrity sha512-xslCOzIUd2ZYWYrkyrNLiU7Tq7VpvqnJOUaeN60FHQfN4uQTcmm7JQPbbv9BTRkD3E/tuWhKR14gm+f0FPRRYg== +"@textlint/ast-traverse@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.1.tgz#ca3c074447e12c32d90d63042ac1f45312eb770c" + integrity sha512-6i+kqjREEJ1HH3v0tltQ1ZTgptd4ViyJiZe+5J62Bn1Ml7CyV/zIJ4+3pJ4x26Ts+1sqpUD/lDDNOeZz5DKsmg== dependencies: - "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-node-types" "15.2.1" -"@textlint/feature-flag@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.0.1.tgz#8c825eed2d6feaf05a16d78dc1a80de3909c0310" - integrity sha512-4eAoh1viI0dukpqL+Zi2X+Vti7/K6Tho+sE9Fv2yQTTXlDc8A7Xmgdvyzkbz6GXNKLEWf6N9VzBQGK9YPRPqnQ== +"@textlint/feature-flag@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.1.tgz#74fa8dfd02167069154bb273f7b7ab44dde5fe94" + integrity sha512-88H5WGxTperDNHA6LXT6AcTJ9MFs9l1OR7fjq+0AbXjq8Fg5RFYgx0SCxr4Fcmx0nr8JOFhexXp8qz6MMUz+bg== "@textlint/kernel@^15.0.0": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.0.1.tgz#8d6172ba78012786bd7a8092af25b2b66bdd2fb6" - integrity sha512-JgyRwMzU483AtzjXxVWpMxoThUJLBSaMHJqJ9EzzAthI4c4qPb5Vb9silwDryWXrFQvOCL2uCnVBCKoChzdhHw== - dependencies: - "@textlint/ast-node-types" "15.0.1" - "@textlint/ast-tester" "15.0.1" - "@textlint/ast-traverse" "15.0.1" - "@textlint/feature-flag" "15.0.1" - "@textlint/source-code-fixer" "15.0.1" - "@textlint/types" "15.0.1" - "@textlint/utils" "15.0.1" + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.1.tgz#aea14f411c1af8450044c2375593abac8fb67c0c" + integrity sha512-Xen6wfOlZZtGPsXqk9enXlXxsDy3uXBQo+fENXohT0e6xnx500r4N6IrYOr/VANMoAS2DrIrqpN6Q1W1VpBZlg== + dependencies: + "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-tester" "15.2.1" + "@textlint/ast-traverse" "15.2.1" + "@textlint/feature-flag" "15.2.1" + "@textlint/source-code-fixer" "15.2.1" + "@textlint/types" "15.2.1" + "@textlint/utils" "15.2.1" debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.0.1", "@textlint/markdown-to-ast@^15.0.0": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.0.1.tgz#ee1776c0eb94c226a90b91cd0423b069e39a79fd" - integrity sha512-78p2a2TEln71sFd3eWlNX9ZJekaLC1YiuAec4Ixo3jMCh5t29AS35FdW1ZNF1iHBXjhvkyKW30TquQWkNwfTuw== +"@textlint/markdown-to-ast@15.2.1", "@textlint/markdown-to-ast@^15.0.0": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.1.tgz#6d5699da8c7e4e4b6e35717adf296803c058c193" + integrity sha512-JU3AxIAuom/ZdKok6tkNVy8PsqjxKnSlBfld1dzyRV7/VFWbBuFdlaV6M8aJHa0HKy0Y9QHTXxiOJQkUPA5kWA== dependencies: - "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-node-types" "15.2.1" debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.0.1.tgz#6e46b925843c3c37d7e8a179642643257b2aee40" - integrity sha512-yHAo6fXzB90RWrnCBTSXRrcp+heV9+yVebRLsLlex4CtCmF0eZNL574z/SnY7oT78Dxp8rzvv1NASFOSKDvYBg== +"@textlint/source-code-fixer@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.1.tgz#485d7e67c01582f5b33f1cdbfbe34719c39335c8" + integrity sha512-wMjEcH2jWfCazj2paNo5S+mnpf/ephOWceNQ5Aq1jfWCcqyJEvF8xykiCW7iFiW/KVkVIUdTdcrb+ZgY1n5bzw== dependencies: - "@textlint/types" "15.0.1" + "@textlint/types" "15.2.1" debug "^4.4.1" -"@textlint/text-to-ast@15.0.1", "@textlint/text-to-ast@^15.0.0": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.0.1.tgz#11fed338258e14863a105fd5247c881a7be1f9fa" - integrity sha512-ZPGpN9c6/5bvBf5DZifDrSjF2b51zwlLR4l9CtBTSisxLV7dMgm06zLlgrsk7ic44P8hvDRz0T31zD59CC0dYQ== +"@textlint/text-to-ast@15.2.1", "@textlint/text-to-ast@^15.0.0": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.1.tgz#719fe3d6bc5ca1d94177a9683762e6933e0114ba" + integrity sha512-m6j+35PfBB1pWRQ7oddKhZWMPIqeEdGvQDyFvr50piyjiJ4ME7ASVhfvA3yoLQ+92jW/DWRQ+gpj0tQPdlmq8Q== dependencies: - "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-node-types" "15.2.1" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.0.1.tgz#ae75577ead68c1842c1a877a0c05deecbda808ce" - integrity sha512-otvlCqjd3PMaEryh1sP/zQ4Cawi8Zj9iKFUWJiJF/rgf2wuMNBABg36HfglLJpgFxGM7yDgX4mJzM6aYUEzcCQ== + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.1.tgz#045281f5fd84cae369764706ae56574611a1751f" + integrity sha512-mHWjpGsVeIgVkWeW+H9sMhxKN/FNVofbqwwERg0vxme37vEVKrAXAq9t25ZL5erco5qkvuWT55LmgKOQG48oXw== dependencies: - "@textlint/markdown-to-ast" "15.0.1" - "@textlint/types" "15.0.1" + "@textlint/markdown-to-ast" "15.2.1" + "@textlint/types" "15.2.1" "@textlint/textlint-plugin-text@^15.0.0": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.0.1.tgz#ed48e64b4e9c0c653b0ef761ec93ca2a4e63dd5a" - integrity sha512-ha+L6gx0Q8V8ZghT1EzVeqnrWxWY5NBcIfc0nfGF/m5XiFGpwbausyE1HefpfjOJC0BFJgSUZ/PGDYJeow+uWw== + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.1.tgz#aa5207aa3e503d729ee03af8d05e261e26fb0834" + integrity sha512-KI5vEEQXZJmEOrVuCeYVYHZLA6tWehwrvAYNjZLnlBICD8CTPLaFm3kqlDdGosbYnsk525BhEjW6sxAeA25a6g== dependencies: - "@textlint/text-to-ast" "15.0.1" - "@textlint/types" "15.0.1" + "@textlint/text-to-ast" "15.2.1" + "@textlint/types" "15.2.1" -"@textlint/types@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.0.1.tgz#91103313f4fccdbe3d81cd5d8037aef27740ab76" - integrity sha512-ACekqqM0TCUw+PtTsiXkjigCSYWHut9ZKXpJ0t6IvTVBABgGDz+jLhTkUp1scrMFSJhYKNrWLVAxPV7ukoSVgw== +"@textlint/types@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.1.tgz#2f29758df05a092e9ca661c0c65182d195bbb15a" + integrity sha512-zyqNhSatK1cwxDUgosEEN43hFh3WCty9Zm2Vm3ogU566IYegifwqN54ey/CiRy/DiO4vMcFHykuQnh2Zwp6LLw== dependencies: - "@textlint/ast-node-types" "15.0.1" + "@textlint/ast-node-types" "15.2.1" -"@textlint/utils@15.0.1": - version "15.0.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.0.1.tgz#4ec6ce6c8338cda4b3f137e6f24270752356aa14" - integrity sha512-W1FreIILp3TZ9//7hULI+QiWwdQvK6/WVpdvniFU85JIg9yZUJ3oOSGAVl4hSvc64qqRiYWYc7Ng8xAXNFA7hQ== +"@textlint/utils@15.2.1": + version "15.2.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.1.tgz#d354ce2689e248b06a5074eb4fa7ef77c2684814" + integrity sha512-osXG48HjqaOk21mX3upTmAMhEEIULjzZgH17S4pQzrU/16N0VsuiqYOZL14uN0gyWR8YY8lec+cszDN/eCwULg== "@types/color-name@^1.1.1": version "1.1.1" From b428429e5167ca32b6d1b9595ee37cde91bfe9d5 Mon Sep 17 00:00:00 2001 From: azu Date: Fri, 25 Jul 2025 07:10:19 +0900 Subject: [PATCH 42/51] =?UTF-8?q?fix(build):=20webpack=E3=81=AEnode:assert?= =?UTF-8?q?=E3=83=A2=E3=82=B8=E3=83=A5=E3=83=BC=E3=83=AB=E8=A7=A3=E6=B1=BA?= =?UTF-8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - webpack.config.jsにnode:assertのaliasとnode設定を追加 - PR用のCIワークフロー(test.yml)を追加してビルドテストを実行 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ website/webpack.config.js | 6 ++++++ 3 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6204da71..351d0828 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,15 +13,15 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + - uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 with: node-version: '18' - name: Build run: yarn install && yarn run build working-directory: ./website - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 # v3.9.3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./out diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..3913dc73 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: Test + +on: + pull_request: + branches: + - textlint + push: + branches: + - textlint + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 + - uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1 + with: + node-version: '18' + - name: Install dependencies + run: yarn install + working-directory: ./website + - name: Install server dependencies + run: npm install + working-directory: ./server + - name: Build website + run: yarn run build + working-directory: ./website diff --git a/website/webpack.config.js b/website/webpack.config.js index e8735d4b..0ef257a6 100644 --- a/website/webpack.config.js +++ b/website/webpack.config.js @@ -99,6 +99,11 @@ const plugins = [ ]; module.exports = Object.assign({ + resolve: { + alias: { + 'node:assert': 'assert' + } + }, optimization: { moduleIds: DEV ? 'named' : 'hashed', runtimeChunk: 'single', @@ -246,6 +251,7 @@ module.exports = Object.assign({ }, node: { + assert: 'empty', child_process: 'empty', fs: 'empty', module: 'empty', From 764b897825d9035cbd318790d1eb9630db5c91ae Mon Sep 17 00:00:00 2001 From: azu Date: Fri, 25 Jul 2025 07:12:11 +0900 Subject: [PATCH 43/51] chore: update server yarn.lock --- server/yarn.lock | 155 +++++++++++++++++++++++++++++++---------------- 1 file changed, 103 insertions(+), 52 deletions(-) diff --git a/server/yarn.lock b/server/yarn.lock index 06325f17..15b75512 100644 --- a/server/yarn.lock +++ b/server/yarn.lock @@ -4,24 +4,28 @@ accepts@~1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz" + integrity sha512-AOPopplFOUlmUugwiZUCDpOwmqvSgdCyE8iJVLWI4NcB7qfMKQN34dn5xYtlUU03XGG5egRWW4NW5gIxpa5hEA== dependencies: mime-types "~2.1.11" negotiator "0.6.1" array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== axios@^0.15.2: version "0.15.3" - resolved "https://registry.yarnpkg.com/axios/-/axios-0.15.3.tgz#2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053" + resolved "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz" + integrity sha512-w3/VNaraEcDri16lbemQWQGKfaFk9O0IZkzKlLeF5r6WWDv9TkcXkP+MWkRK8FbxwfozY/liI+qtvhV295t3HQ== dependencies: follow-redirects "1.0.0" body-parser@^1.15.2: version "1.15.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.15.2.tgz#d7578cf4f1d11d5f6ea804cef35dc7a7ff6dae67" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.15.2.tgz" + integrity sha512-w+PHzLDPwR2csqaHDt/oKTD5XVieOWaa1OV0VcX+agasefEZI3jK6iBabpOcM3ovd3YvIg+sK9sX437wvYjUSw== dependencies: bytes "2.4.0" content-type "~1.0.2" @@ -36,57 +40,70 @@ body-parser@^1.15.2: bytes@2.4.0: version "2.4.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.4.0.tgz#7d97196f9d5baf7f6935e25985549edd2a6c2339" + resolved "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz" + integrity sha512-SvUX8+c/Ga454a4fprIdIUzUN9xfd1YTvYh7ub5ZPJ+ZJ/+K2Bp6IpWGmnw8r3caLTsmhvJAKZz3qjIo9+XuCQ== content-disposition@0.5.1: version "0.5.1" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.1.tgz#87476c6a67c8daa87e32e87616df883ba7fb071b" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.1.tgz" + integrity sha512-LXP3Ekizrynh01Muic+1XMkR46z/d2wAO/TBnwCgdTmpFJrtwkzrCxQCsC7QnNqlShJgrQyygcX2I8oJ0wnzkw== content-type@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz" + integrity sha512-TFmXoAjJQD7hApJpE/GttZreniTw+DYE4zlDmPRc8Q75KXrU8hFt3Qeckml/mOTVAxwbMZ3WwdEcQCzTpfV5ZA== cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== cookie@0.3.1: version "0.3.1" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz" + integrity sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw== debug@^2.2.0, debug@~2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + resolved "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz" + integrity sha512-X0rGvJcskG1c3TgSCPqHJ0XJgwlcvOC7elJ5Y0hYuKBZoVqWpAMfLOeIh2UI/DCQ5ruodIjvsugZtjUYUw2pUw== dependencies: ms "0.7.1" depd@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" + resolved "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz" + integrity sha512-SN03SKT2SwhaAKUnRJ47Scnys7ZL2FuogA/6s9u5+58RAyqhsI2HBDZymMB0omazkYVBAwBHW9ONcjd4iZ8hDQ== destroy@~1.0.4: version "1.0.4" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" + integrity sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg== ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== encodeurl@~1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz" + integrity sha512-Emsft8lNRSZ7+fFm2KgTM8OZPcfHip/hNMSkje83n+LqPx5tI4xkCxyunJIG3EZsWHz9sqzohiPR6monRXWD8g== escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== etag@~1.7.0: version "1.7.0" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.7.0.tgz#03d30b5f67dd6e632d2945d30d6652731a34d5d8" + resolved "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz" + integrity sha512-Mbv5pNpLNPrm1b4rzZlZlfTRpdDr31oiD43N362sIyvSWVNu5Du33EcJGzvEV4YdYLuENB1HzND907cQkFmXNw== express@^4.14.0: version "4.14.0" - resolved "https://registry.yarnpkg.com/express/-/express-4.14.0.tgz#c1ee3f42cdc891fb3dc650a8922d51ec847d0d66" + resolved "https://registry.npmjs.org/express/-/express-4.14.0.tgz" + integrity sha512-DMNT04ECPAVNiEZqRtl2VMxg4TMxL0+Qv2VrQcsO+vaOSkeHJSCSmEfxrcJ30ikZx5l8VdPAdhhrVPw0wZFZ2Q== dependencies: accepts "~1.3.3" array-flatten "1.1.1" @@ -117,7 +134,8 @@ express@^4.14.0: finalhandler@0.5.0: version "0.5.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-0.5.0.tgz#e9508abece9b6dba871a6942a1d7911b91911ac7" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.0.tgz" + integrity sha512-KCwi04Tss2Qa+3NQkU3/4lBYXfHYunl3YM0rDJPxhdZ1qjlGvf/BilX2g7vm/qkHUMs5MncaD9f/VTdYN95iig== dependencies: debug "~2.2.0" escape-html "~1.0.3" @@ -127,21 +145,25 @@ finalhandler@0.5.0: follow-redirects@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.0.0.tgz#8e34298cbd2e176f254effec75a1c78cc849fd37" + resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz" + integrity sha512-7s+wBk4z5xTwVJuozRBAyRofWKjD3uG2CUjZfZTrw9f+f+z8ZSxOjAqfIDLtc0Hnz+wGK2Y8qd93nGGjXBYKsQ== dependencies: debug "^2.2.0" forwarded@~0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz" + integrity sha512-h17abE+9l03GtF7H+Tdf/exIbFnOgiOieYrtBfleXuDTU3jGncrv4oLOIuXnFPveDuQPd9kd3MGkhKaMGoQwOA== fresh@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.3.0.tgz#651f838e22424e7566de161d8358caa199f83d4f" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz" + integrity sha512-akx5WBKAwMSg36qoHTuMMVncHWctlaDGslJASDYAhoLrzDUDCjZlOngNa/iC6lPm9aA0qk8pN5KnpmbJHSIIQQ== "github-api@https://github.com/fkling/github.git": version "3.1.0" - resolved "https://github.com/fkling/github.git#e0beb8eee48f2a0d0583a17fa96a309ba5f6afa4" + resolved "git+ssh://git@github.com/fkling/github.git" + integrity sha512-+0fDYt4TeL3nFWZLchSBLJRh7mI023wqBDjBhPKrQoF0bi5bZ4vuOGz0DrTQQOMy7Q8OQUyebmtEeuDChAPE0g== dependencies: axios "^0.15.2" debug "^2.2.0" @@ -150,7 +172,8 @@ fresh@0.3.0: http-errors@~1.5.0: version "1.5.1" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.5.1.tgz#788c0d2c1de2c81b9e6e8c01843b6b97eb920750" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz" + integrity sha512-ftkc2U5ADKHv8Ny1QJaDn8xnE18G+fP5QYupx9c3Xk6L5Vgo3qK8Bgbpb4a+jRtaF/YQKjIuXA5J0tde4Tojng== dependencies: inherits "2.0.3" setprototypeof "1.0.2" @@ -158,86 +181,105 @@ http-errors@~1.5.0: iconv-lite@0.4.13: version "0.4.13" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc39345f36e992e2f2" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz" + integrity sha512-QwVuTNQv7tXC5mMWFX5N5wGjmybjNBBD8P3BReTkPmipoxTUFgWM2gXNvldHQr6T14DH0Dh6qBVg98iJt7u4mQ== inherits@2.0.3: version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== ipaddr.js@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.2.0.tgz#8aba49c9192799585bdd643e0ccb50e8ae777ba4" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.2.0.tgz" + integrity sha512-ku//LD7ie/m9UVGCm9KweBIIHP4mB0maNGvav6Hz778fQCNLQF7iZ+H/UuHuqmjJCHCpA5hw8hOeRKxZl8IlXw== js-base64@^2.1.9: version "2.1.9" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz" + integrity sha512-f+5mYh8iF7FlF7zgmj/yqvvYQUHI0kAxGiLjIfNxZzqJ7RQNc4sjgp8crVJw0Kzv2O6aFGZWgMTnO71I9utHSg== media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== mime-db@~1.26.0: version "1.26.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.26.0.tgz#eaffcd0e4fc6935cf8134da246e2e6c35305adff" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz" + integrity sha512-Bn4lTeTH3qxeM+u71GQVrY4AxQlqDT9jkapmEby7o6X9giHAS4U4ar/bzjkCocKAEPjP+77GmVxiYScExkiHyA== mime-types@~2.1.11, mime-types@~2.1.13: version "2.1.14" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.14.tgz#f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz" + integrity sha512-okJd888hr2XVzvoRxEOnEEgmlsOnLVoIOAKoBgYMLOQPNQFprAx970dULXC3ueiQMIiTsSxUFSpa2y3IlBefCg== dependencies: mime-db "~1.26.0" mime@1.3.4: version "1.3.4" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + resolved "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz" + integrity sha512-sAaYXszED5ALBt665F0wMQCUXpGuZsGdopoqcHPdL39ZYdi7uHoZlhrfZfhv8WzivhBzr/oXwaj+yiK5wY8MXQ== ms@0.7.1: version "0.7.1" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" + resolved "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" + integrity sha512-lRLiIR9fSNpnP6TC4v8+4OU7oStC01esuNowdQ34L+Gk8e5Puoc88IqJ+XAY/B3Mn2ZKis8l8HX90oU8ivzUHg== negotiator@0.6.1: version "0.6.1" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz" + integrity sha512-qTxkr1RoLw5Pz+1+PTJ/66hWuyi2LEOeOuIDJDlx6JF8x75bmD5C7qXTg2UlX5W9rLfkqKP+r8q6Vy6NWdWrbw== on-finished@~2.3.0: version "2.3.0" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" + integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww== dependencies: ee-first "1.1.1" parseurl@~1.3.1: version "1.3.1" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz" + integrity sha512-jcXcz8qX3IIi+Uf1Ut1TS2aNx2pLbVcFxIWZMcErWNrqFfTE1e+Q1stJkCOnzWBsxCTZJ0xmHtT4P8K0DnQQRA== path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== proxy-addr@~1.1.2: version "1.1.3" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.3.tgz#dc97502f5722e888467b3fa2297a7b1ff47df074" + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.3.tgz" + integrity sha512-DqElUqAHcWG3dnqlR57Jnvz4exDZ7wsTOLwYaXNPtiOl9l5vyjtD6+7s3nAT1QknFLJsq4C6QzhCogM05QoGNA== dependencies: forwarded "~0.1.0" ipaddr.js "1.2.0" qs@6.2.0: version "6.2.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.0.tgz#3b7848c03c2dece69a9522b0fae8c4126d745f3b" + resolved "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz" + integrity sha512-xJlDcRyZKEdvI99YhwNqGKmeiOCcfxk5E09Gof/E8xSpiMcqJ+BCwPZ3ykEYQdwDlmTpK6YlPB/kd8zfy9e7wg== range-parser@~1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz" + integrity sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A== raw-body@~2.1.7: version "2.1.7" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.1.7.tgz#adfeace2e4fb3098058014d08c072dcc59758774" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz" + integrity sha512-x4d27vsIG04gZ1imkuDXB9Rd/EkAx5kYzeMijIYw1PAor0Ld3nTlkQQwDjKu42GdRUFCX1AfGnTSQB4O57eWVg== dependencies: bytes "2.4.0" iconv-lite "0.4.13" @@ -245,7 +287,8 @@ raw-body@~2.1.7: send@0.14.1: version "0.14.1" - resolved "https://registry.yarnpkg.com/send/-/send-0.14.1.tgz#a954984325392f51532a7760760e459598c89f7a" + resolved "https://registry.npmjs.org/send/-/send-0.14.1.tgz" + integrity sha512-1Ru269QpUVUgD32Y9jdyBXiX+pHYuYnTzR17w+DhyOWvGMPjJILrnLhl9c4LQjtIy2BSAa6Ykq0ZdGcAjaXlwQ== dependencies: debug "~2.2.0" depd "~1.1.0" @@ -263,7 +306,8 @@ send@0.14.1: serve-static@~1.11.1: version "1.11.1" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.11.1.tgz#d6cce7693505f733c759de57befc1af76c0f0805" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.11.1.tgz" + integrity sha512-SGBgnvUc8p5pZdzo4DMTFZQlzsCGGV7rqb7owrM2FAW7gNJ2Jf2T45Ej/I9sSZNGdx1V2+MXZ0bUm7JMmTYU/w== dependencies: encodeurl "~1.0.1" escape-html "~1.0.3" @@ -272,31 +316,38 @@ serve-static@~1.11.1: setprototypeof@1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.2.tgz#81a552141ec104b88e89ce383103ad5c66564d08" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz" + integrity sha512-mNRSo7UFE4c4tjxlZ3KxO5r+3oQUD1M/KXbp/XTwTwybL4VR9T8Ltmv5DvZX8iRz6C3hQmQftXEV0EmTKRV6mg== "statuses@>= 1.3.1 < 2", statuses@~1.3.0: version "1.3.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + resolved "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz" + integrity sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg== type-is@~1.6.13: version "1.6.14" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.14.tgz#e219639c17ded1ca0789092dd54a03826b817cb2" + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.14.tgz" + integrity sha512-pM3GvwuTj7H0LexCt3FK6R9KcP0SYRnmjZfHQ7RtuZkLVSfvQZmXKvSiHTDu+RFdkwyj9ZRnWXtvOZWlHiMgGQ== dependencies: media-typer "0.3.0" mime-types "~2.1.13" -unpipe@1.0.0, unpipe@~1.0.0: +unpipe@~1.0.0, unpipe@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== utf8@^2.1.1: version "2.1.2" - resolved "https://registry.yarnpkg.com/utf8/-/utf8-2.1.2.tgz#1fa0d9270e9be850d9b05027f63519bf46457d96" + resolved "https://registry.npmjs.org/utf8/-/utf8-2.1.2.tgz" + integrity sha512-QXo+O/QkLP/x1nyi54uQiG0XrODxdysuQvE5dtVqv7F5K2Qb6FsN+qbr6KhF5wQ20tfcV3VQp0/2x1e1MRSPWg== utils-merge@1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz" + integrity sha512-HwU9SLQEtyo+0uoKXd1nkLqigUWLB+QuNQR4OcmB73eWqksM5ovuqcycks2x043W8XVb75rG1HQ0h93TMXkzQQ== vary@~1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.0.tgz#e1e5affbbd16ae768dd2674394b9ad3022653140" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.0.tgz" + integrity sha512-uM/iZxl0TaIXDYreb7fo4zACmS3hk2ywle8HR44gJ6HlqZ0fb4gjEJnMBMAmH0T1HxdGU8RlUvY9ekkoLsV+1A== From 9088e17aaa931ffddaa794a0012f766affbbd21c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 20 Aug 2025 06:12:05 +0000 Subject: [PATCH 44/51] fix(deps): update textlint to v15.2.2 (#33) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 0a9d0c4b..4dde1d5b 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.1.tgz#b98ce5bdf9e39941caa02e4cfcee459656c82b21" - integrity sha512-20fEcLPsXg81yWpApv4FQxrZmlFF/Ta7/kz1HGIL+pJo5cSTmkc+eCki3GpOPZIoZk0tbJU8hrlwUb91F+3SNQ== +"@textlint/ast-node-types@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.2.tgz#450632e54d08fc6776a620671a0ae29bb6cec08b" + integrity sha512-9ByYNzWV8tpz6BFaRzeRzIov8dkbSZu9q7IWqEIfmRuLWb2qbI/5gTvKcoWT1HYs4XM7IZ8TKSXcuPvMb6eorA== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.1.tgz#f0a413a3af2fbf1b817c15cba5b51da2d2390601" - integrity sha512-B3BNE52w+6eCsybpKhxIm/bMY1i3oF8AC5amYeaPaTaluz+rPDR4S5S6QAMaMM8XJlD0osYBdKd9LDwQPJFsIQ== +"@textlint/ast-tester@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.2.tgz#01492467049bcf8eb7fd80acecb21ca69c5d2ab3" + integrity sha512-puwnJSPOeqtPQslz6ehfEF1wqoTb/iTebHj+vy6zePpHhBZRJdZKOqPe7p83Atetc8O5SEYa1aJ8ur8sSm0wQw== dependencies: - "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-node-types" "15.2.2" debug "^4.4.1" -"@textlint/ast-traverse@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.1.tgz#ca3c074447e12c32d90d63042ac1f45312eb770c" - integrity sha512-6i+kqjREEJ1HH3v0tltQ1ZTgptd4ViyJiZe+5J62Bn1Ml7CyV/zIJ4+3pJ4x26Ts+1sqpUD/lDDNOeZz5DKsmg== +"@textlint/ast-traverse@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.2.tgz#8e4c367ab0d0efc61818d4ba277c3516865482b2" + integrity sha512-5uZCNp6fSYvDgQW3LGnJYC90ac1qWhUZJtjE1tI0fPk7U14Gr0Qu5FEOMuW0YUV5aoo3P1OpwrKPt2U6FFlrvg== dependencies: - "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-node-types" "15.2.2" -"@textlint/feature-flag@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.1.tgz#74fa8dfd02167069154bb273f7b7ab44dde5fe94" - integrity sha512-88H5WGxTperDNHA6LXT6AcTJ9MFs9l1OR7fjq+0AbXjq8Fg5RFYgx0SCxr4Fcmx0nr8JOFhexXp8qz6MMUz+bg== +"@textlint/feature-flag@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.2.tgz#00175846a970d99c090bbdf420da11f0efa2bbef" + integrity sha512-SX//fr056jGT3aRDbPTz4k0kEqyHRTvbHTr7HgC3yuksO89NKl605gmU9flrykBZC+i4GOMcR2BL4SweiNXbTg== "@textlint/kernel@^15.0.0": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.1.tgz#aea14f411c1af8450044c2375593abac8fb67c0c" - integrity sha512-Xen6wfOlZZtGPsXqk9enXlXxsDy3uXBQo+fENXohT0e6xnx500r4N6IrYOr/VANMoAS2DrIrqpN6Q1W1VpBZlg== - dependencies: - "@textlint/ast-node-types" "15.2.1" - "@textlint/ast-tester" "15.2.1" - "@textlint/ast-traverse" "15.2.1" - "@textlint/feature-flag" "15.2.1" - "@textlint/source-code-fixer" "15.2.1" - "@textlint/types" "15.2.1" - "@textlint/utils" "15.2.1" + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.2.tgz#91b70f7d77e36a5b24aa0c9a2e552aab463810c8" + integrity sha512-xFtIx3thI3SC2wk4uApJ5lW0cks4pkSfoRejfYoAMwPd1VyvFhCsQQWNRTyXIlXfNIGT6qY82SoPyXvi3XF6Zg== + dependencies: + "@textlint/ast-node-types" "15.2.2" + "@textlint/ast-tester" "15.2.2" + "@textlint/ast-traverse" "15.2.2" + "@textlint/feature-flag" "15.2.2" + "@textlint/source-code-fixer" "15.2.2" + "@textlint/types" "15.2.2" + "@textlint/utils" "15.2.2" debug "^4.4.1" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.2.1", "@textlint/markdown-to-ast@^15.0.0": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.1.tgz#6d5699da8c7e4e4b6e35717adf296803c058c193" - integrity sha512-JU3AxIAuom/ZdKok6tkNVy8PsqjxKnSlBfld1dzyRV7/VFWbBuFdlaV6M8aJHa0HKy0Y9QHTXxiOJQkUPA5kWA== +"@textlint/markdown-to-ast@15.2.2", "@textlint/markdown-to-ast@^15.0.0": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.2.tgz#4ba68d75da369e8d086372aa7ab0524ea71984c5" + integrity sha512-7LsDOCApuM5463e4mfJAORyOMDxzJGmfDfoT6RtwL5P1T1kKGxLl5yudzdfm8++WB8v4wJZZEUQqppejeDRs9Q== dependencies: - "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-node-types" "15.2.2" debug "^4.4.1" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.1.tgz#485d7e67c01582f5b33f1cdbfbe34719c39335c8" - integrity sha512-wMjEcH2jWfCazj2paNo5S+mnpf/ephOWceNQ5Aq1jfWCcqyJEvF8xykiCW7iFiW/KVkVIUdTdcrb+ZgY1n5bzw== +"@textlint/source-code-fixer@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.2.tgz#1d9e343169e8b344b588c457f574e21fc9314321" + integrity sha512-Cstr9wjK7toLmY2hhlZ3YcIh8o/gr7E5dpCd9IalNiMBedvvLYuOfhktKgUa4E7oFcGtl0leDPgx5ENDY25JDw== dependencies: - "@textlint/types" "15.2.1" + "@textlint/types" "15.2.2" debug "^4.4.1" -"@textlint/text-to-ast@15.2.1", "@textlint/text-to-ast@^15.0.0": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.1.tgz#719fe3d6bc5ca1d94177a9683762e6933e0114ba" - integrity sha512-m6j+35PfBB1pWRQ7oddKhZWMPIqeEdGvQDyFvr50piyjiJ4ME7ASVhfvA3yoLQ+92jW/DWRQ+gpj0tQPdlmq8Q== +"@textlint/text-to-ast@15.2.2", "@textlint/text-to-ast@^15.0.0": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.2.tgz#cd219a698ed5b4dad23dfeef9b5875ae23227610" + integrity sha512-IphrojtJw3eW/1JMm/Hzc0dsDFALpEzjankABS6tIHMvB2O+2wejRDbDaqmgCgMCr+lGKoMNg5Xvlr5x9XRxww== dependencies: - "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-node-types" "15.2.2" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.1.tgz#045281f5fd84cae369764706ae56574611a1751f" - integrity sha512-mHWjpGsVeIgVkWeW+H9sMhxKN/FNVofbqwwERg0vxme37vEVKrAXAq9t25ZL5erco5qkvuWT55LmgKOQG48oXw== + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.2.tgz#6d6f2ebee043ba40726d3fe2eeeac282a06f881a" + integrity sha512-JzmHAtC2C4LOpJ/JD2YsqBZt9ej4khFFDI0d9E6P9y9AO/HOEv4GeT7aAjGGPG6AVO977aGiJ92EK9kTwlVnIQ== dependencies: - "@textlint/markdown-to-ast" "15.2.1" - "@textlint/types" "15.2.1" + "@textlint/markdown-to-ast" "15.2.2" + "@textlint/types" "15.2.2" "@textlint/textlint-plugin-text@^15.0.0": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.1.tgz#aa5207aa3e503d729ee03af8d05e261e26fb0834" - integrity sha512-KI5vEEQXZJmEOrVuCeYVYHZLA6tWehwrvAYNjZLnlBICD8CTPLaFm3kqlDdGosbYnsk525BhEjW6sxAeA25a6g== + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.2.tgz#eb5aa0fde0d899e21664d329ddbe3062929d2707" + integrity sha512-bZYlxw8S9zsuJgx2EAR23RFyQ3JtyuIDUA3dbt5Sov2eo20LitNjDIqrQgDo85widbOD/6rG7VioNesV1/6HFw== dependencies: - "@textlint/text-to-ast" "15.2.1" - "@textlint/types" "15.2.1" + "@textlint/text-to-ast" "15.2.2" + "@textlint/types" "15.2.2" -"@textlint/types@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.1.tgz#2f29758df05a092e9ca661c0c65182d195bbb15a" - integrity sha512-zyqNhSatK1cwxDUgosEEN43hFh3WCty9Zm2Vm3ogU566IYegifwqN54ey/CiRy/DiO4vMcFHykuQnh2Zwp6LLw== +"@textlint/types@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.2.tgz#9e47d1021ece2cefe1749131b054e1a332cabcda" + integrity sha512-X2BHGAR3yXJsCAjwYEDBIk9qUDWcH4pW61ISfmtejau+tVqKtnbbvEZnMTb6mWgKU1BvTmftd5DmB1XVDUtY3g== dependencies: - "@textlint/ast-node-types" "15.2.1" + "@textlint/ast-node-types" "15.2.2" -"@textlint/utils@15.2.1": - version "15.2.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.1.tgz#d354ce2689e248b06a5074eb4fa7ef77c2684814" - integrity sha512-osXG48HjqaOk21mX3upTmAMhEEIULjzZgH17S4pQzrU/16N0VsuiqYOZL14uN0gyWR8YY8lec+cszDN/eCwULg== +"@textlint/utils@15.2.2": + version "15.2.2" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.2.tgz#c362fd4e71072bc216beec8c14c0adb225fbc874" + integrity sha512-uPCfBl2NF4tiXGjAE5DAwah0Bn/EFsgtXhDEIJV4hsSfBQBD8Guqnh8MvJj25fvZaQS+MTNGiEC6bFXtIMHuAg== "@types/color-name@^1.1.1": version "1.1.1" From 198da03f68603e591a35969add7f2bca0db562a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Oct 2025 21:29:37 +0000 Subject: [PATCH 45/51] chore(deps): update textlint to v15.2.3 (#34) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 142 +++++++++++++++++++++++----------------------- 1 file changed, 71 insertions(+), 71 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 4dde1d5b..019e64ad 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,59 +1326,59 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.2.tgz#450632e54d08fc6776a620671a0ae29bb6cec08b" - integrity sha512-9ByYNzWV8tpz6BFaRzeRzIov8dkbSZu9q7IWqEIfmRuLWb2qbI/5gTvKcoWT1HYs4XM7IZ8TKSXcuPvMb6eorA== +"@textlint/ast-node-types@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.3.tgz#78640b0f651ff2e96de88e07e42b26a418dd8958" + integrity sha512-GEhoxfmh6TF+xC8TJmAUwOzzh0J6sVDqjKhwTTwetf7YDdhHbIv1PuUb/dTadMVIWs1H0+JD4Y27n6LWMmqn9Q== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.2.tgz#01492467049bcf8eb7fd80acecb21ca69c5d2ab3" - integrity sha512-puwnJSPOeqtPQslz6ehfEF1wqoTb/iTebHj+vy6zePpHhBZRJdZKOqPe7p83Atetc8O5SEYa1aJ8ur8sSm0wQw== +"@textlint/ast-tester@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.3.tgz#1b5e5df5bb7a6d1acb335fa0df65e9976e11172b" + integrity sha512-eT0DBbQTa7Hm0JRRHT9vUv6VoIuY19eqI8UL2I7AzE820DSrrNkgGg/ZxB9I6BCDK/Yg96lJ45fMIeOFPvuJaQ== dependencies: - "@textlint/ast-node-types" "15.2.2" - debug "^4.4.1" + "@textlint/ast-node-types" "15.2.3" + debug "^4.4.3" -"@textlint/ast-traverse@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.2.tgz#8e4c367ab0d0efc61818d4ba277c3516865482b2" - integrity sha512-5uZCNp6fSYvDgQW3LGnJYC90ac1qWhUZJtjE1tI0fPk7U14Gr0Qu5FEOMuW0YUV5aoo3P1OpwrKPt2U6FFlrvg== +"@textlint/ast-traverse@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.3.tgz#aa0140f03c48883ce5833895d3b01d5ab377c068" + integrity sha512-XqlEVbQanAu40pGrtoRJzV3bWUxiCvqpu6FBmHotUgah1jjNWe6DQRkDsjcil9qXrVjXfQFAjG8ZuDk9/sUcGg== dependencies: - "@textlint/ast-node-types" "15.2.2" + "@textlint/ast-node-types" "15.2.3" -"@textlint/feature-flag@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.2.tgz#00175846a970d99c090bbdf420da11f0efa2bbef" - integrity sha512-SX//fr056jGT3aRDbPTz4k0kEqyHRTvbHTr7HgC3yuksO89NKl605gmU9flrykBZC+i4GOMcR2BL4SweiNXbTg== +"@textlint/feature-flag@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.3.tgz#2c6da3657a5565986f1944ef737dc837b17047ed" + integrity sha512-XW2NVj3K7Pi8jlgwxKMUh7L1y+EMN+s47TtEC1rkagI581THgHnAyAe+/aHZsF/CJEwevZtGnaan2MY1rnbsYA== "@textlint/kernel@^15.0.0": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.2.tgz#91b70f7d77e36a5b24aa0c9a2e552aab463810c8" - integrity sha512-xFtIx3thI3SC2wk4uApJ5lW0cks4pkSfoRejfYoAMwPd1VyvFhCsQQWNRTyXIlXfNIGT6qY82SoPyXvi3XF6Zg== - dependencies: - "@textlint/ast-node-types" "15.2.2" - "@textlint/ast-tester" "15.2.2" - "@textlint/ast-traverse" "15.2.2" - "@textlint/feature-flag" "15.2.2" - "@textlint/source-code-fixer" "15.2.2" - "@textlint/types" "15.2.2" - "@textlint/utils" "15.2.2" - debug "^4.4.1" + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.3.tgz#071fb46a56b0b52bc223b3b10140bc18d66b523d" + integrity sha512-A+YVhh5cFMDrNbnhA754/PT2WrVirQ/zCvGKJz/+yKR+ju97eQc6wZOcu/vYAEsS0+vDZRyR/opD+aOaI3GHZA== + dependencies: + "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-tester" "15.2.3" + "@textlint/ast-traverse" "15.2.3" + "@textlint/feature-flag" "15.2.3" + "@textlint/source-code-fixer" "15.2.3" + "@textlint/types" "15.2.3" + "@textlint/utils" "15.2.3" + debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.2.2", "@textlint/markdown-to-ast@^15.0.0": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.2.tgz#4ba68d75da369e8d086372aa7ab0524ea71984c5" - integrity sha512-7LsDOCApuM5463e4mfJAORyOMDxzJGmfDfoT6RtwL5P1T1kKGxLl5yudzdfm8++WB8v4wJZZEUQqppejeDRs9Q== +"@textlint/markdown-to-ast@15.2.3", "@textlint/markdown-to-ast@^15.0.0": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.3.tgz#b2d0cec3cd88818019044f99e77ca63d0bacec74" + integrity sha512-5kz75TBEOUQIpqCaV65l98YSIpfyOyTKSn4et9A//iSbjiwZHDK3HBo2jDWdkHmGX28+w1hBFDR7/eFMnbxAJQ== dependencies: - "@textlint/ast-node-types" "15.2.2" - debug "^4.4.1" + "@textlint/ast-node-types" "15.2.3" + debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" remark-footnotes "^3.0.0" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.2.tgz#1d9e343169e8b344b588c457f574e21fc9314321" - integrity sha512-Cstr9wjK7toLmY2hhlZ3YcIh8o/gr7E5dpCd9IalNiMBedvvLYuOfhktKgUa4E7oFcGtl0leDPgx5ENDY25JDw== +"@textlint/source-code-fixer@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.3.tgz#6f0a6da5817aee7a5ae0aacff0d91d11d9a30f57" + integrity sha512-DfKy15kGFG8ddEYDyeRKilVI3nTSdEp5/sw7ariyUXk2spAW8xdToRpgeMaluF4Cp5gcGa6bVOTDJapj/UfFvA== dependencies: - "@textlint/types" "15.2.2" - debug "^4.4.1" + "@textlint/types" "15.2.3" + debug "^4.4.3" -"@textlint/text-to-ast@15.2.2", "@textlint/text-to-ast@^15.0.0": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.2.tgz#cd219a698ed5b4dad23dfeef9b5875ae23227610" - integrity sha512-IphrojtJw3eW/1JMm/Hzc0dsDFALpEzjankABS6tIHMvB2O+2wejRDbDaqmgCgMCr+lGKoMNg5Xvlr5x9XRxww== +"@textlint/text-to-ast@15.2.3", "@textlint/text-to-ast@^15.0.0": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.3.tgz#d7e1fc8f67f1b505b7938e7da78a24b56c3a2581" + integrity sha512-xweE4sDTz56tLy90UXcjn/YEYZr2NH/Kh4Kr5FmQ8K4MtJXOVOubnwmN9503/Vmj4Mq9uNuEzR35D4H2LVHriQ== dependencies: - "@textlint/ast-node-types" "15.2.2" + "@textlint/ast-node-types" "15.2.3" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.2.tgz#6d6f2ebee043ba40726d3fe2eeeac282a06f881a" - integrity sha512-JzmHAtC2C4LOpJ/JD2YsqBZt9ej4khFFDI0d9E6P9y9AO/HOEv4GeT7aAjGGPG6AVO977aGiJ92EK9kTwlVnIQ== + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.3.tgz#5d74eaa680f08f483996436fd6e112288561f326" + integrity sha512-fpHuWt1Tonl+UuObH5upByvPWQjd9swu+beMlrSagBWTFblEyNxGwgaQkTjaWC/SYqJn4TkTsT1c1IZJaHV5oQ== dependencies: - "@textlint/markdown-to-ast" "15.2.2" - "@textlint/types" "15.2.2" + "@textlint/markdown-to-ast" "15.2.3" + "@textlint/types" "15.2.3" "@textlint/textlint-plugin-text@^15.0.0": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.2.tgz#eb5aa0fde0d899e21664d329ddbe3062929d2707" - integrity sha512-bZYlxw8S9zsuJgx2EAR23RFyQ3JtyuIDUA3dbt5Sov2eo20LitNjDIqrQgDo85widbOD/6rG7VioNesV1/6HFw== + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.3.tgz#6b17fdffb39f0cead9f9a363bd573e8b2bb0b4b7" + integrity sha512-d5a1dXCYqx3cz8Q8dg5JFqWGbZHbfnYIKsue5DndEY6YtZ99JnaAvReo6GuJK5Pg+6pgOys2OvyZRxFA4D59fQ== dependencies: - "@textlint/text-to-ast" "15.2.2" - "@textlint/types" "15.2.2" + "@textlint/text-to-ast" "15.2.3" + "@textlint/types" "15.2.3" -"@textlint/types@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.2.tgz#9e47d1021ece2cefe1749131b054e1a332cabcda" - integrity sha512-X2BHGAR3yXJsCAjwYEDBIk9qUDWcH4pW61ISfmtejau+tVqKtnbbvEZnMTb6mWgKU1BvTmftd5DmB1XVDUtY3g== +"@textlint/types@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.3.tgz#a0aafa1bcc9ed036a9779e7ba2e035e6953d4344" + integrity sha512-i8XVmDHJwykMXcGgkSxZLjdbeqnl+voYAcIr94KIe0STwgkHIhwHJgb/tEVFawGClHo+gPczF12l1C5+TAZEzQ== dependencies: - "@textlint/ast-node-types" "15.2.2" + "@textlint/ast-node-types" "15.2.3" -"@textlint/utils@15.2.2": - version "15.2.2" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.2.tgz#c362fd4e71072bc216beec8c14c0adb225fbc874" - integrity sha512-uPCfBl2NF4tiXGjAE5DAwah0Bn/EFsgtXhDEIJV4hsSfBQBD8Guqnh8MvJj25fvZaQS+MTNGiEC6bFXtIMHuAg== +"@textlint/utils@15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.3.tgz#7de6bb505fe89ffe79a938755835742eee6fd17b" + integrity sha512-B5OHi1P6JA0Hy04MmmTeNXFTsSfvgbbqQAWj9iUHg+GhPtd8GyFzb0uxLDIp1oqAGN8eM2hR/n8vwz4WsfPqMw== "@types/color-name@^1.1.1": version "1.1.1" @@ -4311,10 +4311,10 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b" - integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== +debug@^4.0.0, debug@^4.4.3: + version "4.4.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" From 45c9bf163f868acdd0017ee020bde5af4c65e6bc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 06:28:23 +0000 Subject: [PATCH 46/51] chore(deps): update textlint to v15.3.0 --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 019e64ad..0931d9a5 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.2.3.tgz#78640b0f651ff2e96de88e07e42b26a418dd8958" - integrity sha512-GEhoxfmh6TF+xC8TJmAUwOzzh0J6sVDqjKhwTTwetf7YDdhHbIv1PuUb/dTadMVIWs1H0+JD4Y27n6LWMmqn9Q== +"@textlint/ast-node-types@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.3.0.tgz#f601848c2c8dc11e543e5d5a264241b3909795e3" + integrity sha512-y61yQXWRVEpUozPUoDUx3Qw8YO86LTU9+LMB23UbPKadM2W2XjKLkKxzzP8A/m0aw4EXozW098E+y55ZmNVZ1w== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.2.3.tgz#1b5e5df5bb7a6d1acb335fa0df65e9976e11172b" - integrity sha512-eT0DBbQTa7Hm0JRRHT9vUv6VoIuY19eqI8UL2I7AzE820DSrrNkgGg/ZxB9I6BCDK/Yg96lJ45fMIeOFPvuJaQ== +"@textlint/ast-tester@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.3.0.tgz#084772316de1f0406cfcb7b444bec078f5a97f2a" + integrity sha512-zJuE1xBmaL4sgv/4bOeQL3A73M/DSZVbAMhimBz42da8y2V6uEyOSxEmA2+oPB0ODYyhzJkxLxYlTYRZel1T/g== dependencies: - "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-node-types" "15.3.0" debug "^4.4.3" -"@textlint/ast-traverse@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.2.3.tgz#aa0140f03c48883ce5833895d3b01d5ab377c068" - integrity sha512-XqlEVbQanAu40pGrtoRJzV3bWUxiCvqpu6FBmHotUgah1jjNWe6DQRkDsjcil9qXrVjXfQFAjG8ZuDk9/sUcGg== +"@textlint/ast-traverse@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.3.0.tgz#ade00ede1af70f7b6d21c3a7da4871db40b88e05" + integrity sha512-Gm/s7ZPWAwQS4v3ZDK1xC+ZTbP5Slxbi6Qt5eOI3KJTM43jIQFQtA301OyApN655hgrK5whcE5FjHgJTwzFjjg== dependencies: - "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-node-types" "15.3.0" -"@textlint/feature-flag@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.2.3.tgz#2c6da3657a5565986f1944ef737dc837b17047ed" - integrity sha512-XW2NVj3K7Pi8jlgwxKMUh7L1y+EMN+s47TtEC1rkagI581THgHnAyAe+/aHZsF/CJEwevZtGnaan2MY1rnbsYA== +"@textlint/feature-flag@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.3.0.tgz#b323cb38032e177ae650f4e66451a6b7881f327a" + integrity sha512-b5Hj9OUQ76ayqTfL65xmWuBYQT/PwtK6hfJmH9oK5vNA0saIJI3dSJMcdPW9uXuXmLeXFp99cWi+Xw5RAtVhfw== "@textlint/kernel@^15.0.0": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.2.3.tgz#071fb46a56b0b52bc223b3b10140bc18d66b523d" - integrity sha512-A+YVhh5cFMDrNbnhA754/PT2WrVirQ/zCvGKJz/+yKR+ju97eQc6wZOcu/vYAEsS0+vDZRyR/opD+aOaI3GHZA== - dependencies: - "@textlint/ast-node-types" "15.2.3" - "@textlint/ast-tester" "15.2.3" - "@textlint/ast-traverse" "15.2.3" - "@textlint/feature-flag" "15.2.3" - "@textlint/source-code-fixer" "15.2.3" - "@textlint/types" "15.2.3" - "@textlint/utils" "15.2.3" + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.3.0.tgz#b01f328be9b05f2ef2a8f10722390a92b14478a7" + integrity sha512-b+ybhjMTusTw68fJKEzOmQB+ahdEXgFpGcVvoA4Ywp+RilK75INN/F2gowEPpjSgkRJl+3DJdXD6ZXzGhFaXAw== + dependencies: + "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-tester" "15.3.0" + "@textlint/ast-traverse" "15.3.0" + "@textlint/feature-flag" "15.3.0" + "@textlint/source-code-fixer" "15.3.0" + "@textlint/types" "15.3.0" + "@textlint/utils" "15.3.0" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.2.3", "@textlint/markdown-to-ast@^15.0.0": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.2.3.tgz#b2d0cec3cd88818019044f99e77ca63d0bacec74" - integrity sha512-5kz75TBEOUQIpqCaV65l98YSIpfyOyTKSn4et9A//iSbjiwZHDK3HBo2jDWdkHmGX28+w1hBFDR7/eFMnbxAJQ== +"@textlint/markdown-to-ast@15.3.0", "@textlint/markdown-to-ast@^15.0.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.3.0.tgz#d2f491cbebb0e0c05f77cf3b42a77f7d676155e8" + integrity sha512-c6MDNoTgEvdaHuz9pkAll6cj4wepM9JFp+jRQItqGXOr07x2//8T2s9+HlQ0i97/r8Rkkj7TzAHS2YxuCyqV/w== dependencies: - "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-node-types" "15.3.0" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.2.3.tgz#6f0a6da5817aee7a5ae0aacff0d91d11d9a30f57" - integrity sha512-DfKy15kGFG8ddEYDyeRKilVI3nTSdEp5/sw7ariyUXk2spAW8xdToRpgeMaluF4Cp5gcGa6bVOTDJapj/UfFvA== +"@textlint/source-code-fixer@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.3.0.tgz#a65f66a575e2525e57a046b49b8681e74ac46e50" + integrity sha512-/OEodu5HL/5U/cVz1fI/jUK23qmpP+ta/o88lvN5nV9S0Dy3SoNAaB/Xj7t1Vx961UhGTBDJ2rAZUnAqT7zjcA== dependencies: - "@textlint/types" "15.2.3" + "@textlint/types" "15.3.0" debug "^4.4.3" -"@textlint/text-to-ast@15.2.3", "@textlint/text-to-ast@^15.0.0": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.2.3.tgz#d7e1fc8f67f1b505b7938e7da78a24b56c3a2581" - integrity sha512-xweE4sDTz56tLy90UXcjn/YEYZr2NH/Kh4Kr5FmQ8K4MtJXOVOubnwmN9503/Vmj4Mq9uNuEzR35D4H2LVHriQ== +"@textlint/text-to-ast@15.3.0", "@textlint/text-to-ast@^15.0.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.3.0.tgz#e3ac6d2368158c08f64e7a16baf6f89a79a313e9" + integrity sha512-3TSBCt76EPC4eEU99hcvysyb+J83ZTNB3d/HSaNu57HbTDIABsaTuZdsf4jhpFZNf4w/dPIg4jWTcRIwv5Vbaw== dependencies: - "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-node-types" "15.3.0" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.2.3.tgz#5d74eaa680f08f483996436fd6e112288561f326" - integrity sha512-fpHuWt1Tonl+UuObH5upByvPWQjd9swu+beMlrSagBWTFblEyNxGwgaQkTjaWC/SYqJn4TkTsT1c1IZJaHV5oQ== + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.3.0.tgz#e74d133af5bde05415fb0f3c932c7f5d383b15ae" + integrity sha512-maTWwuJVY1f+moKiAYBBderHcBn3fK4c3QPVXbBmrHdE13ql/rUrtpC5hemf8J1mk3rEcCO4PPfc++DlAppRZQ== dependencies: - "@textlint/markdown-to-ast" "15.2.3" - "@textlint/types" "15.2.3" + "@textlint/markdown-to-ast" "15.3.0" + "@textlint/types" "15.3.0" "@textlint/textlint-plugin-text@^15.0.0": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.2.3.tgz#6b17fdffb39f0cead9f9a363bd573e8b2bb0b4b7" - integrity sha512-d5a1dXCYqx3cz8Q8dg5JFqWGbZHbfnYIKsue5DndEY6YtZ99JnaAvReo6GuJK5Pg+6pgOys2OvyZRxFA4D59fQ== + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.3.0.tgz#030ab2339d9a3b9a7bf9802dbb94c8b5a68434d2" + integrity sha512-x9MHlFqWv2yuBeo1ZvgbwvznjeyDGOEaJc9BSXLLGXD+vdQcVbxRZm/QD193BCMpED3L1BuqOsQiyYGVIFqe2Q== dependencies: - "@textlint/text-to-ast" "15.2.3" - "@textlint/types" "15.2.3" + "@textlint/text-to-ast" "15.3.0" + "@textlint/types" "15.3.0" -"@textlint/types@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.2.3.tgz#a0aafa1bcc9ed036a9779e7ba2e035e6953d4344" - integrity sha512-i8XVmDHJwykMXcGgkSxZLjdbeqnl+voYAcIr94KIe0STwgkHIhwHJgb/tEVFawGClHo+gPczF12l1C5+TAZEzQ== +"@textlint/types@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.3.0.tgz#d26372662edd4fe7b54ccccdb3d61173970fbaae" + integrity sha512-pOlYZ0TWS5XFek2axLK2KOQJCXC4zEj57u4/YTkN3CU1DtvUsvLQUs5oGSrxTyAGtYPFCYOrSqEzER6252732A== dependencies: - "@textlint/ast-node-types" "15.2.3" + "@textlint/ast-node-types" "15.3.0" -"@textlint/utils@15.2.3": - version "15.2.3" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.2.3.tgz#7de6bb505fe89ffe79a938755835742eee6fd17b" - integrity sha512-B5OHi1P6JA0Hy04MmmTeNXFTsSfvgbbqQAWj9iUHg+GhPtd8GyFzb0uxLDIp1oqAGN8eM2hR/n8vwz4WsfPqMw== +"@textlint/utils@15.3.0": + version "15.3.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.3.0.tgz#51a80c178c9242ffcb37a544cf6218db8dd36c84" + integrity sha512-S9d9bu4hAOyHqsSTAkfhADHIu1csvPu47DseLgL6RIN+x1+UDnnTTULHDiWHfztxlQxMSwoupkRlxyH5O2/LGA== "@types/color-name@^1.1.1": version "1.1.1" From 29a044130e7a9f356b0df9312f2486c5f69f9091 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Nov 2025 06:01:11 +0000 Subject: [PATCH 47/51] chore(deps): update textlint to v15.4.0 (#36) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 0931d9a5..69a3304d 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.3.0.tgz#f601848c2c8dc11e543e5d5a264241b3909795e3" - integrity sha512-y61yQXWRVEpUozPUoDUx3Qw8YO86LTU9+LMB23UbPKadM2W2XjKLkKxzzP8A/m0aw4EXozW098E+y55ZmNVZ1w== +"@textlint/ast-node-types@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.4.0.tgz#d08fe620d3a82fe2265c6ffff66ac6b0c030969f" + integrity sha512-IqY8i7IOGuvy05wZxISB7Me1ZyrvhaQGgx6DavfQjH3cfwpPFdDbDYmMXMuSv2xLS1kDB1kYKBV7fL2Vi16lRA== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.3.0.tgz#084772316de1f0406cfcb7b444bec078f5a97f2a" - integrity sha512-zJuE1xBmaL4sgv/4bOeQL3A73M/DSZVbAMhimBz42da8y2V6uEyOSxEmA2+oPB0ODYyhzJkxLxYlTYRZel1T/g== +"@textlint/ast-tester@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.4.0.tgz#308223246f75598d7a76d902e8950f2970f0fc48" + integrity sha512-R5Wk0FAlEOzBm5WtUUYYYHmHw3quAIbKHB5mLYFVpMew6vNfdIItVxnBLgEGiLBNn3r93D7BniUxbi4itM2HUA== dependencies: - "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-node-types" "15.4.0" debug "^4.4.3" -"@textlint/ast-traverse@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.3.0.tgz#ade00ede1af70f7b6d21c3a7da4871db40b88e05" - integrity sha512-Gm/s7ZPWAwQS4v3ZDK1xC+ZTbP5Slxbi6Qt5eOI3KJTM43jIQFQtA301OyApN655hgrK5whcE5FjHgJTwzFjjg== +"@textlint/ast-traverse@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.4.0.tgz#3e492e2e0e528d124c145d953810630beafdc8c4" + integrity sha512-gzFNjgg3DuBdB8f9mRKjVyVEhAKGpLTKIkyRfG3aX0ZCbpWEaHFNVaZmcXRyQGmloYrMT86XVogGQjJPeiHjfQ== dependencies: - "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-node-types" "15.4.0" -"@textlint/feature-flag@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.3.0.tgz#b323cb38032e177ae650f4e66451a6b7881f327a" - integrity sha512-b5Hj9OUQ76ayqTfL65xmWuBYQT/PwtK6hfJmH9oK5vNA0saIJI3dSJMcdPW9uXuXmLeXFp99cWi+Xw5RAtVhfw== +"@textlint/feature-flag@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.4.0.tgz#c09c976a0f139e469cfc6886a1e9d14465ff0086" + integrity sha512-fDGQJW6wNj2IdBvBzFYreiSw+7WhH1d7SlpqZPA8UX+gUU/TMwXU9VI55OF1QFEy/KPvaD3vtukE3B75wM04Sw== "@textlint/kernel@^15.0.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.3.0.tgz#b01f328be9b05f2ef2a8f10722390a92b14478a7" - integrity sha512-b+ybhjMTusTw68fJKEzOmQB+ahdEXgFpGcVvoA4Ywp+RilK75INN/F2gowEPpjSgkRJl+3DJdXD6ZXzGhFaXAw== - dependencies: - "@textlint/ast-node-types" "15.3.0" - "@textlint/ast-tester" "15.3.0" - "@textlint/ast-traverse" "15.3.0" - "@textlint/feature-flag" "15.3.0" - "@textlint/source-code-fixer" "15.3.0" - "@textlint/types" "15.3.0" - "@textlint/utils" "15.3.0" + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.4.0.tgz#67613aaf7dc408c906969bfb651231f637c51617" + integrity sha512-mXQs1jCoBQJY8jvAF+j4v/JxsGoAGp3AvI98UkXmdhmWCYPbBnQ3zuQ+O9UewvcaoDF5kvjs+dXXfUIn9nJk5g== + dependencies: + "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-tester" "15.4.0" + "@textlint/ast-traverse" "15.4.0" + "@textlint/feature-flag" "15.4.0" + "@textlint/source-code-fixer" "15.4.0" + "@textlint/types" "15.4.0" + "@textlint/utils" "15.4.0" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.3.0", "@textlint/markdown-to-ast@^15.0.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.3.0.tgz#d2f491cbebb0e0c05f77cf3b42a77f7d676155e8" - integrity sha512-c6MDNoTgEvdaHuz9pkAll6cj4wepM9JFp+jRQItqGXOr07x2//8T2s9+HlQ0i97/r8Rkkj7TzAHS2YxuCyqV/w== +"@textlint/markdown-to-ast@15.4.0", "@textlint/markdown-to-ast@^15.0.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.4.0.tgz#729ba4b5a4790f1811a4359dac76f47b0425d03b" + integrity sha512-UnSkL7+6IfOuO9odJZyJdvX3QoO65lFNdR3purldFRWQ6fJ0TY/hshm7y+Hc0TJV2RlwpsSSM1jX32u/FHVBlg== dependencies: - "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-node-types" "15.4.0" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.3.0.tgz#a65f66a575e2525e57a046b49b8681e74ac46e50" - integrity sha512-/OEodu5HL/5U/cVz1fI/jUK23qmpP+ta/o88lvN5nV9S0Dy3SoNAaB/Xj7t1Vx961UhGTBDJ2rAZUnAqT7zjcA== +"@textlint/source-code-fixer@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.4.0.tgz#9a3b71052cd9e1afa53c9342f621076e8a994b1f" + integrity sha512-Uwt+ev491nRFrJBM9A2cRDRUxy/HaIO5Gsgwzrbx6T2yp+owegZXN5hQn60Rm8s8tsKAFMkHm6zc0tovTfDobA== dependencies: - "@textlint/types" "15.3.0" + "@textlint/types" "15.4.0" debug "^4.4.3" -"@textlint/text-to-ast@15.3.0", "@textlint/text-to-ast@^15.0.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.3.0.tgz#e3ac6d2368158c08f64e7a16baf6f89a79a313e9" - integrity sha512-3TSBCt76EPC4eEU99hcvysyb+J83ZTNB3d/HSaNu57HbTDIABsaTuZdsf4jhpFZNf4w/dPIg4jWTcRIwv5Vbaw== +"@textlint/text-to-ast@15.4.0", "@textlint/text-to-ast@^15.0.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.4.0.tgz#20b87ee24eb9cd3db309f26ed0bd984a59060b84" + integrity sha512-X80IrSTUuE0DTuQgeYd0PpiRyBN6L1AB4s71WDAFwqT/0anOxSEJznb0e2mAMu/H/01gZ7xyOfRcil0sZx/jhg== dependencies: - "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-node-types" "15.4.0" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.3.0.tgz#e74d133af5bde05415fb0f3c932c7f5d383b15ae" - integrity sha512-maTWwuJVY1f+moKiAYBBderHcBn3fK4c3QPVXbBmrHdE13ql/rUrtpC5hemf8J1mk3rEcCO4PPfc++DlAppRZQ== + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.4.0.tgz#d4c4a86976e4d24dd0db8faae13f1d7210842f8f" + integrity sha512-fI6lpnqknaVBYWF/mg0nvqcVu0OZ5qh8o8B/pkRYJx67Ku5GmIvHI+tZr907U9WjZH1DAtzvmATwXcQ73Wwilg== dependencies: - "@textlint/markdown-to-ast" "15.3.0" - "@textlint/types" "15.3.0" + "@textlint/markdown-to-ast" "15.4.0" + "@textlint/types" "15.4.0" "@textlint/textlint-plugin-text@^15.0.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.3.0.tgz#030ab2339d9a3b9a7bf9802dbb94c8b5a68434d2" - integrity sha512-x9MHlFqWv2yuBeo1ZvgbwvznjeyDGOEaJc9BSXLLGXD+vdQcVbxRZm/QD193BCMpED3L1BuqOsQiyYGVIFqe2Q== + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.4.0.tgz#e359860ba1d8e2d138cc77535d549dc9a93b7b74" + integrity sha512-Hm2+TI6mFSqfY7n0A11BNwiZj3nj2VWGQvs3kZG5ZuHltUr+ywZUZxD0lKUC4BWW/lqdnIWJSo31Y4fZIA3dGQ== dependencies: - "@textlint/text-to-ast" "15.3.0" - "@textlint/types" "15.3.0" + "@textlint/text-to-ast" "15.4.0" + "@textlint/types" "15.4.0" -"@textlint/types@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.3.0.tgz#d26372662edd4fe7b54ccccdb3d61173970fbaae" - integrity sha512-pOlYZ0TWS5XFek2axLK2KOQJCXC4zEj57u4/YTkN3CU1DtvUsvLQUs5oGSrxTyAGtYPFCYOrSqEzER6252732A== +"@textlint/types@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.4.0.tgz#1f6b778f162281282382687640ee7f1863a05ea0" + integrity sha512-ZMwJgw/xjxJufOD+IB7I2Enl9Si4Hxo04B76RwUZ5cKBKzOPcmd6WvGe2F7jqdgmTdGnfMU+Bo/joQrjPNIWqg== dependencies: - "@textlint/ast-node-types" "15.3.0" + "@textlint/ast-node-types" "15.4.0" -"@textlint/utils@15.3.0": - version "15.3.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.3.0.tgz#51a80c178c9242ffcb37a544cf6218db8dd36c84" - integrity sha512-S9d9bu4hAOyHqsSTAkfhADHIu1csvPu47DseLgL6RIN+x1+UDnnTTULHDiWHfztxlQxMSwoupkRlxyH5O2/LGA== +"@textlint/utils@15.4.0": + version "15.4.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.4.0.tgz#c246a2db77253ca7a71802894e7ce00d9b943336" + integrity sha512-vE3jYW10V4wwu0iBzyrozQKEXtThE4AU4fVLzBmo2NaN3old3/nua8/Drpmkeh49gO9+rXluqP76EpNrvXWm7w== "@types/color-name@^1.1.1": version "1.1.1" From 46a9529796f9d762f5137535ae6a2ad4887e6e44 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 06:45:30 +0000 Subject: [PATCH 48/51] chore(deps): update textlint to v15.4.1 (#37) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 69a3304d..367c4e2f 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.4.0.tgz#d08fe620d3a82fe2265c6ffff66ac6b0c030969f" - integrity sha512-IqY8i7IOGuvy05wZxISB7Me1ZyrvhaQGgx6DavfQjH3cfwpPFdDbDYmMXMuSv2xLS1kDB1kYKBV7fL2Vi16lRA== +"@textlint/ast-node-types@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.4.1.tgz#74e7e8db4ddcbb9b3d4643d13692de3e8799f4c0" + integrity sha512-XifMpBMdo0E1Fuh85YdcYAgy+okNg9WKBzIPIO4JUDnSWUVFihnogrM4cjDapeHkgzSgulwR8oJVJ17eyxI1bA== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.4.0.tgz#308223246f75598d7a76d902e8950f2970f0fc48" - integrity sha512-R5Wk0FAlEOzBm5WtUUYYYHmHw3quAIbKHB5mLYFVpMew6vNfdIItVxnBLgEGiLBNn3r93D7BniUxbi4itM2HUA== +"@textlint/ast-tester@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.4.1.tgz#0609b36aebaf9a2c0e9e53dbf1020fdb91756377" + integrity sha512-qHuPUR9oieieeng5IO29jmtdIbhTaqNAEJKjbvrZxFiuywzWpcvHPry5PjwDWLbbb1SCWCVg6trEOdxBioXkLw== dependencies: - "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-node-types" "15.4.1" debug "^4.4.3" -"@textlint/ast-traverse@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.4.0.tgz#3e492e2e0e528d124c145d953810630beafdc8c4" - integrity sha512-gzFNjgg3DuBdB8f9mRKjVyVEhAKGpLTKIkyRfG3aX0ZCbpWEaHFNVaZmcXRyQGmloYrMT86XVogGQjJPeiHjfQ== +"@textlint/ast-traverse@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.4.1.tgz#d382184807f816f358c759a63167675afef51252" + integrity sha512-GEdGN7QNFckDU/RKX03/nJttlXNOXnbX/nt3kdm2BBKhMY44ADJnQZubi2RXI3tacg+5jGxYmPkX/MQVYJVmxQ== dependencies: - "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-node-types" "15.4.1" -"@textlint/feature-flag@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.4.0.tgz#c09c976a0f139e469cfc6886a1e9d14465ff0086" - integrity sha512-fDGQJW6wNj2IdBvBzFYreiSw+7WhH1d7SlpqZPA8UX+gUU/TMwXU9VI55OF1QFEy/KPvaD3vtukE3B75wM04Sw== +"@textlint/feature-flag@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.4.1.tgz#efdbabf2c4d2f5195eab5c7c9f921f245748033f" + integrity sha512-R7lZR73wGupkTVEAE5PaN3gf+tRswI2H+kuyMKYTucdOfImgfmMHi15jDmAxCw5B9tfMDNgxI0Moba0bOlQ2sg== "@textlint/kernel@^15.0.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.4.0.tgz#67613aaf7dc408c906969bfb651231f637c51617" - integrity sha512-mXQs1jCoBQJY8jvAF+j4v/JxsGoAGp3AvI98UkXmdhmWCYPbBnQ3zuQ+O9UewvcaoDF5kvjs+dXXfUIn9nJk5g== - dependencies: - "@textlint/ast-node-types" "15.4.0" - "@textlint/ast-tester" "15.4.0" - "@textlint/ast-traverse" "15.4.0" - "@textlint/feature-flag" "15.4.0" - "@textlint/source-code-fixer" "15.4.0" - "@textlint/types" "15.4.0" - "@textlint/utils" "15.4.0" + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.4.1.tgz#18e30697105555d7e584d6c6231387c29dbe7856" + integrity sha512-XVh5lGmZA38pYdeJpiR+be/udE2wvtkuN3BIlFnR91V8/C7Wl9hTGrNoubaRgoO6JLnESyRDBH6fJBCBqtyujA== + dependencies: + "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-tester" "15.4.1" + "@textlint/ast-traverse" "15.4.1" + "@textlint/feature-flag" "15.4.1" + "@textlint/source-code-fixer" "15.4.1" + "@textlint/types" "15.4.1" + "@textlint/utils" "15.4.1" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.4.0", "@textlint/markdown-to-ast@^15.0.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.4.0.tgz#729ba4b5a4790f1811a4359dac76f47b0425d03b" - integrity sha512-UnSkL7+6IfOuO9odJZyJdvX3QoO65lFNdR3purldFRWQ6fJ0TY/hshm7y+Hc0TJV2RlwpsSSM1jX32u/FHVBlg== +"@textlint/markdown-to-ast@15.4.1", "@textlint/markdown-to-ast@^15.0.0": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.4.1.tgz#3ac2690ef4d0b44bc6fafce4e4012251e284e437" + integrity sha512-b6+MNADWtXz8c2CP7sWOBbS1YGaZ51h8Ws9efLAT/kltOcGg4nGvIK2Vgs8vmTePcl8kIRfR02bllk2Lc82yyg== dependencies: - "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-node-types" "15.4.1" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.4.0.tgz#9a3b71052cd9e1afa53c9342f621076e8a994b1f" - integrity sha512-Uwt+ev491nRFrJBM9A2cRDRUxy/HaIO5Gsgwzrbx6T2yp+owegZXN5hQn60Rm8s8tsKAFMkHm6zc0tovTfDobA== +"@textlint/source-code-fixer@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.4.1.tgz#f33226dc57947379d6d271b5fe54ba0fdd6922b4" + integrity sha512-Q77Jm2KE/fkJPbq07DacB3O2H9dBt5bjeIyt5YuL+cQeeK6p6stL27VgFehHWZ2EIo4pfrd1O2Qr8U/UbG0pVw== dependencies: - "@textlint/types" "15.4.0" + "@textlint/types" "15.4.1" debug "^4.4.3" -"@textlint/text-to-ast@15.4.0", "@textlint/text-to-ast@^15.0.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.4.0.tgz#20b87ee24eb9cd3db309f26ed0bd984a59060b84" - integrity sha512-X80IrSTUuE0DTuQgeYd0PpiRyBN6L1AB4s71WDAFwqT/0anOxSEJznb0e2mAMu/H/01gZ7xyOfRcil0sZx/jhg== +"@textlint/text-to-ast@15.4.1", "@textlint/text-to-ast@^15.0.0": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.4.1.tgz#b4660c93b8bad4b4c77fdbf22e08cb9f6bf32dfb" + integrity sha512-fo9ZQ/AufHwoffBZU2e+ZmlKb/xj60+zOgh/N+STCrVTZJ96mzejoJhBT/g8yEFPELcW+R9cJ9Yj29dUdmnAkg== dependencies: - "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-node-types" "15.4.1" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.4.0.tgz#d4c4a86976e4d24dd0db8faae13f1d7210842f8f" - integrity sha512-fI6lpnqknaVBYWF/mg0nvqcVu0OZ5qh8o8B/pkRYJx67Ku5GmIvHI+tZr907U9WjZH1DAtzvmATwXcQ73Wwilg== + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.4.1.tgz#fc76d3ab37712334bdb0de415a1a102b5e3e9022" + integrity sha512-8zoZlkh1gzlUZF0R/TtqG6bqKfXdfLrL/+n8ThTTs3TUTbRry9sktGT3itLI0ksgVIygyZPKWlRh3EZdqCPwyw== dependencies: - "@textlint/markdown-to-ast" "15.4.0" - "@textlint/types" "15.4.0" + "@textlint/markdown-to-ast" "15.4.1" + "@textlint/types" "15.4.1" "@textlint/textlint-plugin-text@^15.0.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.4.0.tgz#e359860ba1d8e2d138cc77535d549dc9a93b7b74" - integrity sha512-Hm2+TI6mFSqfY7n0A11BNwiZj3nj2VWGQvs3kZG5ZuHltUr+ywZUZxD0lKUC4BWW/lqdnIWJSo31Y4fZIA3dGQ== + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.4.1.tgz#0881e2e31ed4feebe0a1e2297143ab1c9fb848b7" + integrity sha512-RynPPDMcOev//2FGXOk64+AcA4jQkjKevQCmVnhNcN2IfZdSX3eEvq9oCRdf33vPlCXLKzu2SKY406Pl1NMppw== dependencies: - "@textlint/text-to-ast" "15.4.0" - "@textlint/types" "15.4.0" + "@textlint/text-to-ast" "15.4.1" + "@textlint/types" "15.4.1" -"@textlint/types@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.4.0.tgz#1f6b778f162281282382687640ee7f1863a05ea0" - integrity sha512-ZMwJgw/xjxJufOD+IB7I2Enl9Si4Hxo04B76RwUZ5cKBKzOPcmd6WvGe2F7jqdgmTdGnfMU+Bo/joQrjPNIWqg== +"@textlint/types@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.4.1.tgz#12d0d6bb5163e83d5adc2b1ab02b6ebb71cf832b" + integrity sha512-WByVZ3zblbvuI+voWQplUP7seSTKXI9z6TMVXEB3dY3JFrZCIXWKNfLbETX5lZV7fYkCMaDtILO1l6s11wdbQA== dependencies: - "@textlint/ast-node-types" "15.4.0" + "@textlint/ast-node-types" "15.4.1" -"@textlint/utils@15.4.0": - version "15.4.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.4.0.tgz#c246a2db77253ca7a71802894e7ce00d9b943336" - integrity sha512-vE3jYW10V4wwu0iBzyrozQKEXtThE4AU4fVLzBmo2NaN3old3/nua8/Drpmkeh49gO9+rXluqP76EpNrvXWm7w== +"@textlint/utils@15.4.1": + version "15.4.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.4.1.tgz#5d89727cc4fb0390d7467e1e14c6cd56521bc03b" + integrity sha512-LuKgosjL34ld2OlPIJ7OYhdZfI3byJ0tvojiPi6PK0IIJ2Vk2RtssV84DZJOubedqSTzEN2EBB9tVdtcHcKFUg== "@types/color-name@^1.1.1": version "1.1.1" From ca98659bbf16dd77896fea08827392310eec1ed2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 7 Dec 2025 09:58:37 +0000 Subject: [PATCH 49/51] chore(deps): update textlint to v15.5.0 (#38) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 367c4e2f..0ac3efb4 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.4.1.tgz#74e7e8db4ddcbb9b3d4643d13692de3e8799f4c0" - integrity sha512-XifMpBMdo0E1Fuh85YdcYAgy+okNg9WKBzIPIO4JUDnSWUVFihnogrM4cjDapeHkgzSgulwR8oJVJ17eyxI1bA== +"@textlint/ast-node-types@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.5.0.tgz#943edb1f18591c67bd773cede631fe37ded0cadd" + integrity sha512-K0LEuuTo4rza8yDrlYkRdXLao8Iz/QBMsQdIxRrOOrLYb4HAtZaypZ78c+J6rDA1UlGxadZVLmkkiv4KV5fMKQ== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.4.1.tgz#0609b36aebaf9a2c0e9e53dbf1020fdb91756377" - integrity sha512-qHuPUR9oieieeng5IO29jmtdIbhTaqNAEJKjbvrZxFiuywzWpcvHPry5PjwDWLbbb1SCWCVg6trEOdxBioXkLw== +"@textlint/ast-tester@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.5.0.tgz#db02fa93adc1410b408f414ccb0deaff46b284ff" + integrity sha512-G/DhhuRETUVzRiZw2joZrEG52j2Lq9hY//ohVvxcFva9BI+NqYe4wyqg93QXYYg4jPDEgjX8yQ3CvdOlLvQvmA== dependencies: - "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-node-types" "15.5.0" debug "^4.4.3" -"@textlint/ast-traverse@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.4.1.tgz#d382184807f816f358c759a63167675afef51252" - integrity sha512-GEdGN7QNFckDU/RKX03/nJttlXNOXnbX/nt3kdm2BBKhMY44ADJnQZubi2RXI3tacg+5jGxYmPkX/MQVYJVmxQ== +"@textlint/ast-traverse@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.5.0.tgz#aea46ed1f7897ac8c727367d66ad72edbddf7573" + integrity sha512-6icSA4t/rXuPtddaHGKPfSYTs6mNzrI3Up0n5Xm0dr3CIUL8sUlidhPDEN9fUQ2Gpy31enV+ftQeVcKdrbsR9Q== dependencies: - "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-node-types" "15.5.0" -"@textlint/feature-flag@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.4.1.tgz#efdbabf2c4d2f5195eab5c7c9f921f245748033f" - integrity sha512-R7lZR73wGupkTVEAE5PaN3gf+tRswI2H+kuyMKYTucdOfImgfmMHi15jDmAxCw5B9tfMDNgxI0Moba0bOlQ2sg== +"@textlint/feature-flag@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.5.0.tgz#aaee82c289d453935bc24dada65e86aaaf927075" + integrity sha512-MhoLoR6M8w2BtCc07H2R19i8ydtsr6+40u41u7Lc2ryBufjrTv5d/Uq4l/xniesRR4tm3x4HrM4HeeqY1RTiQA== "@textlint/kernel@^15.0.0": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.4.1.tgz#18e30697105555d7e584d6c6231387c29dbe7856" - integrity sha512-XVh5lGmZA38pYdeJpiR+be/udE2wvtkuN3BIlFnR91V8/C7Wl9hTGrNoubaRgoO6JLnESyRDBH6fJBCBqtyujA== - dependencies: - "@textlint/ast-node-types" "15.4.1" - "@textlint/ast-tester" "15.4.1" - "@textlint/ast-traverse" "15.4.1" - "@textlint/feature-flag" "15.4.1" - "@textlint/source-code-fixer" "15.4.1" - "@textlint/types" "15.4.1" - "@textlint/utils" "15.4.1" + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.5.0.tgz#aa5ebd7aa2ed6683628968dfda3996dfbe433ab0" + integrity sha512-xaq4H4wWd43zekWGXrf5OpmYCoExwLl0BxRySdbm0gtVFh6xPHd4uqjCrd+K2nZYuLw4hCdEMtGzQY4Kip5sdA== + dependencies: + "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-tester" "15.5.0" + "@textlint/ast-traverse" "15.5.0" + "@textlint/feature-flag" "15.5.0" + "@textlint/source-code-fixer" "15.5.0" + "@textlint/types" "15.5.0" + "@textlint/utils" "15.5.0" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.4.1", "@textlint/markdown-to-ast@^15.0.0": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.4.1.tgz#3ac2690ef4d0b44bc6fafce4e4012251e284e437" - integrity sha512-b6+MNADWtXz8c2CP7sWOBbS1YGaZ51h8Ws9efLAT/kltOcGg4nGvIK2Vgs8vmTePcl8kIRfR02bllk2Lc82yyg== +"@textlint/markdown-to-ast@15.5.0", "@textlint/markdown-to-ast@^15.0.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.0.tgz#fec1ead05f0939f82a8d7fae2bd1709b31be780f" + integrity sha512-tZ+2nFT+kBx53Zk876e4fhNBrpIrgNBHWEMKLLxcOoQxxtrSVvghaCm0vjcGTUPrT6B2Sx2yxB35hMmBJy74Rg== dependencies: - "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-node-types" "15.5.0" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.4.1.tgz#f33226dc57947379d6d271b5fe54ba0fdd6922b4" - integrity sha512-Q77Jm2KE/fkJPbq07DacB3O2H9dBt5bjeIyt5YuL+cQeeK6p6stL27VgFehHWZ2EIo4pfrd1O2Qr8U/UbG0pVw== +"@textlint/source-code-fixer@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.5.0.tgz#f63a5088052f8f227c178829fe0dbe0079f169ea" + integrity sha512-z08omVKoHJ22qrG1tnrWtc2/m9XqsRMy4aNqyhSieMYkzVASFjLGf71xs8fdr5pcQ5xC+zGIT2MCQzTwzRSvsg== dependencies: - "@textlint/types" "15.4.1" + "@textlint/types" "15.5.0" debug "^4.4.3" -"@textlint/text-to-ast@15.4.1", "@textlint/text-to-ast@^15.0.0": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.4.1.tgz#b4660c93b8bad4b4c77fdbf22e08cb9f6bf32dfb" - integrity sha512-fo9ZQ/AufHwoffBZU2e+ZmlKb/xj60+zOgh/N+STCrVTZJ96mzejoJhBT/g8yEFPELcW+R9cJ9Yj29dUdmnAkg== +"@textlint/text-to-ast@15.5.0", "@textlint/text-to-ast@^15.0.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.5.0.tgz#30d911aecaba9dfe8f49e780763fe0276bdcb178" + integrity sha512-j4U6Rsc+3ejjuejuWJTXbdYtq6yW/PCTRHJTt8718smJ8KfdS4rqTYR1kbnjU4w4OH0u6UVUigcpKlEmnbzr2g== dependencies: - "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-node-types" "15.5.0" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.4.1.tgz#fc76d3ab37712334bdb0de415a1a102b5e3e9022" - integrity sha512-8zoZlkh1gzlUZF0R/TtqG6bqKfXdfLrL/+n8ThTTs3TUTbRry9sktGT3itLI0ksgVIygyZPKWlRh3EZdqCPwyw== + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.0.tgz#c9b4b97ac1a9bf97367dcfff14469fe70ab24d17" + integrity sha512-1V5e8+dqs+TyBms/Cefa8ZQxZ2FZTDm6BBqpr/Y5xpmlzks3QVT8AbM0WZi8IeP1XNTLnTxXyr6ASFckMb9+vw== dependencies: - "@textlint/markdown-to-ast" "15.4.1" - "@textlint/types" "15.4.1" + "@textlint/markdown-to-ast" "15.5.0" + "@textlint/types" "15.5.0" "@textlint/textlint-plugin-text@^15.0.0": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.4.1.tgz#0881e2e31ed4feebe0a1e2297143ab1c9fb848b7" - integrity sha512-RynPPDMcOev//2FGXOk64+AcA4jQkjKevQCmVnhNcN2IfZdSX3eEvq9oCRdf33vPlCXLKzu2SKY406Pl1NMppw== + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.0.tgz#1417760e7007c9548e0a180e33c38f8a784f86a2" + integrity sha512-gcyagsQIB/D1YiPGA+RD0iUTPz10lpCdYUxRdPswsv4zY5BPathOkwFldbc4fdcX3ZveLgg/k8brjUT1wPKLZw== dependencies: - "@textlint/text-to-ast" "15.4.1" - "@textlint/types" "15.4.1" + "@textlint/text-to-ast" "15.5.0" + "@textlint/types" "15.5.0" -"@textlint/types@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.4.1.tgz#12d0d6bb5163e83d5adc2b1ab02b6ebb71cf832b" - integrity sha512-WByVZ3zblbvuI+voWQplUP7seSTKXI9z6TMVXEB3dY3JFrZCIXWKNfLbETX5lZV7fYkCMaDtILO1l6s11wdbQA== +"@textlint/types@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.5.0.tgz#8412f2dd789ad1aad1494754fad02ee4d2adcf7b" + integrity sha512-EjAPbuA+3NyQ9WyFP7iUlddi35F3mGrf4tb4cZM0nWywbtEJ3+XAYqL+5RsF0qFeSguxGir09NdZOWrG9wVOUQ== dependencies: - "@textlint/ast-node-types" "15.4.1" + "@textlint/ast-node-types" "15.5.0" -"@textlint/utils@15.4.1": - version "15.4.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.4.1.tgz#5d89727cc4fb0390d7467e1e14c6cd56521bc03b" - integrity sha512-LuKgosjL34ld2OlPIJ7OYhdZfI3byJ0tvojiPi6PK0IIJ2Vk2RtssV84DZJOubedqSTzEN2EBB9tVdtcHcKFUg== +"@textlint/utils@15.5.0": + version "15.5.0" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.5.0.tgz#145a8d6cbefecafbb072f803c3037e014804bc4f" + integrity sha512-r6IybQjfeAUKT2kMjsoSX7Z3eqGjBhJ6bucWt6JGMclfmrOmr9W8Xctm3lBgP12U2lEJs4kKlUh7npU44gHTlw== "@types/color-name@^1.1.1": version "1.1.1" From 229c63ae90760d0184d8250624675ef819552d34 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 11:08:07 +0000 Subject: [PATCH 50/51] chore(deps): update textlint to v15.5.1 --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 0ac3efb4..6166a534 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.5.0.tgz#943edb1f18591c67bd773cede631fe37ded0cadd" - integrity sha512-K0LEuuTo4rza8yDrlYkRdXLao8Iz/QBMsQdIxRrOOrLYb4HAtZaypZ78c+J6rDA1UlGxadZVLmkkiv4KV5fMKQ== +"@textlint/ast-node-types@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.5.1.tgz#4c3d2884efdee58d440dfe9f18a669a783d2f45e" + integrity sha512-2ABQSaQoM9u9fycXLJKcCv4XQulJWTUSwjo6F0i/ujjqOH8/AZ2A0RDKKbAddqxDhuabVB20lYoEsZZgzehccg== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.5.0.tgz#db02fa93adc1410b408f414ccb0deaff46b284ff" - integrity sha512-G/DhhuRETUVzRiZw2joZrEG52j2Lq9hY//ohVvxcFva9BI+NqYe4wyqg93QXYYg4jPDEgjX8yQ3CvdOlLvQvmA== +"@textlint/ast-tester@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.5.1.tgz#dfad876b6e9227b142cfd90955baf0753def3e5e" + integrity sha512-uTYG/WxIC4N91WMTazmgk1UdSBSiepuQNPYFClIcW2d6QnXGdpY3wXRtIWQTSq0oDJef0Sw7ogYz14QnRwGevA== dependencies: - "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-node-types" "15.5.1" debug "^4.4.3" -"@textlint/ast-traverse@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.5.0.tgz#aea46ed1f7897ac8c727367d66ad72edbddf7573" - integrity sha512-6icSA4t/rXuPtddaHGKPfSYTs6mNzrI3Up0n5Xm0dr3CIUL8sUlidhPDEN9fUQ2Gpy31enV+ftQeVcKdrbsR9Q== +"@textlint/ast-traverse@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.5.1.tgz#05568a0670f320667a6a55ee07774da00251a660" + integrity sha512-eDMyh5NPXn9UB8PlWl5fyHciCdItv4Wf9WDhRqD2GkeIHuznnkdvJT37ij+O3sZSdRb4YolIoyAT1KbLknCbMw== dependencies: - "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-node-types" "15.5.1" -"@textlint/feature-flag@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.5.0.tgz#aaee82c289d453935bc24dada65e86aaaf927075" - integrity sha512-MhoLoR6M8w2BtCc07H2R19i8ydtsr6+40u41u7Lc2ryBufjrTv5d/Uq4l/xniesRR4tm3x4HrM4HeeqY1RTiQA== +"@textlint/feature-flag@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.5.1.tgz#42cc914b595fd7b1678c8919f48f461abe3adf41" + integrity sha512-wj+DjPBu1prT4UBUsUIw7JBddmGbFwF8rjtfre+h7NFgH9eehs91XV4vVk7559546TJ37JmG/VVQ4sYCPZJZmA== "@textlint/kernel@^15.0.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.5.0.tgz#aa5ebd7aa2ed6683628968dfda3996dfbe433ab0" - integrity sha512-xaq4H4wWd43zekWGXrf5OpmYCoExwLl0BxRySdbm0gtVFh6xPHd4uqjCrd+K2nZYuLw4hCdEMtGzQY4Kip5sdA== - dependencies: - "@textlint/ast-node-types" "15.5.0" - "@textlint/ast-tester" "15.5.0" - "@textlint/ast-traverse" "15.5.0" - "@textlint/feature-flag" "15.5.0" - "@textlint/source-code-fixer" "15.5.0" - "@textlint/types" "15.5.0" - "@textlint/utils" "15.5.0" + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.5.1.tgz#8b900c017ee6229f5c7256324e91743691651a84" + integrity sha512-O1j8q7SVY+XHTv9WijC8S66mHk2/T+22kHCbHLpsdZu+ng1AIBd0/l61+DmLRE6iB/iU+A7nKScRclfHcmMoXw== + dependencies: + "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-tester" "15.5.1" + "@textlint/ast-traverse" "15.5.1" + "@textlint/feature-flag" "15.5.1" + "@textlint/source-code-fixer" "15.5.1" + "@textlint/types" "15.5.1" + "@textlint/utils" "15.5.1" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.5.0", "@textlint/markdown-to-ast@^15.0.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.0.tgz#fec1ead05f0939f82a8d7fae2bd1709b31be780f" - integrity sha512-tZ+2nFT+kBx53Zk876e4fhNBrpIrgNBHWEMKLLxcOoQxxtrSVvghaCm0vjcGTUPrT6B2Sx2yxB35hMmBJy74Rg== +"@textlint/markdown-to-ast@15.5.1", "@textlint/markdown-to-ast@^15.0.0": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.1.tgz#759cd26179faf8c2ab4aa49d49d467b6fc5a2944" + integrity sha512-AURGlE1VxKqIKCk81DkBf5GvTX/GBZ+iGBdxkwiRhjDKOTLSWXM5yklcnlaTiytP+iDTERrtqq9ow260Bw13xQ== dependencies: - "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-node-types" "15.5.1" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.5.0.tgz#f63a5088052f8f227c178829fe0dbe0079f169ea" - integrity sha512-z08omVKoHJ22qrG1tnrWtc2/m9XqsRMy4aNqyhSieMYkzVASFjLGf71xs8fdr5pcQ5xC+zGIT2MCQzTwzRSvsg== +"@textlint/source-code-fixer@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.5.1.tgz#c28dc11374ecbc17e7ddb63d3bcab75e314dadbb" + integrity sha512-2S6R+skCrDqo5GuTclnibpnmmoys6qcuvSw8qYVvlMAdf8rxUMBVAwXzwNYlVK3Hdp9UqEPuNP0Bd6QFNI6TUA== dependencies: - "@textlint/types" "15.5.0" + "@textlint/types" "15.5.1" debug "^4.4.3" -"@textlint/text-to-ast@15.5.0", "@textlint/text-to-ast@^15.0.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.5.0.tgz#30d911aecaba9dfe8f49e780763fe0276bdcb178" - integrity sha512-j4U6Rsc+3ejjuejuWJTXbdYtq6yW/PCTRHJTt8718smJ8KfdS4rqTYR1kbnjU4w4OH0u6UVUigcpKlEmnbzr2g== +"@textlint/text-to-ast@15.5.1", "@textlint/text-to-ast@^15.0.0": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.5.1.tgz#36f0ebeb3ab7088e6aa9d236930c8b9fb7ad3a45" + integrity sha512-MYDyJSqI8MhYb062N2DoyaSQkzTai/7wsgXbCEfnVODjBSy/eDE0ElUEwmneJxhDLam71LDOfRLYVVfHyijGAw== dependencies: - "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-node-types" "15.5.1" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.0.tgz#c9b4b97ac1a9bf97367dcfff14469fe70ab24d17" - integrity sha512-1V5e8+dqs+TyBms/Cefa8ZQxZ2FZTDm6BBqpr/Y5xpmlzks3QVT8AbM0WZi8IeP1XNTLnTxXyr6ASFckMb9+vw== + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.1.tgz#6b2359f19ea4b616777e006105148c8d4d734dbd" + integrity sha512-3//2wd6O7GGh8TUveFq4bW4vUtqBBmzVWq0Tzxoe2Kw8Uil8PLdRlwcV8jbIWC/lc+RTykf7pTR1MkaX7h8YOQ== dependencies: - "@textlint/markdown-to-ast" "15.5.0" - "@textlint/types" "15.5.0" + "@textlint/markdown-to-ast" "15.5.1" + "@textlint/types" "15.5.1" "@textlint/textlint-plugin-text@^15.0.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.0.tgz#1417760e7007c9548e0a180e33c38f8a784f86a2" - integrity sha512-gcyagsQIB/D1YiPGA+RD0iUTPz10lpCdYUxRdPswsv4zY5BPathOkwFldbc4fdcX3ZveLgg/k8brjUT1wPKLZw== + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.1.tgz#075febf7d6f1fc49994e2439c15cfecb9ca9b114" + integrity sha512-BkQcrpR5da6+eaL03s5HfgC0MR3eLBJDussfs5CuUUxQrtlN5PoUL/vSX44NTCn4KGscUQD0wN2gsChMMvo8Xg== dependencies: - "@textlint/text-to-ast" "15.5.0" - "@textlint/types" "15.5.0" + "@textlint/text-to-ast" "15.5.1" + "@textlint/types" "15.5.1" -"@textlint/types@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.5.0.tgz#8412f2dd789ad1aad1494754fad02ee4d2adcf7b" - integrity sha512-EjAPbuA+3NyQ9WyFP7iUlddi35F3mGrf4tb4cZM0nWywbtEJ3+XAYqL+5RsF0qFeSguxGir09NdZOWrG9wVOUQ== +"@textlint/types@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.5.1.tgz#c3de2945dbf9641855be437ccc66c972cbebf54e" + integrity sha512-IY1OVZZk8LOOrbapYCsaeH7XSJT89HVukixDT8CoiWMrKGCTCZ3/Kzoa3DtMMbY8jtY777QmPOVCNnR+8fF6YQ== dependencies: - "@textlint/ast-node-types" "15.5.0" + "@textlint/ast-node-types" "15.5.1" -"@textlint/utils@15.5.0": - version "15.5.0" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.5.0.tgz#145a8d6cbefecafbb072f803c3037e014804bc4f" - integrity sha512-r6IybQjfeAUKT2kMjsoSX7Z3eqGjBhJ6bucWt6JGMclfmrOmr9W8Xctm3lBgP12U2lEJs4kKlUh7npU44gHTlw== +"@textlint/utils@15.5.1": + version "15.5.1" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.5.1.tgz#894474d2c8ef1977a5a2a9774dc01e27ba459587" + integrity sha512-3iA0ogHh6hyTsd+9uVoctAH3sLw/4EUCNrypkMQthnFz32Qe875uR0C5GJdB1LudVqgj8ivvverVaAdTtGGENg== "@types/color-name@^1.1.1": version "1.1.1" From cd18a0c516b9ca394674d3cd9500216fdc49685b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Feb 2026 12:50:33 +0000 Subject: [PATCH 51/51] chore(deps): update textlint to v15.5.2 (#40) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- website/yarn.lock | 126 +++++++++++++++++++++++----------------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/website/yarn.lock b/website/yarn.lock index 6166a534..7bf3ad0c 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1326,58 +1326,58 @@ resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f" integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA== -"@textlint/ast-node-types@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.5.1.tgz#4c3d2884efdee58d440dfe9f18a669a783d2f45e" - integrity sha512-2ABQSaQoM9u9fycXLJKcCv4XQulJWTUSwjo6F0i/ujjqOH8/AZ2A0RDKKbAddqxDhuabVB20lYoEsZZgzehccg== +"@textlint/ast-node-types@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-15.5.2.tgz#f5a2dd9f85b17c06e111b5e0dde62086b6970009" + integrity sha512-fCaOxoup5LIyBEo7R1oYWE7V4bSX0KQeHh66twon9e9usaLE3ijgF8QjYsR6joCssdeCHVd0wHm7ppsEyTr6vg== "@textlint/ast-node-types@^13.0.5": version "13.4.1" resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.4.1.tgz#00424f7b9bc6fe15cf6a78468ffe1e5d1adce5b2" integrity sha512-qrZyhCh8Ekk6nwArx3BROybm9BnX6vF7VcZbijetV/OM3yfS4rTYhoMWISmhVEP2H2re0CtWEyMl/XF+WdvVLQ== -"@textlint/ast-tester@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.5.1.tgz#dfad876b6e9227b142cfd90955baf0753def3e5e" - integrity sha512-uTYG/WxIC4N91WMTazmgk1UdSBSiepuQNPYFClIcW2d6QnXGdpY3wXRtIWQTSq0oDJef0Sw7ogYz14QnRwGevA== +"@textlint/ast-tester@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-15.5.2.tgz#ac1ea961a0858049de861ee45c61de85cded1b0f" + integrity sha512-xlGt3fEUC9NkGNmd7WIzIoQvxs/fOISvrco6fedSCCji0iqVwc6fw4atb2iTM/eGg4IbPlBVpjnLBduB5FpekA== dependencies: - "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-node-types" "15.5.2" debug "^4.4.3" -"@textlint/ast-traverse@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.5.1.tgz#05568a0670f320667a6a55ee07774da00251a660" - integrity sha512-eDMyh5NPXn9UB8PlWl5fyHciCdItv4Wf9WDhRqD2GkeIHuznnkdvJT37ij+O3sZSdRb4YolIoyAT1KbLknCbMw== +"@textlint/ast-traverse@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-15.5.2.tgz#d6b48206eb10a3be959e79e44e83b3bbbcf1dc39" + integrity sha512-8lpRDjFAN+I/4hGo+0YRIpsk1YfiI223oulFkb8gL0/PCGrdw798mfV+czKIS0/fr1Eq/fYbOzbHpoATDA4GBA== dependencies: - "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-node-types" "15.5.2" -"@textlint/feature-flag@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.5.1.tgz#42cc914b595fd7b1678c8919f48f461abe3adf41" - integrity sha512-wj+DjPBu1prT4UBUsUIw7JBddmGbFwF8rjtfre+h7NFgH9eehs91XV4vVk7559546TJ37JmG/VVQ4sYCPZJZmA== +"@textlint/feature-flag@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-15.5.2.tgz#7819bc602d4f031b018ab7f3be660b9176802426" + integrity sha512-1KYloMwk20rkrqES15O+wSVUIPk/Vg1ol3zdtp6vT3E43Yj7mlQPwHkTr0J/XSmoJdm/s8cn86ds/KgWrm+i+g== "@textlint/kernel@^15.0.0": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.5.1.tgz#8b900c017ee6229f5c7256324e91743691651a84" - integrity sha512-O1j8q7SVY+XHTv9WijC8S66mHk2/T+22kHCbHLpsdZu+ng1AIBd0/l61+DmLRE6iB/iU+A7nKScRclfHcmMoXw== - dependencies: - "@textlint/ast-node-types" "15.5.1" - "@textlint/ast-tester" "15.5.1" - "@textlint/ast-traverse" "15.5.1" - "@textlint/feature-flag" "15.5.1" - "@textlint/source-code-fixer" "15.5.1" - "@textlint/types" "15.5.1" - "@textlint/utils" "15.5.1" + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-15.5.2.tgz#f891f495bb8b2d7e714be370c2b7b8e25d5d6868" + integrity sha512-UyDgebb5TQnZiFGGlF5yRIDXzvPa7TF+0ProCvrOp7/w88beZOkCx4YY53h5q69DdlKMOyUI9AdMjqLzpfzvnA== + dependencies: + "@textlint/ast-node-types" "15.5.2" + "@textlint/ast-tester" "15.5.2" + "@textlint/ast-traverse" "15.5.2" + "@textlint/feature-flag" "15.5.2" + "@textlint/source-code-fixer" "15.5.2" + "@textlint/types" "15.5.2" + "@textlint/utils" "15.5.2" debug "^4.4.3" fast-equals "^4.0.3" structured-source "^4.0.0" -"@textlint/markdown-to-ast@15.5.1", "@textlint/markdown-to-ast@^15.0.0": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.1.tgz#759cd26179faf8c2ab4aa49d49d467b6fc5a2944" - integrity sha512-AURGlE1VxKqIKCk81DkBf5GvTX/GBZ+iGBdxkwiRhjDKOTLSWXM5yklcnlaTiytP+iDTERrtqq9ow260Bw13xQ== +"@textlint/markdown-to-ast@15.5.2", "@textlint/markdown-to-ast@^15.0.0": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-15.5.2.tgz#7c7a50c528534666cb3affa397b1d4b72f9a2950" + integrity sha512-eLEeIb7jcyWiG1jahr3pl3z8dEYEgLPdz7lBG3AP8aB4m8Sv0SdL0mCD0tfR5hNp8FrOEXldqh1g2PMuiXlN3w== dependencies: - "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-node-types" "15.5.2" debug "^4.4.3" mdast-util-gfm-autolink-literal "^0.1.3" neotraverse "^0.6.18" @@ -1388,48 +1388,48 @@ structured-source "^4.0.0" unified "^9.2.2" -"@textlint/source-code-fixer@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.5.1.tgz#c28dc11374ecbc17e7ddb63d3bcab75e314dadbb" - integrity sha512-2S6R+skCrDqo5GuTclnibpnmmoys6qcuvSw8qYVvlMAdf8rxUMBVAwXzwNYlVK3Hdp9UqEPuNP0Bd6QFNI6TUA== +"@textlint/source-code-fixer@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-15.5.2.tgz#3b7990dadc6dfa6441e46b18dc2cde1182501b26" + integrity sha512-9MMhrvX4uQOEYM+C3kbVsq1O2U7tOTc0l3rMiJzniwqq57AgP/AxDRz20ujh2OGE7Qw4E2y8KyM/3XMi0HvUHQ== dependencies: - "@textlint/types" "15.5.1" + "@textlint/types" "15.5.2" debug "^4.4.3" -"@textlint/text-to-ast@15.5.1", "@textlint/text-to-ast@^15.0.0": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.5.1.tgz#36f0ebeb3ab7088e6aa9d236930c8b9fb7ad3a45" - integrity sha512-MYDyJSqI8MhYb062N2DoyaSQkzTai/7wsgXbCEfnVODjBSy/eDE0ElUEwmneJxhDLam71LDOfRLYVVfHyijGAw== +"@textlint/text-to-ast@15.5.2", "@textlint/text-to-ast@^15.0.0": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-15.5.2.tgz#320943ca0aafc8c7594e3b38abc3dd33bbe87b4e" + integrity sha512-7cFC1Em9W3g8ilrelDftGmRzlwG+5+jx2HLJ4h4uAl+Ib42bfCtDdBnvh3dRomgu4Z36Tj0F3qMBFgxNoQhZeA== dependencies: - "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-node-types" "15.5.2" "@textlint/textlint-plugin-markdown@^15.0.0": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.1.tgz#6b2359f19ea4b616777e006105148c8d4d734dbd" - integrity sha512-3//2wd6O7GGh8TUveFq4bW4vUtqBBmzVWq0Tzxoe2Kw8Uil8PLdRlwcV8jbIWC/lc+RTykf7pTR1MkaX7h8YOQ== + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-15.5.2.tgz#97ac71f3d5ae1c76d23bf0a216b8aebb4fe619c9" + integrity sha512-aaXWlFmhX+8uUibMX/+nUvqH2/C/SptW24YFUVMhCLPiEtfiYsZbT8qVtuYMH6L/MXAzjOgVSRuDcceoI7csJA== dependencies: - "@textlint/markdown-to-ast" "15.5.1" - "@textlint/types" "15.5.1" + "@textlint/markdown-to-ast" "15.5.2" + "@textlint/types" "15.5.2" "@textlint/textlint-plugin-text@^15.0.0": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.1.tgz#075febf7d6f1fc49994e2439c15cfecb9ca9b114" - integrity sha512-BkQcrpR5da6+eaL03s5HfgC0MR3eLBJDussfs5CuUUxQrtlN5PoUL/vSX44NTCn4KGscUQD0wN2gsChMMvo8Xg== + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-15.5.2.tgz#a9743d27eb266c22e6ba1edf57f800cee67f54f4" + integrity sha512-KlXPdhz5AFoBAu0bYqBuwz0ws0P5ACmXs7BFoc8719o+nK+ONSgQ+UEyl89NzGepweIqQHnlxTGcibvxu0z8Ew== dependencies: - "@textlint/text-to-ast" "15.5.1" - "@textlint/types" "15.5.1" + "@textlint/text-to-ast" "15.5.2" + "@textlint/types" "15.5.2" -"@textlint/types@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.5.1.tgz#c3de2945dbf9641855be437ccc66c972cbebf54e" - integrity sha512-IY1OVZZk8LOOrbapYCsaeH7XSJT89HVukixDT8CoiWMrKGCTCZ3/Kzoa3DtMMbY8jtY777QmPOVCNnR+8fF6YQ== +"@textlint/types@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/types/-/types-15.5.2.tgz#c751091e98a4ec8f4e285cbf90b6c5ab8af44d90" + integrity sha512-sJOrlVLLXp4/EZtiWKWq9y2fWyZlI8GP+24rnU5avtPWBIMm/1w97yzKrAqYF8czx2MqR391z5akhnfhj2f/AQ== dependencies: - "@textlint/ast-node-types" "15.5.1" + "@textlint/ast-node-types" "15.5.2" -"@textlint/utils@15.5.1": - version "15.5.1" - resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.5.1.tgz#894474d2c8ef1977a5a2a9774dc01e27ba459587" - integrity sha512-3iA0ogHh6hyTsd+9uVoctAH3sLw/4EUCNrypkMQthnFz32Qe875uR0C5GJdB1LudVqgj8ivvverVaAdTtGGENg== +"@textlint/utils@15.5.2": + version "15.5.2" + resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-15.5.2.tgz#58f8d0243cf00d520fb91d3a7b6071ae70430ed0" + integrity sha512-g7Zs8QDZJspno9C7i5iGdwuJ07SxCHWIgxpAebwX503sup4w5IOo3q0X/LxRdl1F4sSAFw/m2glYZomOieNPCw== "@types/color-name@^1.1.1": version "1.1.1"