From c30713f44cda56481909cb9e9208afbc885e6cbd Mon Sep 17 00:00:00 2001 From: Chetabahana Date: Tue, 12 Nov 2019 21:22:31 +0700 Subject: [PATCH 1/5] disable liquid processing engine using the raw tag --- deps/npm/node_modules/balanced-match/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/npm/node_modules/balanced-match/README.md b/deps/npm/node_modules/balanced-match/README.md index 08e918c0db9a62..127dde68f108ac 100644 --- a/deps/npm/node_modules/balanced-match/README.md +++ b/deps/npm/node_modules/balanced-match/README.md @@ -46,7 +46,7 @@ object with those keys: * **post** the postscript, `a` and `b` not included If there's no match, `undefined` will be returned. - +{% raw %} If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`. ### var r = balanced.range(a, b, str) @@ -57,7 +57,7 @@ array with indexes: `[ , ]`. If there's no match, `undefined` will be returned. If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`. - +{% endraw %} ## Installation With [npm](https://npmjs.org) do: From 0f9e4514ca701986593ce744ce79f80ebdc183f6 Mon Sep 17 00:00:00 2001 From: Chetabahana Date: Tue, 12 Nov 2019 21:31:41 +0700 Subject: [PATCH 2/5] disable liquid processing engine using the raw tag --- deps/npm/node_modules/brace-expansion/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/npm/node_modules/brace-expansion/README.md b/deps/npm/node_modules/brace-expansion/README.md index bbfd3fcb88c8e4..aa5c0a31eeb022 100644 --- a/deps/npm/node_modules/brace-expansion/README.md +++ b/deps/npm/node_modules/brace-expansion/README.md @@ -37,10 +37,10 @@ expand('file-{a..e..2}.jpg') expand('file{00..10..5}.jpg') // => ['file00.jpg', 'file05.jpg', 'file10.jpg'] - +{% raw %} expand('{{A..C},{a..c}}') // => ['A', 'B', 'C', 'a', 'b', 'c'] - +{% endraw %} expand('ppp{,config,oe{,conf}}') // => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf'] ``` From 74957e00d179f8a41fc634692da30c9c1623abd7 Mon Sep 17 00:00:00 2001 From: Chetabahana Date: Tue, 12 Nov 2019 21:41:22 +0700 Subject: [PATCH 3/5] disable liquid processing engine using the raw tag --- deps/npm/node_modules/decode-uri-component/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/npm/node_modules/decode-uri-component/readme.md b/deps/npm/node_modules/decode-uri-component/readme.md index 795c87ff7751de..47c0e09163b31f 100644 --- a/deps/npm/node_modules/decode-uri-component/readme.md +++ b/deps/npm/node_modules/decode-uri-component/readme.md @@ -39,10 +39,10 @@ decodeUriComponent('%st%C3%A5le%'); decodeUriComponent('%%7Bst%C3%A5le%7D%'); //=> '%{ståle}%' - +{% raw %} decodeUriComponent('%7B%ab%%7C%de%%7D'); //=> '{%ab%|%de%}' - +{% endraw %} decodeUriComponent('%FE%FF'); //=> '\uFFFD\uFFFD' From 98af37378abcbd7b79bbb2e743ea348dba2c9e63 Mon Sep 17 00:00:00 2001 From: Chetabahana Date: Tue, 12 Nov 2019 21:53:27 +0700 Subject: [PATCH 4/5] disable liquid processing engine using the raw tag --- .../node_modules/eslint/node_modules/balanced-match/README.md | 4 ++-- .../eslint/node_modules/brace-expansion/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/node_modules/eslint/node_modules/balanced-match/README.md b/tools/node_modules/eslint/node_modules/balanced-match/README.md index 08e918c0db9a62..127dde68f108ac 100644 --- a/tools/node_modules/eslint/node_modules/balanced-match/README.md +++ b/tools/node_modules/eslint/node_modules/balanced-match/README.md @@ -46,7 +46,7 @@ object with those keys: * **post** the postscript, `a` and `b` not included If there's no match, `undefined` will be returned. - +{% raw %} If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`. ### var r = balanced.range(a, b, str) @@ -57,7 +57,7 @@ array with indexes: `[ , ]`. If there's no match, `undefined` will be returned. If the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`. - +{% endraw %} ## Installation With [npm](https://npmjs.org) do: diff --git a/tools/node_modules/eslint/node_modules/brace-expansion/README.md b/tools/node_modules/eslint/node_modules/brace-expansion/README.md index 6b4e0e16409152..5323bcbb6f8e6d 100644 --- a/tools/node_modules/eslint/node_modules/brace-expansion/README.md +++ b/tools/node_modules/eslint/node_modules/brace-expansion/README.md @@ -37,10 +37,10 @@ expand('file-{a..e..2}.jpg') expand('file{00..10..5}.jpg') // => ['file00.jpg', 'file05.jpg', 'file10.jpg'] - +{% raw %} expand('{{A..C},{a..c}}') // => ['A', 'B', 'C', 'a', 'b', 'c'] - +{% endraw %} expand('ppp{,config,oe{,conf}}') // => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf'] ``` From 78cceaf0663e38d6da337bc42d6a774981f0b9da Mon Sep 17 00:00:00 2001 From: Chetabahana Date: Tue, 12 Nov 2019 22:11:13 +0700 Subject: [PATCH 5/5] rename exe file to by pass page build warning Warning details: The page build completed successfully, but returned the following warning for the `gh-pages` branch: It looks like you're using GitHub Pages to distribute binary files. We strongly suggest that you use releases to ship projects on GitHub. Releases are GitHub's way of packaging and providing software to your users. You can think of it as a replacement to using downloads to provide software. We found the following file(s) which may be a good candidate for releases: deps/npm/node_modules/term-size/vendor/windows/term-size.exe. For more information, see https://help.github.com/en/github/administering-a-repository/about-releases. --- .../vendor/windows/{term-size.exe => term-size_exe} | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename deps/npm/node_modules/term-size/vendor/windows/{term-size.exe => term-size_exe} (100%) diff --git a/deps/npm/node_modules/term-size/vendor/windows/term-size.exe b/deps/npm/node_modules/term-size/vendor/windows/term-size_exe similarity index 100% rename from deps/npm/node_modules/term-size/vendor/windows/term-size.exe rename to deps/npm/node_modules/term-size/vendor/windows/term-size_exe