From 4e442faec450300a52855feecd014c3527ec40ba Mon Sep 17 00:00:00 2001
From: azu
Date: Sun, 29 Jan 2023 21:49:15 +0900
Subject: [PATCH] Rewrite html plugin (#23)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Rewrite ALL!!!
## Breaking Changes
- Require [textlint v13.0.0](https://textlint.github.io/blog/2023/01/27/textlint-13.html)+
- html plugin is written in Pure ESM
- Require Node.js 16+
- Convert JavaScript to TypeScript
## Features
- use [rehype](https://github.com/rehypejs/rehype#readme) instead of hast
- support `
\n\n
\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element-loose-close-document/output-tree.txt b/test/ast-test-case/element-loose-close-document/output-tree.txt
new file mode 100644
index 0000000..9d50861
--- /dev/null
+++ b/test/ast-test-case/element-loose-close-document/output-tree.txt
@@ -0,0 +1,10 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ div(element)
+ Paragraph(element)
+ Str(text)
diff --git a/test/ast-test-case/element-loose-close-document/output.json b/test/ast-test-case/element-loose-close-document/output.json
new file mode 100644
index 0000000..9df85ef
--- /dev/null
+++ b/test/ast-test-case/element-loose-close-document/output.json
@@ -0,0 +1,281 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n\n\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 27,
+ "offset": 26
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 29
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 26
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 26,
+ 29
+ ],
+ "raw": "\n\n\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 5,
+ "offset": 33
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 35
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 4
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 33,
+ 35
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "div",
+ "tagName": "div",
+ "properties": {},
+ "children": [
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 15
+ }
+ },
+ "range": [
+ 35,
+ 50
+ ],
+ "raw": "
"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 1,
+ "offset": 35
+ },
+ "end": {
+ "line": 6,
+ "column": 16,
+ "offset": 50
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 15
+ }
+ },
+ "range": [
+ 35,
+ 50
+ ],
+ "raw": "
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 16,
+ "offset": 50
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 15
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 50,
+ 51
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/element-loose-close-fragment/index.json b/test/ast-test-case/element-loose-close-fragment/index.json
deleted file mode 100644
index e941814..0000000
--- a/test/ast-test-case/element-loose-close-fragment/index.json
+++ /dev/null
@@ -1,162 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Html",
- "tagName": "body",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 19
- }
- },
- "range": [
- 0,
- 19
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n\n\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 26
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 26,
- 29
- ],
- "raw": "\n\n\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 4,
- "column": 3
- },
- "end": {
- "line": 4,
- "column": 4
- }
- },
- "range": [
- 32,
- 33
- ],
- "raw": ">"
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 4,
- "column": 3
- },
- "end": {
- "line": 6,
- "column": 0
- }
- },
- "range": [
- 32,
- 35
- ],
- "raw": ">\n\n"
- },
- {
- "type": "Html",
- "tagName": "div",
- "properties": {},
- "children": [
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 6,
- "column": 8
- },
- "end": {
- "line": 6,
- "column": 9
- }
- },
- "range": [
- 43,
- 44
- ],
- "raw": ">"
- }
- ],
- "loc": {
- "start": {
- "line": 6,
- "column": 0
- },
- "end": {
- "line": 6,
- "column": 14
- }
- },
- "range": [
- 35,
- 49
- ],
- "raw": "
\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 7,
- "column": 0
- }
- },
- "range": [
- 0,
- 51
- ],
- "raw": "\n\n\n\n\n
\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element-loose-close-fragment/output-tree.txt b/test/ast-test-case/element-loose-close-fragment/output-tree.txt
new file mode 100644
index 0000000..9d50861
--- /dev/null
+++ b/test/ast-test-case/element-loose-close-fragment/output-tree.txt
@@ -0,0 +1,10 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ div(element)
+ Paragraph(element)
+ Str(text)
diff --git a/test/ast-test-case/element-loose-close-fragment/output.json b/test/ast-test-case/element-loose-close-fragment/output.json
new file mode 100644
index 0000000..9df85ef
--- /dev/null
+++ b/test/ast-test-case/element-loose-close-fragment/output.json
@@ -0,0 +1,281 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n\n\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 27,
+ "offset": 26
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 29
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 26
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 26,
+ 29
+ ],
+ "raw": "\n\n\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 5,
+ "offset": 33
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 35
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 4
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 33,
+ 35
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "div",
+ "tagName": "div",
+ "properties": {},
+ "children": [
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 15
+ }
+ },
+ "range": [
+ 35,
+ 50
+ ],
+ "raw": "
"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 1,
+ "offset": 35
+ },
+ "end": {
+ "line": 6,
+ "column": 16,
+ "offset": 50
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 15
+ }
+ },
+ "range": [
+ 35,
+ 50
+ ],
+ "raw": "
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 16,
+ "offset": 50
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 15
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 50,
+ 51
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 51
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 51
+ ],
+ "raw": "\n\n\n\n\n
\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/element-opening/index.json b/test/ast-test-case/element-opening/index.json
deleted file mode 100644
index aba9410..0000000
--- a/test/ast-test-case/element-opening/index.json
+++ /dev/null
@@ -1,200 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Html",
- "tagName": "foo",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "bar",
- "loc": {
- "start": {
- "line": 1,
- "column": 5
- },
- "end": {
- "line": 1,
- "column": 8
- }
- },
- "range": [
- 5,
- 8
- ],
- "raw": "bar"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 14
- }
- },
- "range": [
- 0,
- 14
- ],
- "raw": "bar "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 14
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 14,
- 15
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "foo",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "bar",
- "loc": {
- "start": {
- "line": 2,
- "column": 5
- },
- "end": {
- "line": 2,
- "column": 8
- }
- },
- "range": [
- 20,
- 23
- ],
- "raw": "bar"
- }
- ],
- "loc": {
- "start": {
- "line": 2,
- "column": 0
- },
- "end": {
- "line": 2,
- "column": 14
- }
- },
- "range": [
- 15,
- 29
- ],
- "raw": "bar "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 2,
- "column": 14
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 29,
- 30
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "foo",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "bar",
- "loc": {
- "start": {
- "line": 3,
- "column": 5
- },
- "end": {
- "line": 3,
- "column": 8
- }
- },
- "range": [
- 35,
- 38
- ],
- "raw": "bar"
- }
- ],
- "loc": {
- "start": {
- "line": 3,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 14
- }
- },
- "range": [
- 30,
- 44
- ],
- "raw": "bar "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 3,
- "column": 14
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 44,
- 45
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 0,
- 45
- ],
- "raw": "bar \nbar \nbar \n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element-opening/output-tree.txt b/test/ast-test-case/element-opening/output-tree.txt
new file mode 100644
index 0000000..3db6858
--- /dev/null
+++ b/test/ast-test-case/element-opening/output-tree.txt
@@ -0,0 +1,13 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ foo(element)
+ Str(text)
+ Str(text)
+ foo(element)
+ Str(text)
+ Str(text)
+ foo(element)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/element-opening/output.json b/test/ast-test-case/element-opening/output.json
new file mode 100644
index 0000000..92ef55e
--- /dev/null
+++ b/test/ast-test-case/element-opening/output.json
@@ -0,0 +1,388 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 45
+ ],
+ "raw": "bar \nbar \nbar \n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "foo",
+ "tagName": "foo",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "bar",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 6,
+ "offset": 5
+ },
+ "end": {
+ "line": 1,
+ "column": 9,
+ "offset": 8
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 5
+ },
+ "end": {
+ "line": 1,
+ "column": 8
+ }
+ },
+ "range": [
+ 5,
+ 8
+ ],
+ "raw": "bar"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 15,
+ "offset": 14
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 14
+ }
+ },
+ "range": [
+ 0,
+ 14
+ ],
+ "raw": "bar "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 15,
+ "offset": 14
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 15
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 14
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 14,
+ 15
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "foo",
+ "tagName": "foo",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "bar",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 6,
+ "offset": 20
+ },
+ "end": {
+ "line": 2,
+ "column": 9,
+ "offset": 23
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 5
+ },
+ "end": {
+ "line": 2,
+ "column": 8
+ }
+ },
+ "range": [
+ 20,
+ 23
+ ],
+ "raw": "bar"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 15
+ },
+ "end": {
+ "line": 2,
+ "column": 15,
+ "offset": 29
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 14
+ }
+ },
+ "range": [
+ 15,
+ 29
+ ],
+ "raw": "bar "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 15,
+ "offset": 29
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 30
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 14
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 29,
+ 30
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "foo",
+ "tagName": "foo",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "bar",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 6,
+ "offset": 35
+ },
+ "end": {
+ "line": 3,
+ "column": 9,
+ "offset": 38
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 5
+ },
+ "end": {
+ "line": 3,
+ "column": 8
+ }
+ },
+ "range": [
+ 35,
+ 38
+ ],
+ "raw": "bar"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 30
+ },
+ "end": {
+ "line": 3,
+ "column": 15,
+ "offset": 44
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 14
+ }
+ },
+ "range": [
+ 30,
+ 44
+ ],
+ "raw": "bar "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 15,
+ "offset": 44
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 45
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 14
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 44,
+ 45
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 45
+ ],
+ "raw": "bar \nbar \nbar \n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 45
+ ],
+ "raw": "bar \nbar \nbar \n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 45
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 45
+ ],
+ "raw": "bar \nbar \nbar \n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/element-void-close/index.json b/test/ast-test-case/element-void-close/index.json
deleted file mode 100644
index 5fd2041..0000000
--- a/test/ast-test-case/element-void-close/index.json
+++ /dev/null
@@ -1,140 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "break",
- "tagName": "br",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 4
- }
- },
- "range": [
- 0,
- 4
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "text",
- "loc": {
- "start": {
- "line": 1,
- "column": 4
- },
- "end": {
- "line": 1,
- "column": 8
- }
- },
- "range": [
- 4,
- 8
- ],
- "raw": "text"
- },
- {
- "type": "break",
- "tagName": "br",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 12
- },
- "end": {
- "line": 1,
- "column": 13
- }
- },
- "range": [
- 12,
- 13
- ],
- "raw": ">"
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 12
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 12,
- 14
- ],
- "raw": ">\n"
- },
- {
- "type": "Image",
- "tagName": "img",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 2,
- "column": 0
- },
- "end": {
- "line": 2,
- "column": 5
- }
- },
- "range": [
- 14,
- 19
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "text\n",
- "loc": {
- "start": {
- "line": 2,
- "column": 5
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 19,
- 30
- ],
- "raw": "text\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 0,
- 30
- ],
- "raw": " text\n text\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element-void-close/output-tree.txt b/test/ast-test-case/element-void-close/output-tree.txt
new file mode 100644
index 0000000..9ed20c9
--- /dev/null
+++ b/test/ast-test-case/element-void-close/output-tree.txt
@@ -0,0 +1,10 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ break(element)
+ Str(text)
+ break(element)
+ Str(text)
+ Image(element)
+ Str(text)
diff --git a/test/ast-test-case/element-void-close/output.json b/test/ast-test-case/element-void-close/output.json
new file mode 100644
index 0000000..de80bf6
--- /dev/null
+++ b/test/ast-test-case/element-void-close/output.json
@@ -0,0 +1,280 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": " text\n text\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "break",
+ "tagName": "br",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 5,
+ "offset": 4
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 4
+ }
+ },
+ "range": [
+ 0,
+ 4
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "text",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 5,
+ "offset": 4
+ },
+ "end": {
+ "line": 1,
+ "column": 9,
+ "offset": 8
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 4
+ },
+ "end": {
+ "line": 1,
+ "column": 8
+ }
+ },
+ "range": [
+ 4,
+ 8
+ ],
+ "raw": "text"
+ },
+ {
+ "type": "break",
+ "tagName": "br",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": " text\n text\n"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 14,
+ "offset": 13
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 14
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 13
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 13,
+ 14
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Image",
+ "tagName": "img",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 14
+ },
+ "end": {
+ "line": 2,
+ "column": 6,
+ "offset": 19
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 5
+ }
+ },
+ "range": [
+ 14,
+ 19
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "text\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 6,
+ "offset": 19
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 30
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 5
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 19,
+ 30
+ ],
+ "raw": "text\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": " text\n text\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": " text\n text\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 30
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": " text\n text\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/element-void/index.json b/test/ast-test-case/element-void/index.json
deleted file mode 100644
index 565b160..0000000
--- a/test/ast-test-case/element-void/index.json
+++ /dev/null
@@ -1,769 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Image",
- "tagName": "img",
- "properties": {
- "src": "http://example.com/fav.ico",
- "alt": "foo",
- "title": "bar",
- "type": "UNKNOWN"
- },
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 60
- }
- },
- "range": [
- 0,
- 60
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 60
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 60,
- 62
- ],
- "raw": "\n\n"
- },
- {
- "type": "horizontalRule",
- "tagName": "hr",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 3,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 4
- }
- },
- "range": [
- 62,
- 66
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 3,
- "column": 4
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 66,
- 68
- ],
- "raw": "\n\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "this",
- "loc": {
- "start": {
- "line": 5,
- "column": 3
- },
- "end": {
- "line": 5,
- "column": 7
- }
- },
- "range": [
- 71,
- 75
- ],
- "raw": "this"
- },
- {
- "type": "break",
- "tagName": "br",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 5,
- "column": 7
- },
- "end": {
- "line": 5,
- "column": 12
- }
- },
- "range": [
- 75,
- 80
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "and that",
- "loc": {
- "start": {
- "line": 5,
- "column": 12
- },
- "end": {
- "line": 5,
- "column": 20
- }
- },
- "range": [
- 80,
- 88
- ],
- "raw": "and that"
- }
- ],
- "loc": {
- "start": {
- "line": 5,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 24
- }
- },
- "range": [
- 68,
- 92
- ],
- "raw": "this and that
"
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 5,
- "column": 24
- },
- "end": {
- "line": 7,
- "column": 0
- }
- },
- "range": [
- 92,
- 94
- ],
- "raw": "\n\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "this",
- "loc": {
- "start": {
- "line": 7,
- "column": 3
- },
- "end": {
- "line": 7,
- "column": 7
- }
- },
- "range": [
- 97,
- 101
- ],
- "raw": "this"
- },
- {
- "type": "break",
- "tagName": "br",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 7,
- "column": 7
- },
- "end": {
- "line": 7,
- "column": 11
- }
- },
- "range": [
- 101,
- 105
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "and that",
- "loc": {
- "start": {
- "line": 7,
- "column": 11
- },
- "end": {
- "line": 7,
- "column": 19
- }
- },
- "range": [
- 105,
- 113
- ],
- "raw": "and that"
- }
- ],
- "loc": {
- "start": {
- "line": 7,
- "column": 0
- },
- "end": {
- "line": 7,
- "column": 23
- }
- },
- "range": [
- 94,
- 117
- ],
- "raw": "this and that
"
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 7,
- "column": 23
- },
- "end": {
- "line": 9,
- "column": 0
- }
- },
- "range": [
- 117,
- 119
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "svg",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "path",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 9,
- "column": 5
- },
- "end": {
- "line": 9,
- "column": 11
- }
- },
- "range": [
- 124,
- 130
- ],
- "raw": ""
- },
- {
- "type": "Html",
- "tagName": "circle",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 9,
- "column": 11
- },
- "end": {
- "line": 9,
- "column": 19
- }
- },
- "range": [
- 130,
- 138
- ],
- "raw": ""
- },
- {
- "type": "Html",
- "tagName": "g",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "rect",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 9,
- "column": 22
- },
- "end": {
- "line": 9,
- "column": 28
- }
- },
- "range": [
- 141,
- 147
- ],
- "raw": ""
- }
- ],
- "loc": {
- "start": {
- "line": 9,
- "column": 19
- },
- "end": {
- "line": 9,
- "column": 34
- }
- },
- "range": [
- 138,
- 153
- ],
- "raw": ""
- }
- ],
- "loc": {
- "start": {
- "line": 9,
- "column": 0
- },
- "end": {
- "line": 9,
- "column": 34
- }
- },
- "range": [
- 119,
- 153
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 9,
- "column": 34
- },
- "end": {
- "line": 11,
- "column": 0
- }
- },
- "range": [
- 153,
- 155
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "svg",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "path",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 11,
- "column": 5
- },
- "end": {
- "line": 11,
- "column": 12
- }
- },
- "range": [
- 160,
- 167
- ],
- "raw": " "
- },
- {
- "type": "Html",
- "tagName": "circle",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 11,
- "column": 12
- },
- "end": {
- "line": 11,
- "column": 21
- }
- },
- "range": [
- 167,
- 176
- ],
- "raw": " "
- },
- {
- "type": "Html",
- "tagName": "g",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "rect",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 11,
- "column": 25
- },
- "end": {
- "line": 11,
- "column": 32
- }
- },
- "range": [
- 180,
- 187
- ],
- "raw": " "
- }
- ],
- "loc": {
- "start": {
- "line": 11,
- "column": 21
- },
- "end": {
- "line": 11,
- "column": 38
- }
- },
- "range": [
- 176,
- 193
- ],
- "raw": " "
- }
- ],
- "loc": {
- "start": {
- "line": 11,
- "column": 0
- },
- "end": {
- "line": 11,
- "column": 38
- }
- },
- "range": [
- 155,
- 193
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 11,
- "column": 38
- },
- "end": {
- "line": 13,
- "column": 0
- }
- },
- "range": [
- 193,
- 195
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "math",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "mglyph",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "mspace",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "malignmark",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 13,
- "column": 22
- },
- "end": {
- "line": 13,
- "column": 41
- }
- },
- "range": [
- 217,
- 236
- ],
- "raw": ""
- }
- ],
- "loc": {
- "start": {
- "line": 13,
- "column": 14
- },
- "end": {
- "line": 13,
- "column": 41
- }
- },
- "range": [
- 209,
- 236
- ],
- "raw": ""
- }
- ],
- "loc": {
- "start": {
- "line": 13,
- "column": 6
- },
- "end": {
- "line": 13,
- "column": 41
- }
- },
- "range": [
- 201,
- 236
- ],
- "raw": ""
- }
- ],
- "loc": {
- "start": {
- "line": 13,
- "column": 0
- },
- "end": {
- "line": 13,
- "column": 41
- }
- },
- "range": [
- 195,
- 236
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 13,
- "column": 41
- },
- "end": {
- "line": 15,
- "column": 0
- }
- },
- "range": [
- 236,
- 238
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "math",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "mglyph",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "mspace",
- "properties": {},
- "children": [
- {
- "type": "Html",
- "tagName": "malignmark",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 15,
- "column": 24
- },
- "end": {
- "line": 15,
- "column": 44
- }
- },
- "range": [
- 262,
- 282
- ],
- "raw": " "
- }
- ],
- "loc": {
- "start": {
- "line": 15,
- "column": 15
- },
- "end": {
- "line": 15,
- "column": 44
- }
- },
- "range": [
- 253,
- 282
- ],
- "raw": " "
- }
- ],
- "loc": {
- "start": {
- "line": 15,
- "column": 6
- },
- "end": {
- "line": 15,
- "column": 44
- }
- },
- "range": [
- 244,
- 282
- ],
- "raw": " "
- }
- ],
- "loc": {
- "start": {
- "line": 15,
- "column": 0
- },
- "end": {
- "line": 15,
- "column": 44
- }
- },
- "range": [
- 238,
- 282
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 15,
- "column": 44
- },
- "end": {
- "line": 16,
- "column": 0
- }
- },
- "range": [
- 282,
- 283
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 16,
- "column": 0
- }
- },
- "range": [
- 0,
- 283
- ],
- "raw": " \n\n \n\nthis and that
\n\nthis and that
\n\n \n\n \n\n \n\n \n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element-void/output-tree.txt b/test/ast-test-case/element-void/output-tree.txt
new file mode 100644
index 0000000..cd2d660
--- /dev/null
+++ b/test/ast-test-case/element-void/output-tree.txt
@@ -0,0 +1,40 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Image(element)
+ Str(text)
+ horizontalRule(element)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ break(element)
+ Str(text)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ break(element)
+ Str(text)
+ Str(text)
+ svg(element)
+ path(element)
+ circle(element)
+ g(element)
+ rect(element)
+ Str(text)
+ svg(element)
+ path(element)
+ circle(element)
+ g(element)
+ rect(element)
+ Str(text)
+ math(element)
+ mglyph(element)
+ mspace(element)
+ malignmark(element)
+ Str(text)
+ math(element)
+ mglyph(element)
+ mspace(element)
+ malignmark(element)
+ Str(text)
diff --git a/test/ast-test-case/element-void/output.json b/test/ast-test-case/element-void/output.json
new file mode 100644
index 0000000..4f9d9cd
--- /dev/null
+++ b/test/ast-test-case/element-void/output.json
@@ -0,0 +1,1282 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 283
+ ],
+ "raw": " \n\n \n\nthis and that
\n\nthis and that
\n\n \n\n \n\n \n\n \n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Image",
+ "tagName": "img",
+ "properties": {
+ "src": "http://example.com/fav.ico",
+ "alt": "foo",
+ "title": "bar"
+ },
+ "children": [],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 61,
+ "offset": 60
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 60
+ }
+ },
+ "range": [
+ 0,
+ 60
+ ],
+ "raw": " ",
+ "alt": "foo",
+ "title": "bar",
+ "url": "http://example.com/fav.ico"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 61,
+ "offset": 60
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 62
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 60
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 60,
+ 62
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "horizontalRule",
+ "tagName": "hr",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 62
+ },
+ "end": {
+ "line": 3,
+ "column": 5,
+ "offset": 66
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 4
+ }
+ },
+ "range": [
+ 62,
+ 66
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 5,
+ "offset": 66
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 68
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 4
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 66,
+ 68
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "this",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 4,
+ "offset": 71
+ },
+ "end": {
+ "line": 5,
+ "column": 8,
+ "offset": 75
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 3
+ },
+ "end": {
+ "line": 5,
+ "column": 7
+ }
+ },
+ "range": [
+ 71,
+ 75
+ ],
+ "raw": "this"
+ },
+ {
+ "type": "break",
+ "tagName": "br",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 8,
+ "offset": 75
+ },
+ "end": {
+ "line": 5,
+ "column": 13,
+ "offset": 80
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 7
+ },
+ "end": {
+ "line": 5,
+ "column": 12
+ }
+ },
+ "range": [
+ 75,
+ 80
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "and that",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 13,
+ "offset": 80
+ },
+ "end": {
+ "line": 5,
+ "column": 21,
+ "offset": 88
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 12
+ },
+ "end": {
+ "line": 5,
+ "column": 20
+ }
+ },
+ "range": [
+ 80,
+ 88
+ ],
+ "raw": "and that"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 1,
+ "offset": 68
+ },
+ "end": {
+ "line": 5,
+ "column": 25,
+ "offset": 92
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 24
+ }
+ },
+ "range": [
+ 68,
+ 92
+ ],
+ "raw": "this and that
"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 25,
+ "offset": 92
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 94
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 24
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 92,
+ 94
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "this",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 4,
+ "offset": 97
+ },
+ "end": {
+ "line": 7,
+ "column": 8,
+ "offset": 101
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 3
+ },
+ "end": {
+ "line": 7,
+ "column": 7
+ }
+ },
+ "range": [
+ 97,
+ 101
+ ],
+ "raw": "this"
+ },
+ {
+ "type": "break",
+ "tagName": "br",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 8,
+ "offset": 101
+ },
+ "end": {
+ "line": 7,
+ "column": 12,
+ "offset": 105
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 11
+ }
+ },
+ "range": [
+ 101,
+ 105
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "and that",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 12,
+ "offset": 105
+ },
+ "end": {
+ "line": 7,
+ "column": 20,
+ "offset": 113
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 11
+ },
+ "end": {
+ "line": 7,
+ "column": 19
+ }
+ },
+ "range": [
+ 105,
+ 113
+ ],
+ "raw": "and that"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 1,
+ "offset": 94
+ },
+ "end": {
+ "line": 7,
+ "column": 24,
+ "offset": 117
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 23
+ }
+ },
+ "range": [
+ 94,
+ 117
+ ],
+ "raw": "this and that
"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 24,
+ "offset": 117
+ },
+ "end": {
+ "line": 9,
+ "column": 1,
+ "offset": 119
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 23
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 117,
+ 119
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "svg",
+ "tagName": "svg",
+ "properties": {},
+ "children": [
+ {
+ "type": "path",
+ "tagName": "path",
+ "properties": {},
+ "children": [
+ {
+ "type": "circle",
+ "tagName": "circle",
+ "properties": {},
+ "children": [
+ {
+ "type": "g",
+ "tagName": "g",
+ "properties": {},
+ "children": [
+ {
+ "type": "rect",
+ "tagName": "rect",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 23,
+ "offset": 141
+ },
+ "end": {
+ "line": 9,
+ "column": 29,
+ "offset": 147
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 22
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ },
+ "range": [
+ 141,
+ 147
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 20,
+ "offset": 138
+ },
+ "end": {
+ "line": 9,
+ "column": 29,
+ "offset": 147
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 19
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ },
+ "range": [
+ 138,
+ 147
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 12,
+ "offset": 130
+ },
+ "end": {
+ "line": 9,
+ "column": 29,
+ "offset": 147
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 11
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ },
+ "range": [
+ 130,
+ 147
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 6,
+ "offset": 124
+ },
+ "end": {
+ "line": 9,
+ "column": 29,
+ "offset": 147
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 5
+ },
+ "end": {
+ "line": 9,
+ "column": 28
+ }
+ },
+ "range": [
+ 124,
+ 147
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 1,
+ "offset": 119
+ },
+ "end": {
+ "line": 9,
+ "column": 35,
+ "offset": 153
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 34
+ }
+ },
+ "range": [
+ 119,
+ 153
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 35,
+ "offset": 153
+ },
+ "end": {
+ "line": 11,
+ "column": 1,
+ "offset": 155
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 34
+ },
+ "end": {
+ "line": 11,
+ "column": 0
+ }
+ },
+ "range": [
+ 153,
+ 155
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "svg",
+ "tagName": "svg",
+ "properties": {},
+ "children": [
+ {
+ "type": "path",
+ "tagName": "path",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 6,
+ "offset": 160
+ },
+ "end": {
+ "line": 11,
+ "column": 13,
+ "offset": 167
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 5
+ },
+ "end": {
+ "line": 11,
+ "column": 12
+ }
+ },
+ "range": [
+ 160,
+ 167
+ ],
+ "raw": " "
+ },
+ {
+ "type": "circle",
+ "tagName": "circle",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 13,
+ "offset": 167
+ },
+ "end": {
+ "line": 11,
+ "column": 22,
+ "offset": 176
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 12
+ },
+ "end": {
+ "line": 11,
+ "column": 21
+ }
+ },
+ "range": [
+ 167,
+ 176
+ ],
+ "raw": " "
+ },
+ {
+ "type": "g",
+ "tagName": "g",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 22,
+ "offset": 176
+ },
+ "end": {
+ "line": 11,
+ "column": 26,
+ "offset": 180
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 21
+ },
+ "end": {
+ "line": 11,
+ "column": 25
+ }
+ },
+ "range": [
+ 176,
+ 180
+ ],
+ "raw": " "
+ },
+ {
+ "type": "rect",
+ "tagName": "rect",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 26,
+ "offset": 180
+ },
+ "end": {
+ "line": 11,
+ "column": 33,
+ "offset": 187
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 25
+ },
+ "end": {
+ "line": 11,
+ "column": 32
+ }
+ },
+ "range": [
+ 180,
+ 187
+ ],
+ "raw": " "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 1,
+ "offset": 155
+ },
+ "end": {
+ "line": 11,
+ "column": 39,
+ "offset": 193
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 38
+ }
+ },
+ "range": [
+ 155,
+ 193
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 39,
+ "offset": 193
+ },
+ "end": {
+ "line": 13,
+ "column": 1,
+ "offset": 195
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 38
+ },
+ "end": {
+ "line": 13,
+ "column": 0
+ }
+ },
+ "range": [
+ 193,
+ 195
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "math",
+ "tagName": "math",
+ "properties": {},
+ "children": [
+ {
+ "type": "mglyph",
+ "tagName": "mglyph",
+ "properties": {},
+ "children": [
+ {
+ "type": "mspace",
+ "tagName": "mspace",
+ "properties": {},
+ "children": [
+ {
+ "type": "malignmark",
+ "tagName": "malignmark",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 23,
+ "offset": 217
+ },
+ "end": {
+ "line": 13,
+ "column": 35,
+ "offset": 229
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 22
+ },
+ "end": {
+ "line": 13,
+ "column": 34
+ }
+ },
+ "range": [
+ 217,
+ 229
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 15,
+ "offset": 209
+ },
+ "end": {
+ "line": 13,
+ "column": 35,
+ "offset": 229
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 14
+ },
+ "end": {
+ "line": 13,
+ "column": 34
+ }
+ },
+ "range": [
+ 209,
+ 229
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 7,
+ "offset": 201
+ },
+ "end": {
+ "line": 13,
+ "column": 35,
+ "offset": 229
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 6
+ },
+ "end": {
+ "line": 13,
+ "column": 34
+ }
+ },
+ "range": [
+ 201,
+ 229
+ ],
+ "raw": ""
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 1,
+ "offset": 195
+ },
+ "end": {
+ "line": 13,
+ "column": 42,
+ "offset": 236
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 0
+ },
+ "end": {
+ "line": 13,
+ "column": 41
+ }
+ },
+ "range": [
+ 195,
+ 236
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 42,
+ "offset": 236
+ },
+ "end": {
+ "line": 15,
+ "column": 1,
+ "offset": 238
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 41
+ },
+ "end": {
+ "line": 15,
+ "column": 0
+ }
+ },
+ "range": [
+ 236,
+ 238
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "math",
+ "tagName": "math",
+ "properties": {},
+ "children": [
+ {
+ "type": "mglyph",
+ "tagName": "mglyph",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 15,
+ "column": 7,
+ "offset": 244
+ },
+ "end": {
+ "line": 15,
+ "column": 16,
+ "offset": 253
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 6
+ },
+ "end": {
+ "line": 15,
+ "column": 15
+ }
+ },
+ "range": [
+ 244,
+ 253
+ ],
+ "raw": " "
+ },
+ {
+ "type": "mspace",
+ "tagName": "mspace",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 15,
+ "column": 16,
+ "offset": 253
+ },
+ "end": {
+ "line": 15,
+ "column": 25,
+ "offset": 262
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 15
+ },
+ "end": {
+ "line": 15,
+ "column": 24
+ }
+ },
+ "range": [
+ 253,
+ 262
+ ],
+ "raw": " "
+ },
+ {
+ "type": "malignmark",
+ "tagName": "malignmark",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 15,
+ "column": 25,
+ "offset": 262
+ },
+ "end": {
+ "line": 15,
+ "column": 38,
+ "offset": 275
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 24
+ },
+ "end": {
+ "line": 15,
+ "column": 37
+ }
+ },
+ "range": [
+ 262,
+ 275
+ ],
+ "raw": " "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 15,
+ "column": 1,
+ "offset": 238
+ },
+ "end": {
+ "line": 15,
+ "column": 45,
+ "offset": 282
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 0
+ },
+ "end": {
+ "line": 15,
+ "column": 44
+ }
+ },
+ "range": [
+ 238,
+ 282
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 15,
+ "column": 45,
+ "offset": 282
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 283
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 15,
+ "column": 44
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 282,
+ 283
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 283
+ ],
+ "raw": " \n\n \n\nthis and that
\n\nthis and that
\n\n \n\n \n\n \n\n \n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 283
+ ],
+ "raw": " \n\n \n\nthis and that
\n\nthis and that
\n\n \n\n \n\n \n\n \n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 283
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 283
+ ],
+ "raw": " \n\n \n\nthis and that
\n\nthis and that
\n\n \n\n \n\n \n\n \n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/element/index.json b/test/ast-test-case/element/index.json
deleted file mode 100644
index 5ffc0b0..0000000
--- a/test/ast-test-case/element/index.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Strong",
- "tagName": "strong",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "Hello World.",
- "loc": {
- "start": {
- "line": 1,
- "column": 8
- },
- "end": {
- "line": 1,
- "column": 20
- }
- },
- "range": [
- 8,
- 20
- ],
- "raw": "Hello World."
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 29
- }
- },
- "range": [
- 0,
- 29
- ],
- "raw": "Hello World. "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 29
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 29,
- 30
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 0,
- 30
- ],
- "raw": "Hello World. \n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/element/output-tree.txt b/test/ast-test-case/element/output-tree.txt
new file mode 100644
index 0000000..5d58744
--- /dev/null
+++ b/test/ast-test-case/element/output-tree.txt
@@ -0,0 +1,7 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Strong(element)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/element/output.json b/test/ast-test-case/element/output.json
new file mode 100644
index 0000000..9aacc2e
--- /dev/null
+++ b/test/ast-test-case/element/output.json
@@ -0,0 +1,196 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": "Hello World. \n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Strong",
+ "tagName": "strong",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Hello World.",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 9,
+ "offset": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 21,
+ "offset": 20
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 20
+ }
+ },
+ "range": [
+ 8,
+ 20
+ ],
+ "raw": "Hello World."
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 30,
+ "offset": 29
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 29
+ }
+ },
+ "range": [
+ 0,
+ 29
+ ],
+ "raw": "Hello World. "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 30,
+ "offset": 29
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 30
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 29
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 29,
+ 30
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": "Hello World. \n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": "Hello World. \n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 30
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 30
+ ],
+ "raw": "Hello World. \n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/empty-document/index.json b/test/ast-test-case/empty-document/index.json
deleted file mode 100644
index 0aa8e04..0000000
--- a/test/ast-test-case/empty-document/index.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "type": "Document",
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 0
- }
- },
- "range": [
- 0,
- 0
- ],
- "raw": ""
-}
\ No newline at end of file
diff --git a/test/ast-test-case/empty-document/output-tree.txt b/test/ast-test-case/empty-document/output-tree.txt
new file mode 100644
index 0000000..f3c83b9
--- /dev/null
+++ b/test/ast-test-case/empty-document/output-tree.txt
@@ -0,0 +1,4 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
diff --git a/test/ast-test-case/empty-document/output.json b/test/ast-test-case/empty-document/output.json
new file mode 100644
index 0000000..d3c94a9
--- /dev/null
+++ b/test/ast-test-case/empty-document/output.json
@@ -0,0 +1,27 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": []
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": []
+ }
+ ]
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ }
+}
\ No newline at end of file
diff --git a/test/ast-test-case/empty-fragment/index.json b/test/ast-test-case/empty-fragment/index.json
deleted file mode 100644
index 0aa8e04..0000000
--- a/test/ast-test-case/empty-fragment/index.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "type": "Document",
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 0
- }
- },
- "range": [
- 0,
- 0
- ],
- "raw": ""
-}
\ No newline at end of file
diff --git a/test/ast-test-case/empty-fragment/output-tree.txt b/test/ast-test-case/empty-fragment/output-tree.txt
new file mode 100644
index 0000000..f3c83b9
--- /dev/null
+++ b/test/ast-test-case/empty-fragment/output-tree.txt
@@ -0,0 +1,4 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
diff --git a/test/ast-test-case/empty-fragment/output.json b/test/ast-test-case/empty-fragment/output.json
new file mode 100644
index 0000000..d3c94a9
--- /dev/null
+++ b/test/ast-test-case/empty-fragment/output.json
@@ -0,0 +1,27 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": []
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": []
+ }
+ ]
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ }
+}
\ No newline at end of file
diff --git a/test/ast-test-case/entities-in-literals/index.json b/test/ast-test-case/entities-in-literals/index.json
deleted file mode 100644
index 60705d9..0000000
--- a/test/ast-test-case/entities-in-literals/index.json
+++ /dev/null
@@ -1,200 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Html",
- "tagName": "script",
- "properties": {},
- "children": [
- {
- "type": "CodeBlock",
- "value": "\nif (12 > 13) {\n console.log('foo');\n}\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 8
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 8,
- 50
- ],
- "raw": "\nif (12 > 13) {\n console.log('foo');\n}\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 9
- }
- },
- "range": [
- 0,
- 59
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 5,
- "column": 9
- },
- "end": {
- "line": 7,
- "column": 0
- }
- },
- "range": [
- 59,
- 61
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "script",
- "properties": {},
- "children": [
- {
- "type": "CodeBlock",
- "value": "\n for (var index = -1, length = 2; index < length; index++) {\n console.log(index);\n }\n",
- "loc": {
- "start": {
- "line": 7,
- "column": 8
- },
- "end": {
- "line": 11,
- "column": 0
- }
- },
- "range": [
- 69,
- 160
- ],
- "raw": "\n for (var index = -1, length = 2; index < length; index++) {\n console.log(index);\n }\n"
- }
- ],
- "loc": {
- "start": {
- "line": 7,
- "column": 0
- },
- "end": {
- "line": 11,
- "column": 9
- }
- },
- "range": [
- 61,
- 169
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n\n",
- "loc": {
- "start": {
- "line": 11,
- "column": 9
- },
- "end": {
- "line": 13,
- "column": 0
- }
- },
- "range": [
- 169,
- 171
- ],
- "raw": "\n\n"
- },
- {
- "type": "Html",
- "tagName": "style",
- "properties": {},
- "children": [
- {
- "type": "CodeBlock",
- "value": "\nhtml > body {\n color: red;\n}\n",
- "loc": {
- "start": {
- "line": 13,
- "column": 7
- },
- "end": {
- "line": 17,
- "column": 0
- }
- },
- "range": [
- 178,
- 209
- ],
- "raw": "\nhtml > body {\n color: red;\n}\n"
- }
- ],
- "loc": {
- "start": {
- "line": 13,
- "column": 0
- },
- "end": {
- "line": 17,
- "column": 8
- }
- },
- "range": [
- 171,
- 217
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 17,
- "column": 8
- },
- "end": {
- "line": 18,
- "column": 0
- }
- },
- "range": [
- 217,
- 218
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 18,
- "column": 0
- }
- },
- "range": [
- 0,
- 218
- ],
- "raw": "\n\n\n\n\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/entities-in-literals/output-tree.txt b/test/ast-test-case/entities-in-literals/output-tree.txt
new file mode 100644
index 0000000..6638d48
--- /dev/null
+++ b/test/ast-test-case/entities-in-literals/output-tree.txt
@@ -0,0 +1,13 @@
+Document(root)
+ html(element)
+ head(element)
+ script(element)
+ CodeBlock(text)
+ Str(text)
+ script(element)
+ CodeBlock(text)
+ Str(text)
+ style(element)
+ CodeBlock(text)
+ Str(text)
+ body(element)
diff --git a/test/ast-test-case/entities-in-literals/output.json b/test/ast-test-case/entities-in-literals/output.json
new file mode 100644
index 0000000..c15f100
--- /dev/null
+++ b/test/ast-test-case/entities-in-literals/output.json
@@ -0,0 +1,388 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "script",
+ "tagName": "script",
+ "properties": {},
+ "children": [
+ {
+ "type": "CodeBlock",
+ "value": "\nif (12 > 13) {\n console.log('foo');\n}\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 9,
+ "offset": 8
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 50
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 8,
+ 50
+ ],
+ "raw": "\nif (12 > 13) {\n console.log('foo');\n}\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 10,
+ "offset": 59
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 9
+ }
+ },
+ "range": [
+ 0,
+ 59
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 10,
+ "offset": 59
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 61
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 9
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 59,
+ 61
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "script",
+ "tagName": "script",
+ "properties": {},
+ "children": [
+ {
+ "type": "CodeBlock",
+ "value": "\n for (var index = -1, length = 2; index < length; index++) {\n console.log(index);\n }\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 9,
+ "offset": 69
+ },
+ "end": {
+ "line": 11,
+ "column": 1,
+ "offset": 160
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 8
+ },
+ "end": {
+ "line": 11,
+ "column": 0
+ }
+ },
+ "range": [
+ 69,
+ 160
+ ],
+ "raw": "\n for (var index = -1, length = 2; index < length; index++) {\n console.log(index);\n }\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 1,
+ "offset": 61
+ },
+ "end": {
+ "line": 11,
+ "column": 10,
+ "offset": 169
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 9
+ }
+ },
+ "range": [
+ 61,
+ 169
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 10,
+ "offset": 169
+ },
+ "end": {
+ "line": 13,
+ "column": 1,
+ "offset": 171
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 9
+ },
+ "end": {
+ "line": 13,
+ "column": 0
+ }
+ },
+ "range": [
+ 169,
+ 171
+ ],
+ "raw": "\n\n"
+ },
+ {
+ "type": "style",
+ "tagName": "style",
+ "properties": {},
+ "children": [
+ {
+ "type": "CodeBlock",
+ "value": "\nhtml > body {\n color: red;\n}\n",
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 8,
+ "offset": 178
+ },
+ "end": {
+ "line": 17,
+ "column": 1,
+ "offset": 209
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 7
+ },
+ "end": {
+ "line": 17,
+ "column": 0
+ }
+ },
+ "range": [
+ 178,
+ 209
+ ],
+ "raw": "\nhtml > body {\n color: red;\n}\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 1,
+ "offset": 171
+ },
+ "end": {
+ "line": 17,
+ "column": 9,
+ "offset": 217
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 0
+ },
+ "end": {
+ "line": 17,
+ "column": 8
+ }
+ },
+ "range": [
+ 171,
+ 217
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 17,
+ "column": 9,
+ "offset": 217
+ },
+ "end": {
+ "line": 18,
+ "column": 1,
+ "offset": 218
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 17,
+ "column": 8
+ },
+ "end": {
+ "line": 18,
+ "column": 0
+ }
+ },
+ "range": [
+ 217,
+ 218
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 18,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 218
+ ],
+ "raw": "\n\n\n\n\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 18,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 218
+ ],
+ "raw": "\n\n\n\n\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 18,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 218
+ ],
+ "raw": "\n\n\n\n\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 18,
+ "column": 1,
+ "offset": 218
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 18,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 218
+ ],
+ "raw": "\n\n\n\n\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/entities/index.json b/test/ast-test-case/entities/index.json
deleted file mode 100644
index c3f33cd..0000000
--- a/test/ast-test-case/entities/index.json
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Str",
- "value": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 0,
- 67
- ],
- "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 0,
- 67
- ],
- "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/entities/output-tree.txt b/test/ast-test-case/entities/output-tree.txt
new file mode 100644
index 0000000..2abcaa9
--- /dev/null
+++ b/test/ast-test-case/entities/output-tree.txt
@@ -0,0 +1,5 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Str(text)
diff --git a/test/ast-test-case/entities/output.json b/test/ast-test-case/entities/output.json
new file mode 100644
index 0000000..f2f7fa0
--- /dev/null
+++ b/test/ast-test-case/entities/output.json
@@ -0,0 +1,131 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 67
+ ],
+ "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 67
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 67
+ ],
+ "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 67
+ ],
+ "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 67
+ ],
+ "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 67
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 67
+ ],
+ "raw": "© & baz. AT&T.\nalpha < bravo ' charlie > delta.\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/fragment-comment/index.html b/test/ast-test-case/fragment-comment/index.html
new file mode 100644
index 0000000..ffb1b6f
--- /dev/null
+++ b/test/ast-test-case/fragment-comment/index.html
@@ -0,0 +1,2 @@
+
+test
diff --git a/test/ast-test-case/fragment-comment/output-tree.txt b/test/ast-test-case/fragment-comment/output-tree.txt
new file mode 100644
index 0000000..ec47930
--- /dev/null
+++ b/test/ast-test-case/fragment-comment/output-tree.txt
@@ -0,0 +1,6 @@
+Document(root)
+ Comment(comment)
+ html(element)
+ head(element)
+ body(element)
+ Str(text)
diff --git a/test/ast-test-case/fragment-comment/output.json b/test/ast-test-case/fragment-comment/output.json
new file mode 100644
index 0000000..3762b44
--- /dev/null
+++ b/test/ast-test-case/fragment-comment/output.json
@@ -0,0 +1,162 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "Comment",
+ "value": " comment ",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 17,
+ "offset": 16
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 16
+ }
+ },
+ "range": [
+ 0,
+ 16
+ ],
+ "raw": ""
+ },
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 22
+ ],
+ "raw": "\ntest\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "test\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 17
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 22
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 17,
+ 22
+ ],
+ "raw": "test\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 22
+ ],
+ "raw": "\ntest\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 22
+ ],
+ "raw": "\ntest\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 22
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 22
+ ],
+ "raw": "\ntest\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/fragment-p/index.html b/test/ast-test-case/fragment-p/index.html
new file mode 100644
index 0000000..58d93db
--- /dev/null
+++ b/test/ast-test-case/fragment-p/index.html
@@ -0,0 +1 @@
+test
diff --git a/test/ast-test-case/fragment-p/output-tree.txt b/test/ast-test-case/fragment-p/output-tree.txt
new file mode 100644
index 0000000..5262acf
--- /dev/null
+++ b/test/ast-test-case/fragment-p/output-tree.txt
@@ -0,0 +1,7 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Paragraph(element)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/fragment-p/output.json b/test/ast-test-case/fragment-p/output.json
new file mode 100644
index 0000000..022f65e
--- /dev/null
+++ b/test/ast-test-case/fragment-p/output.json
@@ -0,0 +1,196 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 12
+ ],
+ "raw": "test
\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "test",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 4,
+ "offset": 3
+ },
+ "end": {
+ "line": 1,
+ "column": 8,
+ "offset": 7
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 3
+ },
+ "end": {
+ "line": 1,
+ "column": 7
+ }
+ },
+ "range": [
+ 3,
+ 7
+ ],
+ "raw": "test"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 12,
+ "offset": 11
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 11
+ }
+ },
+ "range": [
+ 0,
+ 11
+ ],
+ "raw": "test
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 12,
+ "offset": 11
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 12
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 11
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 11,
+ 12
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 12
+ ],
+ "raw": "test
\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 12
+ ],
+ "raw": "test
\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 12
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 12
+ ],
+ "raw": "test
\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/fragment-script/index.html b/test/ast-test-case/fragment-script/index.html
new file mode 100644
index 0000000..1e813b1
--- /dev/null
+++ b/test/ast-test-case/fragment-script/index.html
@@ -0,0 +1,7 @@
+
diff --git a/test/ast-test-case/fragment-script/output-tree.txt b/test/ast-test-case/fragment-script/output-tree.txt
new file mode 100644
index 0000000..1d44ad1
--- /dev/null
+++ b/test/ast-test-case/fragment-script/output-tree.txt
@@ -0,0 +1,7 @@
+Document(root)
+ html(element)
+ head(element)
+ style(element)
+ CodeBlock(text)
+ Str(text)
+ body(element)
diff --git a/test/ast-test-case/fragment-script/output.json b/test/ast-test-case/fragment-script/output.json
new file mode 100644
index 0000000..6871ddc
--- /dev/null
+++ b/test/ast-test-case/fragment-script/output.json
@@ -0,0 +1,196 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "style",
+ "tagName": "style",
+ "properties": {},
+ "children": [
+ {
+ "type": "CodeBlock",
+ "value": " hr {\n border: 0\n}\n\nbody {\n margin: 0\n} ",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 8,
+ "offset": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 3,
+ "offset": 53
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 2
+ }
+ },
+ "range": [
+ 7,
+ 53
+ ],
+ "raw": " hr {\n border: 0\n}\n\nbody {\n margin: 0\n} "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 11,
+ "offset": 61
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 7,
+ "column": 10
+ }
+ },
+ "range": [
+ 0,
+ 61
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 11,
+ "offset": 61
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 62
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 10
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 61,
+ 62
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 62
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 62
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 62
+ ],
+ "raw": "\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 62
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 62
+ ],
+ "raw": "\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/fragment-style/index.html b/test/ast-test-case/fragment-style/index.html
new file mode 100644
index 0000000..758213d
--- /dev/null
+++ b/test/ast-test-case/fragment-style/index.html
@@ -0,0 +1 @@
+
diff --git a/test/ast-test-case/fragment-style/output-tree.txt b/test/ast-test-case/fragment-style/output-tree.txt
new file mode 100644
index 0000000..23dafd4
--- /dev/null
+++ b/test/ast-test-case/fragment-style/output-tree.txt
@@ -0,0 +1,7 @@
+Document(root)
+ html(element)
+ head(element)
+ script(element)
+ CodeBlock(text)
+ Str(text)
+ body(element)
diff --git a/test/ast-test-case/fragment-style/output.json b/test/ast-test-case/fragment-style/output.json
new file mode 100644
index 0000000..39fecc8
--- /dev/null
+++ b/test/ast-test-case/fragment-style/output.json
@@ -0,0 +1,196 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "script",
+ "tagName": "script",
+ "properties": {},
+ "children": [
+ {
+ "type": "CodeBlock",
+ "value": " const a = 1; ",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 9,
+ "offset": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 23,
+ "offset": 22
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 8
+ },
+ "end": {
+ "line": 1,
+ "column": 22
+ }
+ },
+ "range": [
+ 8,
+ 22
+ ],
+ "raw": " const a = 1; "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 32,
+ "offset": 31
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 31
+ }
+ },
+ "range": [
+ 0,
+ 31
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 32,
+ "offset": 31
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 32
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 31
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 31,
+ 32
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 32
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 32
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 32
+ ],
+ "raw": "\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 32
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 32
+ ],
+ "raw": "\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/h1-h7/index.html b/test/ast-test-case/h1-h7/index.html
new file mode 100644
index 0000000..9c769a0
--- /dev/null
+++ b/test/ast-test-case/h1-h7/index.html
@@ -0,0 +1,15 @@
+
+
+
+
+ Title
+
+
+h1
+h2
+h3
+h4
+h5
+h6
+
+
diff --git a/test/ast-test-case/h1-h7/output-tree.txt b/test/ast-test-case/h1-h7/output-tree.txt
new file mode 100644
index 0000000..6687480
--- /dev/null
+++ b/test/ast-test-case/h1-h7/output-tree.txt
@@ -0,0 +1,31 @@
+Document(root)
+ doctype(doctype)
+ html(element)
+ head(element)
+ Str(text)
+ meta(element)
+ Str(text)
+ title(element)
+ Str(text)
+ Str(text)
+ Str(text)
+ body(element)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
+ Header(element)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/h1-h7/output.json b/test/ast-test-case/h1-h7/output.json
new file mode 100644
index 0000000..2c47aca
--- /dev/null
+++ b/test/ast-test-case/h1-h7/output.json
@@ -0,0 +1,1006 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "doctype",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 16,
+ "offset": 15
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ },
+ "range": [
+ 0,
+ 15
+ ],
+ "raw": ""
+ },
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {
+ "lang": "en"
+ },
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 7,
+ "offset": 39
+ },
+ "end": {
+ "line": 4,
+ "column": 5,
+ "offset": 44
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 6
+ },
+ "end": {
+ "line": 4,
+ "column": 4
+ }
+ },
+ "range": [
+ 39,
+ 44
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "meta",
+ "tagName": "meta",
+ "properties": {
+ "charSet": "UTF-8"
+ },
+ "children": [],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 5,
+ "offset": 44
+ },
+ "end": {
+ "line": 4,
+ "column": 27,
+ "offset": 66
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 4
+ },
+ "end": {
+ "line": 4,
+ "column": 26
+ }
+ },
+ "range": [
+ 44,
+ 66
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 27,
+ "offset": 66
+ },
+ "end": {
+ "line": 5,
+ "column": 5,
+ "offset": 71
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 26
+ },
+ "end": {
+ "line": 5,
+ "column": 4
+ }
+ },
+ "range": [
+ 66,
+ 71
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "title",
+ "tagName": "title",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Title",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 12,
+ "offset": 78
+ },
+ "end": {
+ "line": 5,
+ "column": 17,
+ "offset": 83
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 11
+ },
+ "end": {
+ "line": 5,
+ "column": 16
+ }
+ },
+ "range": [
+ 78,
+ 83
+ ],
+ "raw": "Title"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 5,
+ "offset": 71
+ },
+ "end": {
+ "line": 5,
+ "column": 25,
+ "offset": 91
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 4
+ },
+ "end": {
+ "line": 5,
+ "column": 24
+ }
+ },
+ "range": [
+ 71,
+ 91
+ ],
+ "raw": "Title "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 25,
+ "offset": 91
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 92
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 24
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 91,
+ 92
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 33
+ },
+ "end": {
+ "line": 6,
+ "column": 8,
+ "offset": 99
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 7
+ }
+ },
+ "range": [
+ 33,
+ 99
+ ],
+ "raw": "\n \n Title \n"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 8,
+ "offset": 99
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 100
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 99,
+ 100
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 7,
+ "offset": 106
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 107
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 6
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 106,
+ 107
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h1",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h1",
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 5,
+ "offset": 111
+ },
+ "end": {
+ "line": 8,
+ "column": 7,
+ "offset": 113
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 4
+ },
+ "end": {
+ "line": 8,
+ "column": 6
+ }
+ },
+ "range": [
+ 111,
+ 113
+ ],
+ "raw": "h1"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 1,
+ "offset": 107
+ },
+ "end": {
+ "line": 8,
+ "column": 12,
+ "offset": 118
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 11
+ }
+ },
+ "range": [
+ 107,
+ 118
+ ],
+ "raw": "h1 ",
+ "depth": 1
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 12,
+ "offset": 118
+ },
+ "end": {
+ "line": 9,
+ "column": 1,
+ "offset": 119
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 11
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 118,
+ 119
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h2",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h2",
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 5,
+ "offset": 123
+ },
+ "end": {
+ "line": 9,
+ "column": 7,
+ "offset": 125
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 4
+ },
+ "end": {
+ "line": 9,
+ "column": 6
+ }
+ },
+ "range": [
+ 123,
+ 125
+ ],
+ "raw": "h2"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 1,
+ "offset": 119
+ },
+ "end": {
+ "line": 9,
+ "column": 12,
+ "offset": 130
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 11
+ }
+ },
+ "range": [
+ 119,
+ 130
+ ],
+ "raw": "h2 ",
+ "depth": 2
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 12,
+ "offset": 130
+ },
+ "end": {
+ "line": 10,
+ "column": 1,
+ "offset": 131
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 11
+ },
+ "end": {
+ "line": 10,
+ "column": 0
+ }
+ },
+ "range": [
+ 130,
+ 131
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h3",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h3",
+ "position": {
+ "start": {
+ "line": 10,
+ "column": 5,
+ "offset": 135
+ },
+ "end": {
+ "line": 10,
+ "column": 7,
+ "offset": 137
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 4
+ },
+ "end": {
+ "line": 10,
+ "column": 6
+ }
+ },
+ "range": [
+ 135,
+ 137
+ ],
+ "raw": "h3"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 10,
+ "column": 1,
+ "offset": 131
+ },
+ "end": {
+ "line": 10,
+ "column": 12,
+ "offset": 142
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 0
+ },
+ "end": {
+ "line": 10,
+ "column": 11
+ }
+ },
+ "range": [
+ 131,
+ 142
+ ],
+ "raw": "h3 ",
+ "depth": 3
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 10,
+ "column": 12,
+ "offset": 142
+ },
+ "end": {
+ "line": 11,
+ "column": 1,
+ "offset": 143
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 10,
+ "column": 11
+ },
+ "end": {
+ "line": 11,
+ "column": 0
+ }
+ },
+ "range": [
+ 142,
+ 143
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h4",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h4",
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 5,
+ "offset": 147
+ },
+ "end": {
+ "line": 11,
+ "column": 7,
+ "offset": 149
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 4
+ },
+ "end": {
+ "line": 11,
+ "column": 6
+ }
+ },
+ "range": [
+ 147,
+ 149
+ ],
+ "raw": "h4"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 1,
+ "offset": 143
+ },
+ "end": {
+ "line": 11,
+ "column": 12,
+ "offset": 154
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 0
+ },
+ "end": {
+ "line": 11,
+ "column": 11
+ }
+ },
+ "range": [
+ 143,
+ 154
+ ],
+ "raw": "h4 ",
+ "depth": 4
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 12,
+ "offset": 154
+ },
+ "end": {
+ "line": 12,
+ "column": 1,
+ "offset": 155
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 11
+ },
+ "end": {
+ "line": 12,
+ "column": 0
+ }
+ },
+ "range": [
+ 154,
+ 155
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h5",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h5",
+ "position": {
+ "start": {
+ "line": 12,
+ "column": 5,
+ "offset": 159
+ },
+ "end": {
+ "line": 12,
+ "column": 7,
+ "offset": 161
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 4
+ },
+ "end": {
+ "line": 12,
+ "column": 6
+ }
+ },
+ "range": [
+ 159,
+ 161
+ ],
+ "raw": "h5"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 12,
+ "column": 1,
+ "offset": 155
+ },
+ "end": {
+ "line": 12,
+ "column": 12,
+ "offset": 166
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 11
+ }
+ },
+ "range": [
+ 155,
+ 166
+ ],
+ "raw": "h5 ",
+ "depth": 5
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 12,
+ "column": 12,
+ "offset": 166
+ },
+ "end": {
+ "line": 13,
+ "column": 1,
+ "offset": 167
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 11
+ },
+ "end": {
+ "line": 13,
+ "column": 0
+ }
+ },
+ "range": [
+ 166,
+ 167
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Header",
+ "tagName": "h6",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "h6",
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 5,
+ "offset": 171
+ },
+ "end": {
+ "line": 13,
+ "column": 7,
+ "offset": 173
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 4
+ },
+ "end": {
+ "line": 13,
+ "column": 6
+ }
+ },
+ "range": [
+ 171,
+ 173
+ ],
+ "raw": "h6"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 1,
+ "offset": 167
+ },
+ "end": {
+ "line": 13,
+ "column": 12,
+ "offset": 178
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 0
+ },
+ "end": {
+ "line": 13,
+ "column": 11
+ }
+ },
+ "range": [
+ 167,
+ 178
+ ],
+ "raw": "h6 ",
+ "depth": 6
+ },
+ {
+ "type": "Str",
+ "value": "\n\n\n",
+ "position": {
+ "start": {
+ "line": 13,
+ "column": 12,
+ "offset": 178
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 195
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 13,
+ "column": 11
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 178,
+ 195
+ ],
+ "raw": "\n\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 1,
+ "offset": 100
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 195
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 100,
+ 195
+ ],
+ "raw": "\nh1 \nh2 \nh3 \nh4 \nh5 \nh6 \n\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 16
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 195
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 16,
+ 195
+ ],
+ "raw": "\n\n \n Title \n\n\nh1 \nh2 \nh3 \nh4 \nh5 \nh6 \n\n\n"
+ }
+ ],
+ "data": {
+ "quirksMode": false
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 1,
+ "offset": 195
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 16,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 195
+ ],
+ "raw": "\n\n\n \n Title \n\n\nh1 \nh2 \nh3 \nh4 \nh5 \nh6 \n\n\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/h1-h7/result.html b/test/ast-test-case/h1-h7/result.html
new file mode 100644
index 0000000..6fedfd4
--- /dev/null
+++ b/test/ast-test-case/h1-h7/result.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/test/ast-test-case/issue-15/index.html b/test/ast-test-case/issue-15/index.html
new file mode 100644
index 0000000..f18021e
--- /dev/null
+++ b/test/ast-test-case/issue-15/index.html
@@ -0,0 +1,7 @@
+
+テスト
+
+こんにちは、世界。
+こんにちは、 世界。
+
+
diff --git a/test/ast-test-case/issue-15/output-tree.txt b/test/ast-test-case/issue-15/output-tree.txt
new file mode 100644
index 0000000..5551e05
--- /dev/null
+++ b/test/ast-test-case/issue-15/output-tree.txt
@@ -0,0 +1,19 @@
+Document(root)
+ html(element)
+ head(element)
+ title(element)
+ Str(text)
+ Str(text)
+ body(element)
+ Str(text)
+ Paragraph(element)
+ span(element)
+ Str(text)
+ Str(text)
+ Paragraph(element)
+ span(element)
+ span(element)
+ Str(text)
+ span(element)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/issue-15/output.json b/test/ast-test-case/issue-15/output.json
new file mode 100644
index 0000000..30f6ff5
--- /dev/null
+++ b/test/ast-test-case/issue-15/output.json
@@ -0,0 +1,623 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "title",
+ "tagName": "title",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "テスト",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 14,
+ "offset": 20
+ },
+ "end": {
+ "line": 2,
+ "column": 17,
+ "offset": 23
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 13
+ },
+ "end": {
+ "line": 2,
+ "column": 16
+ }
+ },
+ "range": [
+ 20,
+ 23
+ ],
+ "raw": "テスト"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 7,
+ "offset": 13
+ },
+ "end": {
+ "line": 2,
+ "column": 25,
+ "offset": 31
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 6
+ },
+ "end": {
+ "line": 2,
+ "column": 24
+ }
+ },
+ "range": [
+ 13,
+ 31
+ ],
+ "raw": "テスト "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 32,
+ "offset": 38
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 31
+ }
+ },
+ "range": [
+ 7,
+ 38
+ ],
+ "raw": "テスト "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 32,
+ "offset": 38
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 39
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 31
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 38,
+ 39
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 7,
+ "offset": 45
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 46
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 6
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 45,
+ 46
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "span",
+ "tagName": "span",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "こんにちは、世界。",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 10,
+ "offset": 55
+ },
+ "end": {
+ "line": 4,
+ "column": 19,
+ "offset": 64
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 9
+ },
+ "end": {
+ "line": 4,
+ "column": 18
+ }
+ },
+ "range": [
+ 55,
+ 64
+ ],
+ "raw": "こんにちは、世界。"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 4,
+ "offset": 49
+ },
+ "end": {
+ "line": 4,
+ "column": 26,
+ "offset": 71
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 3
+ },
+ "end": {
+ "line": 4,
+ "column": 25
+ }
+ },
+ "range": [
+ 49,
+ 71
+ ],
+ "raw": "こんにちは、世界。 "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 1,
+ "offset": 46
+ },
+ "end": {
+ "line": 4,
+ "column": 30,
+ "offset": 75
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 29
+ }
+ },
+ "range": [
+ 46,
+ 75
+ ],
+ "raw": "こんにちは、世界。
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 30,
+ "offset": 75
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 76
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 29
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 75,
+ 76
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "span",
+ "tagName": "span",
+ "properties": {},
+ "children": [
+ {
+ "type": "span",
+ "tagName": "span",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "こんにちは、",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 16,
+ "offset": 91
+ },
+ "end": {
+ "line": 5,
+ "column": 22,
+ "offset": 97
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 15
+ },
+ "end": {
+ "line": 5,
+ "column": 21
+ }
+ },
+ "range": [
+ 91,
+ 97
+ ],
+ "raw": "こんにちは、"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 10,
+ "offset": 85
+ },
+ "end": {
+ "line": 5,
+ "column": 29,
+ "offset": 104
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 9
+ },
+ "end": {
+ "line": 5,
+ "column": 28
+ }
+ },
+ "range": [
+ 85,
+ 104
+ ],
+ "raw": "こんにちは、 "
+ },
+ {
+ "type": "span",
+ "tagName": "span",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "世界。",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 35,
+ "offset": 110
+ },
+ "end": {
+ "line": 5,
+ "column": 38,
+ "offset": 113
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 34
+ },
+ "end": {
+ "line": 5,
+ "column": 37
+ }
+ },
+ "range": [
+ 110,
+ 113
+ ],
+ "raw": "世界。"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 29,
+ "offset": 104
+ },
+ "end": {
+ "line": 5,
+ "column": 45,
+ "offset": 120
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 28
+ },
+ "end": {
+ "line": 5,
+ "column": 44
+ }
+ },
+ "range": [
+ 104,
+ 120
+ ],
+ "raw": "世界。 "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 4,
+ "offset": 79
+ },
+ "end": {
+ "line": 5,
+ "column": 52,
+ "offset": 127
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 3
+ },
+ "end": {
+ "line": 5,
+ "column": 51
+ }
+ },
+ "range": [
+ 79,
+ 127
+ ],
+ "raw": "こんにちは、 世界。 "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 1,
+ "offset": 76
+ },
+ "end": {
+ "line": 5,
+ "column": 56,
+ "offset": 131
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 55
+ }
+ },
+ "range": [
+ 76,
+ 131
+ ],
+ "raw": "こんにちは、 世界。
"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 56,
+ "offset": 131
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 148
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 55
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 131,
+ 148
+ ],
+ "raw": "\n\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 39
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 148
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 39,
+ 148
+ ],
+ "raw": "\nこんにちは、世界。
\nこんにちは、 世界。
\n\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 148
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 148
+ ],
+ "raw": "\nテスト \n\nこんにちは、世界。
\nこんにちは、 世界。
\n\n\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 148
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 148
+ ],
+ "raw": "\nテスト \n\nこんにちは、世界。
\nこんにちは、 世界。
\n\n\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/list/index.json b/test/ast-test-case/list/index.json
deleted file mode 100644
index 0554505..0000000
--- a/test/ast-test-case/list/index.json
+++ /dev/null
@@ -1,380 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 2,
- "line": 2
- },
- "start": {
- "column": 4,
- "line": 1
- }
- },
- "range": [
- 4,
- 7
- ],
- "raw": "\n ",
- "type": "Str",
- "value": "\n "
- },
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 16,
- "line": 2
- },
- "start": {
- "column": 6,
- "line": 2
- }
- },
- "range": [
- 11,
- 21
- ],
- "raw": "first item",
- "type": "Str",
- "value": "first item"
- }
- ],
- "loc": {
- "end": {
- "column": 21,
- "line": 2
- },
- "start": {
- "column": 2,
- "line": 2
- }
- },
- "properties": {},
- "range": [
- 7,
- 26
- ],
- "raw": "first item ",
- "tagName": "li",
- "type": "ListItem"
- },
- {
- "loc": {
- "end": {
- "column": 2,
- "line": 3
- },
- "start": {
- "column": 21,
- "line": 2
- }
- },
- "range": [
- 26,
- 29
- ],
- "raw": "\n ",
- "type": "Str",
- "value": "\n "
- },
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 17,
- "line": 3
- },
- "start": {
- "column": 6,
- "line": 3
- }
- },
- "range": [
- 33,
- 44
- ],
- "raw": "second item",
- "type": "Str",
- "value": "second item"
- }
- ],
- "loc": {
- "end": {
- "column": 22,
- "line": 3
- },
- "start": {
- "column": 2,
- "line": 3
- }
- },
- "properties": {},
- "range": [
- 29,
- 49
- ],
- "raw": "second item ",
- "tagName": "li",
- "type": "ListItem"
- },
- {
- "loc": {
- "end": {
- "column": 0,
- "line": 4
- },
- "start": {
- "column": 22,
- "line": 3
- }
- },
- "range": [
- 49,
- 50
- ],
- "raw": "\n",
- "type": "Str",
- "value": "\n"
- }
- ],
- "loc": {
- "end": {
- "column": 5,
- "line": 4
- },
- "start": {
- "column": 0,
- "line": 1
- }
- },
- "properties": {},
- "range": [
- 0,
- 55
- ],
- "raw": "\n first item \n second item \n ",
- "tagName": "ul",
- "type": "List"
- },
- {
- "loc": {
- "end": {
- "column": 0,
- "line": 5
- },
- "start": {
- "column": 5,
- "line": 4
- }
- },
- "range": [
- 55,
- 56
- ],
- "raw": "\n",
- "type": "Str",
- "value": "\n"
- },
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 2,
- "line": 6
- },
- "start": {
- "column": 4,
- "line": 5
- }
- },
- "range": [
- 60,
- 63
- ],
- "raw": "\n ",
- "type": "Str",
- "value": "\n "
- },
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 18,
- "line": 6
- },
- "start": {
- "column": 6,
- "line": 6
- }
- },
- "range": [
- 67,
- 79
- ],
- "raw": "# first item",
- "type": "Str",
- "value": "# first item"
- }
- ],
- "loc": {
- "end": {
- "column": 23,
- "line": 6
- },
- "start": {
- "column": 2,
- "line": 6
- }
- },
- "properties": {},
- "range": [
- 63,
- 84
- ],
- "raw": "# first item ",
- "tagName": "li",
- "type": "ListItem"
- },
- {
- "loc": {
- "end": {
- "column": 2,
- "line": 7
- },
- "start": {
- "column": 23,
- "line": 6
- }
- },
- "range": [
- 84,
- 87
- ],
- "raw": "\n ",
- "type": "Str",
- "value": "\n "
- },
- {
- "children": [
- {
- "loc": {
- "end": {
- "column": 19,
- "line": 7
- },
- "start": {
- "column": 6,
- "line": 7
- }
- },
- "range": [
- 91,
- 104
- ],
- "raw": "# second item",
- "type": "Str",
- "value": "# second item"
- }
- ],
- "loc": {
- "end": {
- "column": 24,
- "line": 7
- },
- "start": {
- "column": 2,
- "line": 7
- }
- },
- "properties": {},
- "range": [
- 87,
- 109
- ],
- "raw": "# second item ",
- "tagName": "li",
- "type": "ListItem"
- },
- {
- "loc": {
- "end": {
- "column": 0,
- "line": 8
- },
- "start": {
- "column": 24,
- "line": 7
- }
- },
- "range": [
- 109,
- 110
- ],
- "raw": "\n",
- "type": "Str",
- "value": "\n"
- }
- ],
- "loc": {
- "end": {
- "column": 5,
- "line": 8
- },
- "start": {
- "column": 0,
- "line": 5
- }
- },
- "properties": {},
- "range": [
- 56,
- 115
- ],
- "raw": "\n # first item \n # second item \n ",
- "tagName": "ol",
- "type": "List"
- },
- {
- "loc": {
- "end": {
- "column": 0,
- "line": 9
- },
- "start": {
- "column": 5,
- "line": 8
- }
- },
- "range": [
- 115,
- 116
- ],
- "raw": "\n",
- "type": "Str",
- "value": "\n"
- }
- ],
- "loc": {
- "end": {
- "column": 0,
- "line": 9
- },
- "start": {
- "column": 0,
- "line": 1
- }
- },
- "range": [
- 0,
- 116
- ],
- "raw": "\n first item \n second item \n \n\n # first item \n # second item \n \n"
-}
diff --git a/test/ast-test-case/list/output-tree.txt b/test/ast-test-case/list/output-tree.txt
new file mode 100644
index 0000000..3bf6e57
--- /dev/null
+++ b/test/ast-test-case/list/output-tree.txt
@@ -0,0 +1,22 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ List(element)
+ Str(text)
+ ListItem(element)
+ Str(text)
+ Str(text)
+ ListItem(element)
+ Str(text)
+ Str(text)
+ Str(text)
+ List(element)
+ Str(text)
+ ListItem(element)
+ Str(text)
+ Str(text)
+ ListItem(element)
+ Str(text)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/list/output.json b/test/ast-test-case/list/output.json
new file mode 100644
index 0000000..494491c
--- /dev/null
+++ b/test/ast-test-case/list/output.json
@@ -0,0 +1,678 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 116
+ ],
+ "raw": "\n first item \n second item \n \n\n # first item \n # second item \n \n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "List",
+ "tagName": "ul",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 5,
+ "offset": 4
+ },
+ "end": {
+ "line": 2,
+ "column": 3,
+ "offset": 7
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 4
+ },
+ "end": {
+ "line": 2,
+ "column": 2
+ }
+ },
+ "range": [
+ 4,
+ 7
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "ListItem",
+ "tagName": "li",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "first item",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 7,
+ "offset": 11
+ },
+ "end": {
+ "line": 2,
+ "column": 17,
+ "offset": 21
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 6
+ },
+ "end": {
+ "line": 2,
+ "column": 16
+ }
+ },
+ "range": [
+ 11,
+ 21
+ ],
+ "raw": "first item"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 3,
+ "offset": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 22,
+ "offset": 26
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 2
+ },
+ "end": {
+ "line": 2,
+ "column": 21
+ }
+ },
+ "range": [
+ 7,
+ 26
+ ],
+ "raw": "first item "
+ },
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 22,
+ "offset": 26
+ },
+ "end": {
+ "line": 3,
+ "column": 3,
+ "offset": 29
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 21
+ },
+ "end": {
+ "line": 3,
+ "column": 2
+ }
+ },
+ "range": [
+ 26,
+ 29
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "ListItem",
+ "tagName": "li",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "second item",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 7,
+ "offset": 33
+ },
+ "end": {
+ "line": 3,
+ "column": 18,
+ "offset": 44
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 6
+ },
+ "end": {
+ "line": 3,
+ "column": 17
+ }
+ },
+ "range": [
+ 33,
+ 44
+ ],
+ "raw": "second item"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 3,
+ "offset": 29
+ },
+ "end": {
+ "line": 3,
+ "column": 23,
+ "offset": 49
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 2
+ },
+ "end": {
+ "line": 3,
+ "column": 22
+ }
+ },
+ "range": [
+ 29,
+ 49
+ ],
+ "raw": "second item "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 23,
+ "offset": 49
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 50
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 22
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 49,
+ 50
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 6,
+ "offset": 55
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 5
+ }
+ },
+ "range": [
+ 0,
+ 55
+ ],
+ "raw": "\n first item \n second item \n ",
+ "ordered": false
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 6,
+ "offset": 55
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 56
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 5
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 55,
+ 56
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "List",
+ "tagName": "ol",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 5,
+ "offset": 60
+ },
+ "end": {
+ "line": 6,
+ "column": 3,
+ "offset": 63
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 4
+ },
+ "end": {
+ "line": 6,
+ "column": 2
+ }
+ },
+ "range": [
+ 60,
+ 63
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "ListItem",
+ "tagName": "li",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "# first item",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 7,
+ "offset": 67
+ },
+ "end": {
+ "line": 6,
+ "column": 19,
+ "offset": 79
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 6
+ },
+ "end": {
+ "line": 6,
+ "column": 18
+ }
+ },
+ "range": [
+ 67,
+ 79
+ ],
+ "raw": "# first item"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 3,
+ "offset": 63
+ },
+ "end": {
+ "line": 6,
+ "column": 24,
+ "offset": 84
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 2
+ },
+ "end": {
+ "line": 6,
+ "column": 23
+ }
+ },
+ "range": [
+ 63,
+ 84
+ ],
+ "raw": "# first item "
+ },
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 24,
+ "offset": 84
+ },
+ "end": {
+ "line": 7,
+ "column": 3,
+ "offset": 87
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 23
+ },
+ "end": {
+ "line": 7,
+ "column": 2
+ }
+ },
+ "range": [
+ 84,
+ 87
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "ListItem",
+ "tagName": "li",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "# second item",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 7,
+ "offset": 91
+ },
+ "end": {
+ "line": 7,
+ "column": 20,
+ "offset": 104
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 6
+ },
+ "end": {
+ "line": 7,
+ "column": 19
+ }
+ },
+ "range": [
+ 91,
+ 104
+ ],
+ "raw": "# second item"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 3,
+ "offset": 87
+ },
+ "end": {
+ "line": 7,
+ "column": 25,
+ "offset": 109
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 2
+ },
+ "end": {
+ "line": 7,
+ "column": 24
+ }
+ },
+ "range": [
+ 87,
+ 109
+ ],
+ "raw": "# second item "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 25,
+ "offset": 109
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 110
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 24
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 109,
+ 110
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 1,
+ "offset": 56
+ },
+ "end": {
+ "line": 8,
+ "column": 6,
+ "offset": 115
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 8,
+ "column": 5
+ }
+ },
+ "range": [
+ 56,
+ 115
+ ],
+ "raw": "\n # first item \n # second item \n ",
+ "ordered": true
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 6,
+ "offset": 115
+ },
+ "end": {
+ "line": 9,
+ "column": 1,
+ "offset": 116
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 5
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 115,
+ 116
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 116
+ ],
+ "raw": "\n first item \n second item \n \n\n # first item \n # second item \n \n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 116
+ ],
+ "raw": "\n first item \n second item \n \n\n # first item \n # second item \n \n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 1,
+ "offset": 116
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 9,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 116
+ ],
+ "raw": "\n first item \n second item \n \n\n # first item \n # second item \n \n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/processing-instruction/index.json b/test/ast-test-case/processing-instruction/index.json
deleted file mode 100644
index 3b8f460..0000000
--- a/test/ast-test-case/processing-instruction/index.json
+++ /dev/null
@@ -1,59 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "UNKNOWN",
- "name": "?xml",
- "value": "?xml version=\"1.0\" encoding=\"UTF-8\"?",
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 38
- }
- },
- "range": [
- 0,
- 38
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 38
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 38,
- 39
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 0,
- 39
- ],
- "raw": "\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/processing-instruction/output-tree.txt b/test/ast-test-case/processing-instruction/output-tree.txt
new file mode 100644
index 0000000..8aa63f1
--- /dev/null
+++ b/test/ast-test-case/processing-instruction/output-tree.txt
@@ -0,0 +1,5 @@
+Document(root)
+ Comment(comment)
+ html(element)
+ head(element)
+ body(element)
diff --git a/test/ast-test-case/processing-instruction/output.json b/test/ast-test-case/processing-instruction/output.json
new file mode 100644
index 0000000..a4600c7
--- /dev/null
+++ b/test/ast-test-case/processing-instruction/output.json
@@ -0,0 +1,130 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "Comment",
+ "value": "?xml version=\"1.0\" encoding=\"UTF-8\"?",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 39,
+ "offset": 38
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 38
+ }
+ },
+ "range": [
+ 0,
+ 38
+ ],
+ "raw": ""
+ },
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 39
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 39
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 39
+ ],
+ "raw": "\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 39
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 39
+ ],
+ "raw": "\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/quirksmode-off/index.json b/test/ast-test-case/quirksmode-off/index.json
deleted file mode 100644
index 054a230..0000000
--- a/test/ast-test-case/quirksmode-off/index.json
+++ /dev/null
@@ -1,261 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "UNKNOWN",
- "name": "!doctype",
- "value": "!doctype html",
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 15
- }
- },
- "range": [
- 0,
- 15
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 15
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 15,
- 16
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "html",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 2,
- "column": 6
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 22,
- 23
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "title",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "Not-Quirksmode",
- "loc": {
- "start": {
- "line": 3,
- "column": 7
- },
- "end": {
- "line": 3,
- "column": 21
- }
- },
- "range": [
- 30,
- 44
- ],
- "raw": "Not-Quirksmode"
- }
- ],
- "loc": {
- "start": {
- "line": 3,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 29
- }
- },
- "range": [
- 23,
- 52
- ],
- "raw": "Not-Quirksmode "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 3,
- "column": 29
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 52,
- 53
- ],
- "raw": "\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "Outside of quirksmode, the following table is outside this paragraph:\n",
- "loc": {
- "start": {
- "line": 4,
- "column": 3
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 56,
- 126
- ],
- "raw": "Outside of quirksmode, the following table is outside this paragraph:\n"
- },
- {
- "type": "Html",
- "tagName": "table",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "!",
- "loc": {
- "start": {
- "line": 5,
- "column": 7
- },
- "end": {
- "line": 5,
- "column": 8
- }
- },
- "range": [
- 133,
- 134
- ],
- "raw": "!"
- }
- ],
- "loc": {
- "start": {
- "line": 5,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 16
- }
- },
- "range": [
- 126,
- 142
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 5,
- "column": 16
- },
- "end": {
- "line": 6,
- "column": 0
- }
- },
- "range": [
- 142,
- 143
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 0
- },
- "end": {
- "line": 6,
- "column": 1
- }
- },
- "range": [
- 53,
- 144
- ],
- "raw": "Outside of quirksmode, the following table is outside this paragraph:\n
\n"
- }
- ],
- "loc": {
- "start": {
- "line": 2,
- "column": 0
- },
- "end": {
- "line": 6,
- "column": 1
- }
- },
- "range": [
- 16,
- 144
- ],
- "raw": "\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 6,
- "column": 0
- }
- },
- "range": [
- 0,
- 143
- ],
- "raw": "\n\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/quirksmode-off/output-tree.txt b/test/ast-test-case/quirksmode-off/output-tree.txt
new file mode 100644
index 0000000..da088a4
--- /dev/null
+++ b/test/ast-test-case/quirksmode-off/output-tree.txt
@@ -0,0 +1,13 @@
+Document(root)
+ doctype(doctype)
+ html(element)
+ head(element)
+ title(element)
+ Str(text)
+ Str(text)
+ body(element)
+ Paragraph(element)
+ Str(text)
+ Str(text)
+ table(element)
+ Str(text)
diff --git a/test/ast-test-case/quirksmode-off/output.json b/test/ast-test-case/quirksmode-off/output.json
new file mode 100644
index 0000000..e430272
--- /dev/null
+++ b/test/ast-test-case/quirksmode-off/output.json
@@ -0,0 +1,399 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "doctype",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 16,
+ "offset": 15
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ },
+ "range": [
+ 0,
+ 15
+ ],
+ "raw": ""
+ },
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "title",
+ "tagName": "title",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Not-Quirksmode",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 8,
+ "offset": 30
+ },
+ "end": {
+ "line": 3,
+ "column": 22,
+ "offset": 44
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 7
+ },
+ "end": {
+ "line": 3,
+ "column": 21
+ }
+ },
+ "range": [
+ 30,
+ 44
+ ],
+ "raw": "Not-Quirksmode"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 23
+ },
+ "end": {
+ "line": 3,
+ "column": 30,
+ "offset": 52
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 29
+ }
+ },
+ "range": [
+ 23,
+ 52
+ ],
+ "raw": "Not-Quirksmode "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 30,
+ "offset": 52
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 53
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 29
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 52,
+ 53
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 16,
+ 143
+ ],
+ "raw": "\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Outside of quirksmode, the following table is outside this paragraph:\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 4,
+ "offset": 56
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 126
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 3
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 56,
+ 126
+ ],
+ "raw": "Outside of quirksmode, the following table is outside this paragraph:\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 1,
+ "offset": 53
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 126
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 53,
+ 126
+ ],
+ "raw": "Outside of quirksmode, the following table is outside this paragraph:\n"
+ },
+ {
+ "type": "Str",
+ "value": "!",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 8,
+ "offset": 133
+ },
+ "end": {
+ "line": 5,
+ "column": 9,
+ "offset": 134
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 7
+ },
+ "end": {
+ "line": 5,
+ "column": 8
+ }
+ },
+ "range": [
+ 133,
+ 134
+ ],
+ "raw": "!"
+ },
+ {
+ "type": "table",
+ "tagName": "table",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 1,
+ "offset": 126
+ },
+ "end": {
+ "line": 5,
+ "column": 17,
+ "offset": 142
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 16
+ }
+ },
+ "range": [
+ 126,
+ 142
+ ],
+ "raw": "
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 17,
+ "offset": 142
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 143
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 16
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 142,
+ 143
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 16,
+ 143
+ ],
+ "raw": "\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 16
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 143
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 16,
+ 143
+ ],
+ "raw": "\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
+ }
+ ],
+ "data": {
+ "quirksMode": false
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 143
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 143
+ ],
+ "raw": "\n\nNot-Quirksmode \nOutside of quirksmode, the following table is outside this paragraph:\n
\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/quirksmode-on/index.json b/test/ast-test-case/quirksmode-on/index.json
deleted file mode 100644
index 51b77d8..0000000
--- a/test/ast-test-case/quirksmode-on/index.json
+++ /dev/null
@@ -1,222 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Html",
- "tagName": "html",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 6
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 6,
- 7
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "title",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "Quirksmode",
- "loc": {
- "start": {
- "line": 2,
- "column": 7
- },
- "end": {
- "line": 2,
- "column": 17
- }
- },
- "range": [
- 14,
- 24
- ],
- "raw": "Quirksmode"
- }
- ],
- "loc": {
- "start": {
- "line": 2,
- "column": 0
- },
- "end": {
- "line": 2,
- "column": 25
- }
- },
- "range": [
- 7,
- 32
- ],
- "raw": "Quirksmode "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 2,
- "column": 25
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 32,
- 33
- ],
- "raw": "\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "In quirksmode, the following table is in this paragraph:\n",
- "loc": {
- "start": {
- "line": 3,
- "column": 3
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 36,
- 93
- ],
- "raw": "In quirksmode, the following table is in this paragraph:\n"
- },
- {
- "type": "Html",
- "tagName": "table",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "!",
- "loc": {
- "start": {
- "line": 4,
- "column": 7
- },
- "end": {
- "line": 4,
- "column": 8
- }
- },
- "range": [
- 100,
- 101
- ],
- "raw": "!"
- }
- ],
- "loc": {
- "start": {
- "line": 4,
- "column": 0
- },
- "end": {
- "line": 4,
- "column": 16
- }
- },
- "range": [
- 93,
- 109
- ],
- "raw": ""
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 4,
- "column": 16
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 109,
- 110
- ],
- "raw": "\n"
- }
- ],
- "loc": {
- "start": {
- "line": 3,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 1
- }
- },
- "range": [
- 33,
- 111
- ],
- "raw": "In quirksmode, the following table is in this paragraph:\n
\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 1
- }
- },
- "range": [
- 0,
- 111
- ],
- "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 0,
- 110
- ],
- "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/quirksmode-on/output-tree.txt b/test/ast-test-case/quirksmode-on/output-tree.txt
new file mode 100644
index 0000000..b199be6
--- /dev/null
+++ b/test/ast-test-case/quirksmode-on/output-tree.txt
@@ -0,0 +1,11 @@
+Document(root)
+ html(element)
+ head(element)
+ title(element)
+ Str(text)
+ Str(text)
+ body(element)
+ Paragraph(element)
+ Str(text)
+ table(element)
+ Str(text)
diff --git a/test/ast-test-case/quirksmode-on/output.json b/test/ast-test-case/quirksmode-on/output.json
new file mode 100644
index 0000000..8633e27
--- /dev/null
+++ b/test/ast-test-case/quirksmode-on/output.json
@@ -0,0 +1,338 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "title",
+ "tagName": "title",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Quirksmode",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 8,
+ "offset": 14
+ },
+ "end": {
+ "line": 2,
+ "column": 18,
+ "offset": 24
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 17
+ }
+ },
+ "range": [
+ 14,
+ 24
+ ],
+ "raw": "Quirksmode"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 7
+ },
+ "end": {
+ "line": 2,
+ "column": 26,
+ "offset": 32
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 2,
+ "column": 25
+ }
+ },
+ "range": [
+ 7,
+ 32
+ ],
+ "raw": "Quirksmode "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 26,
+ "offset": 32
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 33
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 25
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 32,
+ 33
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 110
+ ],
+ "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "In quirksmode, the following table is in this paragraph:\n!",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 4,
+ "offset": 36
+ },
+ "end": {
+ "line": 4,
+ "column": 9,
+ "offset": 101
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 3
+ },
+ "end": {
+ "line": 4,
+ "column": 8
+ }
+ },
+ "range": [
+ 36,
+ 101
+ ],
+ "raw": "In quirksmode, the following table is in this paragraph:\n!"
+ },
+ {
+ "type": "table",
+ "tagName": "table",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 1,
+ "offset": 93
+ },
+ "end": {
+ "line": 4,
+ "column": 17,
+ "offset": 109
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 0
+ },
+ "end": {
+ "line": 4,
+ "column": 16
+ }
+ },
+ "range": [
+ 93,
+ 109
+ ],
+ "raw": ""
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 17,
+ "offset": 109
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 110
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 16
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 109,
+ 110
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 33
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 110
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 33,
+ 110
+ ],
+ "raw": "In quirksmode, the following table is in this paragraph:\n
\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 110
+ ],
+ "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 110
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 110
+ ],
+ "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 110
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 110
+ ],
+ "raw": "\nQuirksmode \nIn quirksmode, the following table is in this paragraph:\n
\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/test/index.html b/test/ast-test-case/test/index.html
new file mode 100644
index 0000000..5e8e459
--- /dev/null
+++ b/test/ast-test-case/test/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+ Title
+
+
+
+
+ TODO: This is TODO
+
+
+
+
\ No newline at end of file
diff --git a/test/ast-test-case/test/output-tree.txt b/test/ast-test-case/test/output-tree.txt
new file mode 100644
index 0000000..c9cb3cb
--- /dev/null
+++ b/test/ast-test-case/test/output-tree.txt
@@ -0,0 +1,19 @@
+Document(root)
+ doctype(doctype)
+ html(element)
+ head(element)
+ Str(text)
+ meta(element)
+ Str(text)
+ title(element)
+ Str(text)
+ Str(text)
+ Str(text)
+ body(element)
+ Str(text)
+ div(element)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ Str(text)
+ Str(text)
diff --git a/test/ast-test-case/test/output.json b/test/ast-test-case/test/output.json
new file mode 100644
index 0000000..db95e7f
--- /dev/null
+++ b/test/ast-test-case/test/output.json
@@ -0,0 +1,616 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "doctype",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 16,
+ "offset": 15
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 15
+ }
+ },
+ "range": [
+ 0,
+ 15
+ ],
+ "raw": ""
+ },
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {
+ "lang": "en"
+ },
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 7,
+ "offset": 39
+ },
+ "end": {
+ "line": 4,
+ "column": 5,
+ "offset": 44
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 6
+ },
+ "end": {
+ "line": 4,
+ "column": 4
+ }
+ },
+ "range": [
+ 39,
+ 44
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "meta",
+ "tagName": "meta",
+ "properties": {
+ "charSet": "UTF-8"
+ },
+ "children": [],
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 5,
+ "offset": 44
+ },
+ "end": {
+ "line": 4,
+ "column": 27,
+ "offset": 66
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 4
+ },
+ "end": {
+ "line": 4,
+ "column": 26
+ }
+ },
+ "range": [
+ 44,
+ 66
+ ],
+ "raw": " "
+ },
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 27,
+ "offset": 66
+ },
+ "end": {
+ "line": 5,
+ "column": 5,
+ "offset": 71
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 26
+ },
+ "end": {
+ "line": 5,
+ "column": 4
+ }
+ },
+ "range": [
+ 66,
+ 71
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "title",
+ "tagName": "title",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "Title",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 12,
+ "offset": 78
+ },
+ "end": {
+ "line": 5,
+ "column": 17,
+ "offset": 83
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 11
+ },
+ "end": {
+ "line": 5,
+ "column": 16
+ }
+ },
+ "range": [
+ 78,
+ 83
+ ],
+ "raw": "Title"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 5,
+ "offset": 71
+ },
+ "end": {
+ "line": 5,
+ "column": 25,
+ "offset": 91
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 4
+ },
+ "end": {
+ "line": 5,
+ "column": 24
+ }
+ },
+ "range": [
+ 71,
+ 91
+ ],
+ "raw": "Title "
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 5,
+ "column": 25,
+ "offset": 91
+ },
+ "end": {
+ "line": 6,
+ "column": 1,
+ "offset": 92
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 5,
+ "column": 24
+ },
+ "end": {
+ "line": 6,
+ "column": 0
+ }
+ },
+ "range": [
+ 91,
+ 92
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 33
+ },
+ "end": {
+ "line": 6,
+ "column": 8,
+ "offset": 99
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 6,
+ "column": 7
+ }
+ },
+ "range": [
+ 33,
+ 99
+ ],
+ "raw": "\n \n Title \n"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 6,
+ "column": 8,
+ "offset": 99
+ },
+ "end": {
+ "line": 7,
+ "column": 1,
+ "offset": 100
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 6,
+ "column": 7
+ },
+ "end": {
+ "line": 7,
+ "column": 0
+ }
+ },
+ "range": [
+ 99,
+ 100
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 7,
+ "offset": 106
+ },
+ "end": {
+ "line": 8,
+ "column": 1,
+ "offset": 107
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 6
+ },
+ "end": {
+ "line": 8,
+ "column": 0
+ }
+ },
+ "range": [
+ 106,
+ 107
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "div",
+ "tagName": "div",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n ",
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 6,
+ "offset": 112
+ },
+ "end": {
+ "line": 9,
+ "column": 5,
+ "offset": 117
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 5
+ },
+ "end": {
+ "line": 9,
+ "column": 4
+ }
+ },
+ "range": [
+ 112,
+ 117
+ ],
+ "raw": "\n "
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n TODO: This is TODO\n ",
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 8,
+ "offset": 120
+ },
+ "end": {
+ "line": 11,
+ "column": 5,
+ "offset": 152
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 7
+ },
+ "end": {
+ "line": 11,
+ "column": 4
+ }
+ },
+ "range": [
+ 120,
+ 152
+ ],
+ "raw": "\n TODO: This is TODO\n "
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 9,
+ "column": 5,
+ "offset": 117
+ },
+ "end": {
+ "line": 11,
+ "column": 9,
+ "offset": 156
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 9,
+ "column": 4
+ },
+ "end": {
+ "line": 11,
+ "column": 8
+ }
+ },
+ "range": [
+ 117,
+ 156
+ ],
+ "raw": "\n TODO: This is TODO\n
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 11,
+ "column": 9,
+ "offset": 156
+ },
+ "end": {
+ "line": 12,
+ "column": 1,
+ "offset": 157
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 11,
+ "column": 8
+ },
+ "end": {
+ "line": 12,
+ "column": 0
+ }
+ },
+ "range": [
+ 156,
+ 157
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 8,
+ "column": 1,
+ "offset": 107
+ },
+ "end": {
+ "line": 12,
+ "column": 7,
+ "offset": 163
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 8,
+ "column": 0
+ },
+ "end": {
+ "line": 12,
+ "column": 6
+ }
+ },
+ "range": [
+ 107,
+ 163
+ ],
+ "raw": "\n
\n TODO: This is TODO\n
\n
"
+ },
+ {
+ "type": "Str",
+ "value": "\n\n",
+ "position": {
+ "start": {
+ "line": 12,
+ "column": 7,
+ "offset": 163
+ },
+ "end": {
+ "line": 14,
+ "column": 1,
+ "offset": 172
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 12,
+ "column": 6
+ },
+ "end": {
+ "line": 14,
+ "column": 0
+ }
+ },
+ "range": [
+ 163,
+ 172
+ ],
+ "raw": "\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 7,
+ "column": 1,
+ "offset": 100
+ },
+ "end": {
+ "line": 14,
+ "column": 8,
+ "offset": 179
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 7,
+ "column": 0
+ },
+ "end": {
+ "line": 14,
+ "column": 7
+ }
+ },
+ "range": [
+ 100,
+ 179
+ ],
+ "raw": "\n\n
\n TODO: This is TODO\n
\n
\n\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 16
+ },
+ "end": {
+ "line": 14,
+ "column": 8,
+ "offset": 179
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 14,
+ "column": 7
+ }
+ },
+ "range": [
+ 16,
+ 179
+ ],
+ "raw": "\n\n \n Title \n\n\n\n
\n TODO: This is TODO\n
\n
\n\n"
+ }
+ ],
+ "data": {
+ "quirksMode": false
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 14,
+ "column": 8,
+ "offset": 179
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 14,
+ "column": 7
+ }
+ },
+ "range": [
+ 0,
+ 179
+ ],
+ "raw": "\n\n\n \n Title \n\n\n\n
\n TODO: This is TODO\n
\n
\n\n"
+}
\ No newline at end of file
diff --git a/test/ast-test-case/verbose/index.json b/test/ast-test-case/verbose/index.json
deleted file mode 100644
index ba756ba..0000000
--- a/test/ast-test-case/verbose/index.json
+++ /dev/null
@@ -1,184 +0,0 @@
-{
- "type": "Document",
- "children": [
- {
- "type": "Image",
- "tagName": "img",
- "properties": {
- "src": "#",
- "type": "UNKNOWN"
- },
- "children": [],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 1,
- "column": 17
- }
- },
- "range": [
- 0,
- 17
- ],
- "raw": " "
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 1,
- "column": 17
- },
- "end": {
- "line": 2,
- "column": 0
- }
- },
- "range": [
- 17,
- 18
- ],
- "raw": "\n"
- },
- {
- "type": "Paragraph",
- "tagName": "p",
- "properties": {},
- "children": [
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 2,
- "column": 3
- },
- "end": {
- "line": 3,
- "column": 0
- }
- },
- "range": [
- 21,
- 22
- ],
- "raw": "\n"
- },
- {
- "type": "Html",
- "tagName": "div",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 3,
- "column": 0
- },
- "end": {
- "line": 3,
- "column": 11
- }
- },
- "range": [
- 22,
- 33
- ],
- "raw": "
"
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 3,
- "column": 11
- },
- "end": {
- "line": 4,
- "column": 0
- }
- },
- "range": [
- 33,
- 34
- ],
- "raw": "\n"
- },
- {
- "type": "break",
- "tagName": "br",
- "properties": {},
- "children": [],
- "loc": {
- "start": {
- "line": 4,
- "column": 4
- },
- "end": {
- "line": 4,
- "column": 5
- }
- },
- "range": [
- 38,
- 39
- ],
- "raw": ">"
- },
- {
- "type": "Str",
- "value": "\n",
- "loc": {
- "start": {
- "line": 4,
- "column": 4
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 38,
- 40
- ],
- "raw": ">\n"
- }
- ],
- "loc": {
- "start": {
- "line": 2,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 1
- }
- },
- "range": [
- 18,
- 41
- ],
- "raw": "\n
\n\n"
- }
- ],
- "loc": {
- "start": {
- "line": 1,
- "column": 0
- },
- "end": {
- "line": 5,
- "column": 0
- }
- },
- "range": [
- 0,
- 40
- ],
- "raw": " \n\n
\n\n"
-}
\ No newline at end of file
diff --git a/test/ast-test-case/verbose/output-tree.txt b/test/ast-test-case/verbose/output-tree.txt
new file mode 100644
index 0000000..c7e0599
--- /dev/null
+++ b/test/ast-test-case/verbose/output-tree.txt
@@ -0,0 +1,12 @@
+Document(root)
+ html(element)
+ head(element)
+ body(element)
+ Image(element)
+ Str(text)
+ Paragraph(element)
+ Str(text)
+ div(element)
+ Str(text)
+ break(element)
+ Str(text)
diff --git a/test/ast-test-case/verbose/output.json b/test/ast-test-case/verbose/output.json
new file mode 100644
index 0000000..3caf833
--- /dev/null
+++ b/test/ast-test-case/verbose/output.json
@@ -0,0 +1,348 @@
+{
+ "type": "Document",
+ "children": [
+ {
+ "type": "html",
+ "tagName": "html",
+ "properties": {},
+ "children": [
+ {
+ "type": "head",
+ "tagName": "head",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 40
+ ],
+ "raw": " \n\n
\n\n"
+ },
+ {
+ "type": "body",
+ "tagName": "body",
+ "properties": {},
+ "children": [
+ {
+ "type": "Image",
+ "tagName": "img",
+ "properties": {
+ "src": "#"
+ },
+ "children": [],
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 18,
+ "offset": 17
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 1,
+ "column": 17
+ }
+ },
+ "range": [
+ 0,
+ 17
+ ],
+ "raw": " ",
+ "url": "#"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 18,
+ "offset": 17
+ },
+ "end": {
+ "line": 2,
+ "column": 1,
+ "offset": 18
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 17
+ },
+ "end": {
+ "line": 2,
+ "column": 0
+ }
+ },
+ "range": [
+ 17,
+ 18
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "Paragraph",
+ "tagName": "p",
+ "properties": {},
+ "children": [
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 4,
+ "offset": 21
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 22
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 3
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 21,
+ 22
+ ],
+ "raw": "\n"
+ }
+ ],
+ "position": {
+ "start": {
+ "line": 2,
+ "column": 1,
+ "offset": 18
+ },
+ "end": {
+ "line": 3,
+ "column": 1,
+ "offset": 22
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 2,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 0
+ }
+ },
+ "range": [
+ 18,
+ 22
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "div",
+ "tagName": "div",
+ "properties": {},
+ "children": [],
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 1,
+ "offset": 22
+ },
+ "end": {
+ "line": 3,
+ "column": 12,
+ "offset": 33
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 0
+ },
+ "end": {
+ "line": 3,
+ "column": 11
+ }
+ },
+ "range": [
+ 22,
+ 33
+ ],
+ "raw": "
"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 3,
+ "column": 12,
+ "offset": 33
+ },
+ "end": {
+ "line": 4,
+ "column": 1,
+ "offset": 34
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 3,
+ "column": 11
+ },
+ "end": {
+ "line": 4,
+ "column": 0
+ }
+ },
+ "range": [
+ 33,
+ 34
+ ],
+ "raw": "\n"
+ },
+ {
+ "type": "break",
+ "tagName": "br",
+ "properties": {},
+ "children": [],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 40
+ ],
+ "raw": " \n\n
\n\n"
+ },
+ {
+ "type": "Str",
+ "value": "\n",
+ "position": {
+ "start": {
+ "line": 4,
+ "column": 6,
+ "offset": 39
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 40
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 4,
+ "column": 5
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 39,
+ 40
+ ],
+ "raw": "\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 40
+ ],
+ "raw": " \n\n
\n\n"
+ }
+ ],
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 40
+ ],
+ "raw": " \n\n
\n\n"
+ }
+ ],
+ "data": {
+ "quirksMode": true
+ },
+ "position": {
+ "start": {
+ "line": 1,
+ "column": 1,
+ "offset": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 1,
+ "offset": 40
+ }
+ },
+ "loc": {
+ "start": {
+ "line": 1,
+ "column": 0
+ },
+ "end": {
+ "line": 5,
+ "column": 0
+ }
+ },
+ "range": [
+ 0,
+ 40
+ ],
+ "raw": " \n\n
\n\n"
+}
\ No newline at end of file
diff --git a/test/html-to-ast-test.js b/test/html-to-ast-test.js
deleted file mode 100644
index e0ffc2b..0000000
--- a/test/html-to-ast-test.js
+++ /dev/null
@@ -1,38 +0,0 @@
-// LICENSE : MIT
-"use strict";
-const assert = require("assert");
-const fs = require("fs");
-const path = require("path");
-const test = require("@textlint/ast-tester").test;
-const glob = require("glob");
-import {parse} from "../src/html-to-ast";
-describe("html-to-ast-test", function () {
- it("should return AST that passed isTxtAST", function () {
- const fixture = fs.readFileSync(path.join(__dirname, "fixtures/wikipedia.html"), "utf-8");
- const AST = parse(fixture);
- test(AST);
- });
- // test-case is come from https://github.com/wooorm/rehype
- // MIT
- context("test-case", () => {
- const htmls = glob.sync(__dirname + "/ast-test-case/*/index.html");
- const directories = htmls.map(filePath => {
- return path.dirname(filePath);
- });
- const ignoreTestCase = /element-broken-close/;
- directories.forEach(directory => {
- if (ignoreTestCase.test(directory)) {
- xit(`Skip ${path.basename(directory)}`, () => {
- });
- return;
- }
- it(`should parse to ast ${path.basename(directory)}`, () => {
- const content = fs.readFileSync(path.join(directory, "index.html"), "utf-8");
- const expected = JSON.parse(fs.readFileSync(path.join(directory, "index.json"), "utf-8"));
- const AST = parse(content);
- test(AST);
- assert.deepEqual(JSON.parse(JSON.stringify(AST)), expected);
- });
- });
- });
-});
\ No newline at end of file
diff --git a/test/html-to-ast-test.ts b/test/html-to-ast-test.ts
new file mode 100644
index 0000000..871b0f8
--- /dev/null
+++ b/test/html-to-ast-test.ts
@@ -0,0 +1,82 @@
+// LICENSE : MIT
+"use strict";
+import assert from "assert";
+import fs from "fs";
+import path from "path";
+import { test } from "@textlint/ast-tester";
+import { parse } from "../src/html-to-ast.js";
+import { fileURLToPath } from "url";
+import type { TxtParentNode } from "@textlint/ast-node-types";
+
+const __filename = fileURLToPath(import.meta.url);
+const __dirname = path.dirname(__filename);
+const fixturesDir = path.join(__dirname, "ast-test-case");
+
+const dumpTreeView = (node: TxtParentNode, depth = 0) => {
+ let output = "";
+ const indent = " ".repeat(depth * 2);
+ if (!node.type) {
+ throw new Error(`Unknown type: ${node._debug_type}`);
+ }
+ output += `${indent}${node.type}(${node._debug_type})\n`;
+ if (node.children) {
+ node.children.forEach(child => {
+ output += dumpTreeView(child as TxtParentNode, depth + 1);
+ });
+ }
+ return output;
+}
+const assertUndefinedType = (node: TxtParentNode) => {
+ if (!("type" in node)) {
+ console.error(node);
+ // @ts-ignore
+ throw new Error(`Unknown type: ${node._debug_type}`);
+ }
+ if (node.children) {
+ node.children.forEach(child => {
+ assertUndefinedType(child as TxtParentNode);
+ });
+ }
+}
+// test-case is come from https://github.com/wooorm/rehype
+describe("Snapshot testing", () => {
+ fs.readdirSync(fixturesDir)
+ .map(caseName => {
+ const normalizedTestName = caseName.replace(/-/g, " ");
+ it(`Test ${normalizedTestName}`, async function () {
+ const fixtureDir = path.join(fixturesDir, caseName);
+ const actualFilePath = path.join(fixtureDir, "index.html");
+ const actualContent = fs.readFileSync(actualFilePath, "utf-8");
+ const actual = parse(actualContent, {
+ debug: true
+ });
+ const expectedFilePath = path.join(fixtureDir, "output.json");
+ const expectedOutputTreeFilePath = path.join(fixtureDir, "output-tree.txt");
+ // Usage: update snapshots
+ // UPDATE_SNAPSHOT=1 npm test
+ if (!fs.existsSync(expectedFilePath) || process.env.UPDATE_SNAPSHOT) {
+ fs.writeFileSync(expectedFilePath, JSON.stringify(actual, null, 4));
+ fs.writeFileSync(expectedOutputTreeFilePath, dumpTreeView(actual));
+ this.skip(); // skip when updating snapshots
+ return;
+ }
+ assertUndefinedType(actual);
+ const expectedOutputTree = fs.readFileSync(expectedOutputTreeFilePath, "utf-8");
+ assert.strictEqual(dumpTreeView(actual), expectedOutputTree);
+ // compare input and output
+ const expectedContent = JSON.parse(fs.readFileSync(expectedFilePath, "utf-8"));
+ assert.deepStrictEqual(
+ actual,
+ expectedContent
+ );
+ });
+ });
+});
+
+describe("html-to-ast-test", function () {
+ it("should return AST that passed isTxtAST", function () {
+ const fixture = fs.readFileSync(path.join(__dirname, "fixtures/wikipedia.html"), "utf-8");
+ const AST = parse(fixture);
+ test(AST);
+ });
+});
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..416615d
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,32 @@
+{
+ "compilerOptions": {
+ /* Basic Options */
+ "module": "ESNext",
+ "moduleResolution": "NodeNext",
+ "esModuleInterop": true,
+ "newLine": "LF",
+ "outDir": "./module/",
+ "target": "ES2018",
+ "sourceMap": true,
+ "declaration": true,
+ "declarationMap": true,
+ "jsx": "preserve",
+ "lib": [
+ "esnext",
+ "dom"
+ ],
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true
+ },
+ "include": [
+ "src/**/*"
+ ],
+ "exclude": [
+ ".git",
+ "node_modules"
+ ]
+}
diff --git a/yarn.lock b/yarn.lock
index c48cbaf..6bb836e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -14,1054 +14,176 @@
dependencies:
"@azu/format-text" "^1.0.1"
-"@babel/cli@^7.0.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.16.0.tgz#a729b7a48eb80b49f48a339529fc4129fd7bcef3"
- integrity sha512-WLrM42vKX/4atIoQB+eb0ovUof53UUvecb4qGjU2PDDWRiZr50ZpiV8NpcLo7iSxeGYrRG0Mqembsa+UrTAV6Q==
- dependencies:
- commander "^4.0.1"
- convert-source-map "^1.1.0"
- fs-readdir-recursive "^1.1.0"
- glob "^7.0.0"
- make-dir "^2.1.0"
- slash "^2.0.0"
- source-map "^0.5.0"
- optionalDependencies:
- "@nicolo-ribaudo/chokidar-2" "2.1.8-no-fsevents.3"
- chokidar "^3.4.0"
-
-"@babel/code-frame@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.0.tgz#0dfc80309beec8411e65e706461c408b0bb9b431"
- integrity sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==
- dependencies:
- "@babel/highlight" "^7.16.0"
-
-"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.16.0", "@babel/compat-data@^7.16.4":
- version "7.16.4"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.16.4.tgz#081d6bbc336ec5c2435c6346b2ae1fb98b5ac68e"
- integrity sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==
-
-"@babel/core@^7.0.0":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.16.5.tgz#924aa9e1ae56e1e55f7184c8bf073a50d8677f5c"
- integrity sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==
- dependencies:
- "@babel/code-frame" "^7.16.0"
- "@babel/generator" "^7.16.5"
- "@babel/helper-compilation-targets" "^7.16.3"
- "@babel/helper-module-transforms" "^7.16.5"
- "@babel/helpers" "^7.16.5"
- "@babel/parser" "^7.16.5"
- "@babel/template" "^7.16.0"
- "@babel/traverse" "^7.16.5"
- "@babel/types" "^7.16.0"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.1.2"
- semver "^6.3.0"
- source-map "^0.5.0"
-
-"@babel/generator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.5.tgz#26e1192eb8f78e0a3acaf3eede3c6fc96d22bedf"
- integrity sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==
- dependencies:
- "@babel/types" "^7.16.0"
- jsesc "^2.5.1"
- source-map "^0.5.0"
-
-"@babel/helper-annotate-as-pure@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz#9a1f0ebcda53d9a2d00108c4ceace6a5d5f1f08d"
- integrity sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz#a8429d064dce8207194b8bf05a70a9ea828746af"
- integrity sha512-3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA==
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.16.0"
- "@babel/types" "^7.16.0"
-
-"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.16.3":
- version "7.16.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz#5b480cd13f68363df6ec4dc8ac8e2da11363cbf0"
- integrity sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==
- dependencies:
- "@babel/compat-data" "^7.16.0"
- "@babel/helper-validator-option" "^7.14.5"
- browserslist "^4.17.5"
- semver "^6.3.0"
-
-"@babel/helper-create-class-features-plugin@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz#5d1bcd096792c1ebec6249eebc6358eec55d0cad"
- integrity sha512-NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.0"
- "@babel/helper-environment-visitor" "^7.16.5"
- "@babel/helper-function-name" "^7.16.0"
- "@babel/helper-member-expression-to-functions" "^7.16.5"
- "@babel/helper-optimise-call-expression" "^7.16.0"
- "@babel/helper-replace-supers" "^7.16.5"
- "@babel/helper-split-export-declaration" "^7.16.0"
-
-"@babel/helper-create-regexp-features-plugin@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz#06b2348ce37fccc4f5e18dcd8d75053f2a7c44ff"
- integrity sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.0"
- regexpu-core "^4.7.1"
-
-"@babel/helper-define-polyfill-provider@^0.3.0":
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz#c5b10cf4b324ff840140bb07e05b8564af2ae971"
- integrity sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==
- dependencies:
- "@babel/helper-compilation-targets" "^7.13.0"
- "@babel/helper-module-imports" "^7.12.13"
- "@babel/helper-plugin-utils" "^7.13.0"
- "@babel/traverse" "^7.13.0"
- debug "^4.1.1"
- lodash.debounce "^4.0.8"
- resolve "^1.14.2"
- semver "^6.1.2"
-
-"@babel/helper-environment-visitor@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz#f6a7f38b3c6d8b07c88faea083c46c09ef5451b8"
- integrity sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-explode-assignable-expression@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz#753017337a15f46f9c09f674cff10cee9b9d7778"
- integrity sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-function-name@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz#b7dd0797d00bbfee4f07e9c4ea5b0e30c8bb1481"
- integrity sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==
- dependencies:
- "@babel/helper-get-function-arity" "^7.16.0"
- "@babel/template" "^7.16.0"
- "@babel/types" "^7.16.0"
-
-"@babel/helper-get-function-arity@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz#0088c7486b29a9cb5d948b1a1de46db66e089cfa"
- integrity sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-hoist-variables@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz#4c9023c2f1def7e28ff46fc1dbcd36a39beaa81a"
- integrity sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-member-expression-to-functions@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz#1bc9f7e87354e86f8879c67b316cb03d3dc2caab"
- integrity sha512-7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz#90538e60b672ecf1b448f5f4f5433d37e79a3ec3"
- integrity sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-module-transforms@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz#530ebf6ea87b500f60840578515adda2af470a29"
- integrity sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==
- dependencies:
- "@babel/helper-environment-visitor" "^7.16.5"
- "@babel/helper-module-imports" "^7.16.0"
- "@babel/helper-simple-access" "^7.16.0"
- "@babel/helper-split-export-declaration" "^7.16.0"
- "@babel/helper-validator-identifier" "^7.15.7"
- "@babel/template" "^7.16.0"
- "@babel/traverse" "^7.16.5"
- "@babel/types" "^7.16.0"
-
-"@babel/helper-optimise-call-expression@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz#cecdb145d70c54096b1564f8e9f10cd7d193b338"
- integrity sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz#afe37a45f39fce44a3d50a7958129ea5b1a5c074"
- integrity sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ==
-
-"@babel/helper-remap-async-to-generator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz#e706646dc4018942acb4b29f7e185bc246d65ac3"
- integrity sha512-X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.0"
- "@babel/helper-wrap-function" "^7.16.5"
- "@babel/types" "^7.16.0"
-
-"@babel/helper-replace-supers@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz#96d3988bd0ab0a2d22c88c6198c3d3234ca25326"
- integrity sha512-ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ==
- dependencies:
- "@babel/helper-environment-visitor" "^7.16.5"
- "@babel/helper-member-expression-to-functions" "^7.16.5"
- "@babel/helper-optimise-call-expression" "^7.16.0"
- "@babel/traverse" "^7.16.5"
- "@babel/types" "^7.16.0"
-
-"@babel/helper-simple-access@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz#21d6a27620e383e37534cf6c10bba019a6f90517"
- integrity sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.16.0.tgz#0ee3388070147c3ae051e487eca3ebb0e2e8bb09"
- integrity sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-split-export-declaration@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz#29672f43663e936df370aaeb22beddb3baec7438"
- integrity sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==
- dependencies:
- "@babel/types" "^7.16.0"
-
-"@babel/helper-validator-identifier@^7.15.7":
- version "7.15.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
- integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==
-
-"@babel/helper-validator-option@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
- integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==
-
-"@babel/helper-wrap-function@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz#0158fca6f6d0889c3fee8a6ed6e5e07b9b54e41f"
- integrity sha512-2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA==
- dependencies:
- "@babel/helper-function-name" "^7.16.0"
- "@babel/template" "^7.16.0"
- "@babel/traverse" "^7.16.5"
- "@babel/types" "^7.16.0"
-
-"@babel/helpers@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.16.5.tgz#29a052d4b827846dd76ece16f565b9634c554ebd"
- integrity sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==
- dependencies:
- "@babel/template" "^7.16.0"
- "@babel/traverse" "^7.16.5"
- "@babel/types" "^7.16.0"
-
-"@babel/highlight@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.16.0.tgz#6ceb32b2ca4b8f5f361fb7fd821e3fddf4a1725a"
- integrity sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==
- dependencies:
- "@babel/helper-validator-identifier" "^7.15.7"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.16.0", "@babel/parser@^7.16.5":
- version "7.16.6"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.6.tgz#8f194828193e8fa79166f34a4b4e52f3e769a314"
- integrity sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==
-
-"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.16.2":
- version "7.16.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz#2977fca9b212db153c195674e57cfab807733183"
- integrity sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz#358972eaab006f5eb0826183b0c93cbcaf13e1e2"
- integrity sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
- "@babel/plugin-proposal-optional-chaining" "^7.16.0"
-
-"@babel/plugin-proposal-async-generator-functions@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz#fd3bd7e0d98404a3d4cbca15a72d533f8c9a2f67"
- integrity sha512-C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-remap-async-to-generator" "^7.16.5"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
-
-"@babel/plugin-proposal-class-properties@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz#3269f44b89122110f6339806e05d43d84106468a"
- integrity sha512-pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-proposal-class-static-block@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz#df58ab015a7d3b0963aafc8f20792dcd834952a9"
- integrity sha512-EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-proposal-dynamic-import@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz#2e0d19d5702db4dcb9bc846200ca02f2e9d60e9e"
- integrity sha512-P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
-"@babel/plugin-proposal-export-namespace-from@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz#3b4dd28378d1da2fea33e97b9f25d1c2f5bf1ac9"
- integrity sha512-i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
-"@babel/plugin-proposal-json-strings@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz#1e726930fca139caab6b084d232a9270d9d16f9c"
- integrity sha512-QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz#df1f2e4b5a0ec07abf061d2c18e53abc237d3ef5"
- integrity sha512-xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz#652555bfeeeee2d2104058c6225dc6f75e2d0f07"
- integrity sha512-YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-
-"@babel/plugin-proposal-numeric-separator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz#edcb6379b6cf4570be64c45965d8da7a2debf039"
- integrity sha512-DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-object-rest-spread@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz#f30f80dacf7bc1404bf67f99c8d9c01665e830ad"
- integrity sha512-UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw==
- dependencies:
- "@babel/compat-data" "^7.16.4"
- "@babel/helper-compilation-targets" "^7.16.3"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.16.5"
-
-"@babel/plugin-proposal-optional-catch-binding@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz#1a5405765cf589a11a33a1fd75b2baef7d48b74e"
- integrity sha512-ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
-
-"@babel/plugin-proposal-optional-chaining@^7.16.0", "@babel/plugin-proposal-optional-chaining@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz#a5fa61056194d5059366c0009cb9a9e66ed75c1f"
- integrity sha512-kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
-
-"@babel/plugin-proposal-private-methods@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz#2086f7d78c1b0c712d49b5c3fbc2d1ca21a7ee12"
- integrity sha512-+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-proposal-private-property-in-object@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz#a42d4b56005db3d405b12841309dbca647e7a21b"
- integrity sha512-+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.0"
- "@babel/helper-create-class-features-plugin" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-
-"@babel/plugin-proposal-unicode-property-regex@^7.16.5", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz#35fe753afa7c572f322bd068ff3377bde0f37080"
- integrity sha512-s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-syntax-async-generators@^7.8.4":
- version "7.8.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
- integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-class-properties@^7.12.13":
- version "7.12.13"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10"
- integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.12.13"
-
-"@babel/plugin-syntax-class-static-block@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406"
- integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-dynamic-import@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
- integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-export-namespace-from@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
- integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-json-strings@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
- integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
- integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
- integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-numeric-separator@^7.10.4":
- version "7.10.4"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
- integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-object-rest-spread@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
- integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
- integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.8.3":
- version "7.8.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
- integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-private-property-in-object@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad"
- integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-syntax-top-level-await@^7.14.5":
- version "7.14.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c"
- integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.14.5"
-
-"@babel/plugin-transform-arrow-functions@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz#04c18944dd55397b521d9d7511e791acea7acf2d"
- integrity sha512-8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-async-to-generator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz#89c9b501e65bb14c4579a6ce9563f859de9b34e4"
- integrity sha512-TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w==
- dependencies:
- "@babel/helper-module-imports" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-remap-async-to-generator" "^7.16.5"
-
-"@babel/plugin-transform-block-scoped-functions@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz#af087494e1c387574260b7ee9b58cdb5a4e9b0b0"
- integrity sha512-BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-block-scoping@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz#b91f254fe53e210eabe4dd0c40f71c0ed253c5e7"
- integrity sha512-JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-classes@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz#6acf2ec7adb50fb2f3194dcd2909dbd056dcf216"
- integrity sha512-DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA==
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.16.0"
- "@babel/helper-environment-visitor" "^7.16.5"
- "@babel/helper-function-name" "^7.16.0"
- "@babel/helper-optimise-call-expression" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-replace-supers" "^7.16.5"
- "@babel/helper-split-export-declaration" "^7.16.0"
- globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz#2af91ebf0cceccfcc701281ada7cfba40a9b322a"
- integrity sha512-n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-destructuring@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz#89ebc87499ac4a81b897af53bb5d3eed261bd568"
- integrity sha512-GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg==
+"@cspotcode/source-map-support@^0.8.0":
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1"
+ integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
+ "@jridgewell/trace-mapping" "0.3.9"
-"@babel/plugin-transform-dotall-regex@^7.16.5", "@babel/plugin-transform-dotall-regex@^7.4.4":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz#b40739c00b6686820653536d6d143e311de67936"
- integrity sha512-iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-duplicate-keys@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz#2450f2742325412b746d7d005227f5e8973b512a"
- integrity sha512-81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-exponentiation-operator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz#36e261fa1ab643cfaf30eeab38e00ed1a76081e2"
- integrity sha512-12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA==
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-for-of@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz#9b544059c6ca11d565457c0ff1f08e13ce225261"
- integrity sha512-+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-function-name@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz#6896ebb6a5538a75d6a4086a277752f655a7bd15"
- integrity sha512-Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ==
- dependencies:
- "@babel/helper-function-name" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-literals@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz#af392b90e3edb2bd6dc316844cbfd6b9e009d320"
- integrity sha512-B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-member-expression-literals@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz#4bd6ecdc11932361631097b779ca5c7570146dd5"
- integrity sha512-d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-modules-amd@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz#92c0a3e83f642cb7e75fada9ab497c12c2616527"
- integrity sha512-oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ==
- dependencies:
- "@babel/helper-module-transforms" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-commonjs@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz#4ee03b089536f076b2773196529d27c32b9d7bde"
- integrity sha512-ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ==
- dependencies:
- "@babel/helper-module-transforms" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-simple-access" "^7.16.0"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-systemjs@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz#07078ba2e3cc94fbdd06836e355c246e98ad006b"
- integrity sha512-53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA==
- dependencies:
- "@babel/helper-hoist-variables" "^7.16.0"
- "@babel/helper-module-transforms" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-validator-identifier" "^7.15.7"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-umd@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz#caa9c53d636fb4e3c99fd35a4c9ba5e5cd7e002e"
- integrity sha512-qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw==
- dependencies:
- "@babel/helper-module-transforms" "^7.16.5"
- "@babel/helper-plugin-utils" "^7.16.5"
+"@jridgewell/resolve-uri@^3.0.3":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
+ integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-"@babel/plugin-transform-named-capturing-groups-regex@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz#4afd8cdee377ce3568f4e8a9ee67539b69886a3c"
- integrity sha512-/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.0"
+"@jridgewell/sourcemap-codec@^1.4.10":
+ version "1.4.14"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
+ integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-"@babel/plugin-transform-new-target@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz#759ea9d6fbbc20796056a5d89d13977626384416"
- integrity sha512-ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg==
+"@jridgewell/trace-mapping@0.3.9":
+ version "0.3.9"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9"
+ integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
+ "@jridgewell/resolve-uri" "^3.0.3"
+ "@jridgewell/sourcemap-codec" "^1.4.10"
-"@babel/plugin-transform-object-super@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz#8ccd9a1bcd3e7732ff8aa1702d067d8cd70ce380"
- integrity sha512-tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-replace-supers" "^7.16.5"
-
-"@babel/plugin-transform-parameters@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz#4fc74b18a89638bd90aeec44a11793ecbe031dde"
- integrity sha512-B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-property-literals@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz#58f1465a7202a2bb2e6b003905212dd7a79abe3f"
- integrity sha512-+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-regenerator@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz#704cc6d8dd3dd4758267621ab7b36375238cef13"
- integrity sha512-2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg==
- dependencies:
- regenerator-transform "^0.14.2"
-
-"@babel/plugin-transform-reserved-words@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz#db95e98799675e193dc2b47d3e72a7c0651d0c30"
- integrity sha512-aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-shorthand-properties@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz#ccb60b1a23b799f5b9a14d97c5bc81025ffd96d7"
- integrity sha512-ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-spread@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz#912b06cff482c233025d3e69cf56d3e8fa166c29"
- integrity sha512-5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.16.0"
-
-"@babel/plugin-transform-sticky-regex@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz#593579bb2b5a8adfbe02cb43823275d9098f75f9"
- integrity sha512-usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-template-literals@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz#343651385fd9923f5aa2275ca352c5d9183e1773"
- integrity sha512-gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-typeof-symbol@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz#a1d1bf2c71573fe30965d0e4cd6a3291202e20ed"
- integrity sha512-ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-unicode-escapes@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz#80507c225af49b4f4ee647e2a0ce53d2eeff9e85"
- integrity sha512-shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/plugin-transform-unicode-regex@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz#ac84d6a1def947d71ffb832426aa53b83d7ed49e"
- integrity sha512-GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw==
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.16.0"
- "@babel/helper-plugin-utils" "^7.16.5"
-
-"@babel/preset-env@^7.0.0":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.16.5.tgz#2e94d922f4a890979af04ffeb6a6b4e44ba90847"
- integrity sha512-MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ==
- dependencies:
- "@babel/compat-data" "^7.16.4"
- "@babel/helper-compilation-targets" "^7.16.3"
- "@babel/helper-plugin-utils" "^7.16.5"
- "@babel/helper-validator-option" "^7.14.5"
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.16.2"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.16.0"
- "@babel/plugin-proposal-async-generator-functions" "^7.16.5"
- "@babel/plugin-proposal-class-properties" "^7.16.5"
- "@babel/plugin-proposal-class-static-block" "^7.16.5"
- "@babel/plugin-proposal-dynamic-import" "^7.16.5"
- "@babel/plugin-proposal-export-namespace-from" "^7.16.5"
- "@babel/plugin-proposal-json-strings" "^7.16.5"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.16.5"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.16.5"
- "@babel/plugin-proposal-numeric-separator" "^7.16.5"
- "@babel/plugin-proposal-object-rest-spread" "^7.16.5"
- "@babel/plugin-proposal-optional-catch-binding" "^7.16.5"
- "@babel/plugin-proposal-optional-chaining" "^7.16.5"
- "@babel/plugin-proposal-private-methods" "^7.16.5"
- "@babel/plugin-proposal-private-property-in-object" "^7.16.5"
- "@babel/plugin-proposal-unicode-property-regex" "^7.16.5"
- "@babel/plugin-syntax-async-generators" "^7.8.4"
- "@babel/plugin-syntax-class-properties" "^7.12.13"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
- "@babel/plugin-syntax-optional-chaining" "^7.8.3"
- "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
- "@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.16.5"
- "@babel/plugin-transform-async-to-generator" "^7.16.5"
- "@babel/plugin-transform-block-scoped-functions" "^7.16.5"
- "@babel/plugin-transform-block-scoping" "^7.16.5"
- "@babel/plugin-transform-classes" "^7.16.5"
- "@babel/plugin-transform-computed-properties" "^7.16.5"
- "@babel/plugin-transform-destructuring" "^7.16.5"
- "@babel/plugin-transform-dotall-regex" "^7.16.5"
- "@babel/plugin-transform-duplicate-keys" "^7.16.5"
- "@babel/plugin-transform-exponentiation-operator" "^7.16.5"
- "@babel/plugin-transform-for-of" "^7.16.5"
- "@babel/plugin-transform-function-name" "^7.16.5"
- "@babel/plugin-transform-literals" "^7.16.5"
- "@babel/plugin-transform-member-expression-literals" "^7.16.5"
- "@babel/plugin-transform-modules-amd" "^7.16.5"
- "@babel/plugin-transform-modules-commonjs" "^7.16.5"
- "@babel/plugin-transform-modules-systemjs" "^7.16.5"
- "@babel/plugin-transform-modules-umd" "^7.16.5"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.16.5"
- "@babel/plugin-transform-new-target" "^7.16.5"
- "@babel/plugin-transform-object-super" "^7.16.5"
- "@babel/plugin-transform-parameters" "^7.16.5"
- "@babel/plugin-transform-property-literals" "^7.16.5"
- "@babel/plugin-transform-regenerator" "^7.16.5"
- "@babel/plugin-transform-reserved-words" "^7.16.5"
- "@babel/plugin-transform-shorthand-properties" "^7.16.5"
- "@babel/plugin-transform-spread" "^7.16.5"
- "@babel/plugin-transform-sticky-regex" "^7.16.5"
- "@babel/plugin-transform-template-literals" "^7.16.5"
- "@babel/plugin-transform-typeof-symbol" "^7.16.5"
- "@babel/plugin-transform-unicode-escapes" "^7.16.5"
- "@babel/plugin-transform-unicode-regex" "^7.16.5"
- "@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.16.0"
- babel-plugin-polyfill-corejs2 "^0.3.0"
- babel-plugin-polyfill-corejs3 "^0.4.0"
- babel-plugin-polyfill-regenerator "^0.3.0"
- core-js-compat "^3.19.1"
- semver "^6.3.0"
-
-"@babel/preset-modules@^0.1.5":
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9"
- integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
- "@babel/types" "^7.4.4"
- esutils "^2.0.2"
-
-"@babel/register@^7.0.0":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.16.5.tgz#657d28b7ca68190de8f6159245b5ed1cfa181640"
- integrity sha512-NpluD+cToBiZiDsG3y9rtIcqDyivsahpaM9csfyfiq1qQWduSmihUZ+ruIqqSDGjZKZMJfgAElo9x2YWlOQuRw==
- dependencies:
- clone-deep "^4.0.1"
- find-cache-dir "^2.0.0"
- make-dir "^2.1.0"
- pirates "^4.0.0"
- source-map-support "^0.5.16"
-
-"@babel/runtime@^7.8.4":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.16.5.tgz#7f3e34bf8bdbbadf03fbb7b1ea0d929569c9487a"
- integrity sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA==
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@babel/template@^7.16.0":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.16.0.tgz#d16a35ebf4cd74e202083356fab21dd89363ddd6"
- integrity sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==
- dependencies:
- "@babel/code-frame" "^7.16.0"
- "@babel/parser" "^7.16.0"
- "@babel/types" "^7.16.0"
-
-"@babel/traverse@^7.13.0", "@babel/traverse@^7.16.5":
- version "7.16.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.16.5.tgz#d7d400a8229c714a59b87624fc67b0f1fbd4b2b3"
- integrity sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==
- dependencies:
- "@babel/code-frame" "^7.16.0"
- "@babel/generator" "^7.16.5"
- "@babel/helper-environment-visitor" "^7.16.5"
- "@babel/helper-function-name" "^7.16.0"
- "@babel/helper-hoist-variables" "^7.16.0"
- "@babel/helper-split-export-declaration" "^7.16.0"
- "@babel/parser" "^7.16.5"
- "@babel/types" "^7.16.0"
- debug "^4.1.0"
- globals "^11.1.0"
-
-"@babel/types@^7.16.0", "@babel/types@^7.4.4":
- version "7.16.0"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba"
- integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==
- dependencies:
- "@babel/helper-validator-identifier" "^7.15.7"
- to-fast-properties "^2.0.0"
-
-"@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3":
- version "2.1.8-no-fsevents.3"
- resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz#323d72dd25103d0c4fbdce89dadf574a787b1f9b"
- integrity sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==
-
-"@textlint/ast-node-types@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-12.1.0.tgz#e8b2a39bb2dd36d83c4342a5b5ed0d84217cf54a"
- integrity sha512-UlxqemrV/EnGTCl26OU7JhtFJpH7NZdgXvnsuII604orcIkvywUA1GGlg51grfbfqi+ar4zRsOb6fVbcbMZnKA==
+"@textlint/ast-node-types@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-13.0.5.tgz#fcea5a5ad29478e84b3de6286fea0b32278b685b"
+ integrity sha512-BiH5QOKDs52WR2Q26POwm5RaNs7hnU6TCrkoo4uECZQjjDQoaQWsp242KDQnvbiGnkj/a2xl+XPMuFCyn0XqjA==
"@textlint/ast-node-types@^4.4.3":
version "4.4.3"
resolved "https://registry.yarnpkg.com/@textlint/ast-node-types/-/ast-node-types-4.4.3.tgz#fdba16e8126cddc50f45433ce7f6c55e7829566c"
integrity sha512-qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A==
-"@textlint/ast-tester@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-12.1.0.tgz#2dc620a75f256e8a5529f860869770ac61edc5c8"
- integrity sha512-s3VHRDaULFYhxjJ3vP9LUIt2aHLnUB4XFUSRhUVnW4/GDOb1EXCGWFd+wtYy6jTtBg/5TR5ApdC6sNu/SLcb5w==
+"@textlint/ast-tester@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/ast-tester/-/ast-tester-13.0.5.tgz#10460ddcff950e9d83e147f40db802da163e8e27"
+ integrity sha512-aUxXqRJCr+WPzNwjHw6oBLi+R1mH/PUODXyScOMUR2E57zpb1teTNX0h0aI+S5YgdoyfXW42LMS94T3hqhxJsQ==
+ dependencies:
+ "@textlint/ast-node-types" "^13.0.5"
+ debug "^4.3.4"
+
+"@textlint/ast-traverse@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-13.0.5.tgz#b04ed88ca15c51be1fe2120aade9c190a04504c9"
+ integrity sha512-ouAAaP1o1JbHGjmII8TH89/ldFPnL7SRVvoGIQPPSfPVdyAGXHPGSsjoMYzcRxAdv4i5f/jJY/V7uHMMptWJFA==
dependencies:
- "@textlint/ast-node-types" "^12.1.0"
- debug "^4.3.3"
+ "@textlint/ast-node-types" "^13.0.5"
-"@textlint/ast-traverse@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/ast-traverse/-/ast-traverse-12.1.0.tgz#d7c95534b05c3eacae7e47014dd1e8df821d6c8d"
- integrity sha512-NJCCMS7lxZ6Ed15zsosbe/5i/SyynqQsxOYxhsMHuyU/adx27WzNWLoFbgTdz6Wmn3Ok1PSFf0442MpoS6SP7g==
+"@textlint/config-loader@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/config-loader/-/config-loader-13.0.5.tgz#f052d3dd1814dd6777ed3d3d1cfce1a236e31cbf"
+ integrity sha512-rxPYYE8iyZXief5kHwzIZJ+x0DTPvRj/pG8YJpX9A5zO4BTDLwHmk4NZSAF+xEpR11ebN63ystfcqMEEaOMj4w==
dependencies:
- "@textlint/ast-node-types" "^12.1.0"
+ "@textlint/kernel" "^13.0.5"
+ "@textlint/module-interop" "^13.0.5"
+ "@textlint/types" "^13.0.5"
+ "@textlint/utils" "^13.0.5"
+ debug "^4.3.4"
+ rc-config-loader "^4.1.2"
+ try-resolve "^1.0.1"
-"@textlint/feature-flag@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-12.1.0.tgz#b31e91357d774a71f794acc1de5436763fbbcaea"
- integrity sha512-pQfA2bUXimBQjxT5hVmGGuFf1Cwwx26kbrcwkGHsgxgXlXkg1zboby5UCMOjWda/TbJjynzqDO0JaU24Ms9fZg==
+"@textlint/feature-flag@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/feature-flag/-/feature-flag-13.0.5.tgz#0464c7a10b727594e2bebd4bc0c792a8ee430dc6"
+ integrity sha512-CxdCp9nrPWhzXPFC24Rj1nMIFTsynQGwE8KY1cm3U6iB04iRzRTQBkCTizMhAd1eJ0A7391QNgvCK3/sSAHZ0g==
-"@textlint/fixer-formatter@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/fixer-formatter/-/fixer-formatter-12.1.0.tgz#24f74b956d3433e41bf5c14052587ca8ce4aaec2"
- integrity sha512-ELG9ehkid+J0sRd0mVRbZ+2UOnLqowycrYsaHxDE+xf2s33OcogZa9i3Uact7y2oSCadX00oNLEhsQcwkAqvpw==
+"@textlint/fixer-formatter@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/fixer-formatter/-/fixer-formatter-13.0.5.tgz#49ef8c72edd6aadf7edda0b28e84988d2db5d0a3"
+ integrity sha512-bsEsxwMmqm7YtdTtlIbHLf09ZzSG3qgIVASUJxFlICQGs45jqS+QXDIGWuiOQgDnBu3VF8HCYN+gcbW9+pnfxA==
dependencies:
- "@textlint/module-interop" "^12.1.0"
- "@textlint/types" "^12.1.0"
- chalk "^1.1.3"
- debug "^4.3.3"
+ "@textlint/module-interop" "^13.0.5"
+ "@textlint/types" "^13.0.5"
+ chalk "^4.1.2"
+ debug "^4.3.4"
diff "^4.0.2"
is-file "^1.0.0"
- string-width "^1.0.2"
+ string-width "^4.2.3"
strip-ansi "^6.0.1"
text-table "^0.2.0"
try-resolve "^1.0.1"
-"@textlint/kernel@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-12.1.0.tgz#e0677a3e120aceddc75a485a3fdca44cdc42133d"
- integrity sha512-6crFn0Ng4Y8PnUvD8HdGMZUlxURx3YgbDv/Grp+7kg8qLlNAkvbyJ1cE8ZYJTF+PfJ1dK1FZmmlZsvrieI4KBQ==
- dependencies:
- "@textlint/ast-node-types" "^12.1.0"
- "@textlint/ast-tester" "^12.1.0"
- "@textlint/ast-traverse" "^12.1.0"
- "@textlint/feature-flag" "^12.1.0"
- "@textlint/source-code-fixer" "^12.1.0"
- "@textlint/types" "^12.1.0"
- "@textlint/utils" "^12.1.0"
- debug "^4.3.3"
- deep-equal "^1.1.1"
- structured-source "^3.0.2"
-
-"@textlint/linter-formatter@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/linter-formatter/-/linter-formatter-12.1.0.tgz#cc3982eab8321124a900770e6db4d0158b6be323"
- integrity sha512-OoDvn7wD+pAV+W2loCKgxO9V11rYo14GVKkp8UktsqzeOzxxRY5iZUOALMOOde19fOklb2mEvs8AJ4lDaRDJVQ==
+"@textlint/kernel@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/kernel/-/kernel-13.0.5.tgz#a39a14eafbd76b596a83bada26da4ced6b6a8c26"
+ integrity sha512-gUL8La3RH/69tK5a0g7aDJZgNJt710u6Xhz2YXDI0rher31+Bm0AXdJEQUscWoCRkPuZFiofjfhosPUyPePdyA==
+ dependencies:
+ "@textlint/ast-node-types" "^13.0.5"
+ "@textlint/ast-tester" "^13.0.5"
+ "@textlint/ast-traverse" "^13.0.5"
+ "@textlint/feature-flag" "^13.0.5"
+ "@textlint/source-code-fixer" "^13.0.5"
+ "@textlint/types" "^13.0.5"
+ "@textlint/utils" "^13.0.5"
+ debug "^4.3.4"
+ fast-equals "^4.0.3"
+ structured-source "^4.0.0"
+
+"@textlint/linter-formatter@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/linter-formatter/-/linter-formatter-13.0.5.tgz#70d213b54f34dc14f3375844d19669b3164b05dd"
+ integrity sha512-D/WEm1e8vSLD5VgHkVx3UBF/KV+FtKJDdjh650mV0qFWhPPNuPy0BMPpg7PPxS13XYDcByAlD/yGqbQ0rURg6Q==
dependencies:
"@azu/format-text" "^1.0.1"
"@azu/style-format" "^1.0.0"
- "@textlint/module-interop" "^12.1.0"
- "@textlint/types" "^12.1.0"
- chalk "^1.1.3"
- debug "^4.3.3"
+ "@textlint/module-interop" "^13.0.5"
+ "@textlint/types" "^13.0.5"
+ chalk "^4.1.2"
+ debug "^4.3.4"
is-file "^1.0.0"
js-yaml "^3.14.1"
+ lodash "^4.17.21"
optionator "^0.9.1"
pluralize "^2.0.0"
- string-width "^1.0.2"
+ string-width "^4.2.3"
strip-ansi "^6.0.1"
- table "^6.7.3"
+ table "^6.8.1"
text-table "^0.2.0"
try-resolve "^1.0.1"
- xml-escape "^1.1.0"
-"@textlint/markdown-to-ast@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-12.1.0.tgz#ccee1613e8bd1c472660c1ebfade5f44a40a6696"
- integrity sha512-22FRiXRxTrNVe1gbE18V8TxAtrWb9rKUb1+2mt5vXdgByZ+rHUJuEc4UonAiye/8+0eTrJ4brjPNXgYsJGeMKg==
+"@textlint/markdown-to-ast@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/markdown-to-ast/-/markdown-to-ast-13.0.5.tgz#f440a4ef3ad25ceb69a90219b304bec16c5439c9"
+ integrity sha512-2nDdv1PEkKa9GHJQHpDvrTC+QRtw5p0M4oVHvFP/va4r/fdfupKC78XtZ9aQCgJxjZcMWAlvvUsBz/70vEthqw==
dependencies:
- "@textlint/ast-node-types" "^12.1.0"
- debug "^4.3.3"
+ "@textlint/ast-node-types" "^13.0.5"
+ 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"
+ traverse "^0.6.7"
unified "^9.2.2"
-"@textlint/module-interop@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/module-interop/-/module-interop-12.1.0.tgz#fb8dc6ae7cded574ce04ed0e7854645c6486eff0"
- integrity sha512-J1VhFZ7lK1V3Ue7DCvZlGIFEuaongBCkir1XFL+f1yfhfQlgfM5TCp3OBBB6NhKPff8T6sPA9niBzMYr+NyKyA==
+"@textlint/module-interop@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/module-interop/-/module-interop-13.0.5.tgz#e4c79d77263ab98b0c157e69729079cd0d5ca324"
+ integrity sha512-aOpAH/wBXTUyE+HJ7lUSntDup0TMlLmYtQc5v1VY2qG4veQFeEE9i2XgU12kmxk0KUikde4YYkfieom78r5VBA==
-"@textlint/source-code-fixer@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-12.1.0.tgz#2b296cbf8c23148978c156165e420747ee604c83"
- integrity sha512-3HEWCu8XlRpxK0UmUxGEzc4u0deaO0GtisqaEsCVHzlQFq6tzE+5VTdZ4ffon64UN8UV57EAC2ralEV/VgxkBQ==
+"@textlint/source-code-fixer@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/source-code-fixer/-/source-code-fixer-13.0.5.tgz#bb2852680b8f8bdcc55452fa7c70e906dd879027"
+ integrity sha512-ahJ74NNbo3d/2L2ICkyyYNGjZufnO2yjzmtm2cRhqy9+0x65DwpeX+XKc87itRvWbke+xIMfVZA965t6JsuVag==
dependencies:
- "@textlint/types" "^12.1.0"
- debug "^4.3.3"
+ "@textlint/types" "^13.0.5"
+ debug "^4.3.4"
-"@textlint/text-to-ast@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-12.1.0.tgz#ba19315a981fc319cf74ad5d7ec4a995d7c9452e"
- integrity sha512-s45+d0E9+gMKz+LC9+sJamU7SVrPyGYsXVLDRM5oxqjdb0MeIfjIFj7xl52MUpAHnywbPSgakB6HHiryiEAmqQ==
+"@textlint/text-to-ast@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/text-to-ast/-/text-to-ast-13.0.5.tgz#0d9e8258c4055583176702dce17c0b4f261673d8"
+ integrity sha512-85uZPQFOXehegxoWh05azuqvFfK6j2I0VTlnQSViVJ0Xo8L7I7FcidMpkC99VbBq2D2LQXwctom7tm8E3SJGcg==
dependencies:
- "@textlint/ast-node-types" "^12.1.0"
+ "@textlint/ast-node-types" "^13.0.5"
-"@textlint/textlint-plugin-markdown@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.1.0.tgz#d5b2cf4c655190e5aecd9dba7db38db7850bf5c9"
- integrity sha512-bS67fq4Ea2JdKO4mJM4sGSATVI1bw9++IfOIsx2rc01NfZlTxwz4kM8lrhvNFHGY4URaN1kCULSgupeI/u/Seg==
+"@textlint/textlint-plugin-markdown@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-13.0.5.tgz#6430eb61c2357389ef8495c23f5379e6c167f787"
+ integrity sha512-Mx7RBAFkNLUhoRuV1xfOYHgbcUHEugZ3KSwqka0ZJ9eg9aMFR7BHcz0kkSuwlzrsppH00l9EBIOmXCklrUZCcA==
dependencies:
- "@textlint/markdown-to-ast" "^12.1.0"
+ "@textlint/markdown-to-ast" "^13.0.5"
-"@textlint/textlint-plugin-text@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.1.0.tgz#9ded3054b4f48d4b90d119a6c930f911ebf57caa"
- integrity sha512-ItqpVEYLDYQkEk0ixeD4wElqkgkDErAGGDN/QK4cmIvtBeVd/GSIQFS1pwC1/Abmd4dTK3j/9z/dov1gVFZB1Q==
+"@textlint/textlint-plugin-text@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/textlint-plugin-text/-/textlint-plugin-text-13.0.5.tgz#c26a995cff1bc40d1e03d13b52dbdddf93237e9d"
+ integrity sha512-Za5nDj8IxGgIFGWU3/ovz3IvME7J88TZUzJokDGAPNp2XS5mtWLUJa8WUoY5jLWqp9qjNquF9X6PpGTQv3bBgg==
dependencies:
- "@textlint/text-to-ast" "^12.1.0"
+ "@textlint/text-to-ast" "^13.0.5"
"@textlint/types@^1.5.5":
version "1.5.5"
@@ -1070,17 +192,52 @@
dependencies:
"@textlint/ast-node-types" "^4.4.3"
-"@textlint/types@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/types/-/types-12.1.0.tgz#69e3be4b00b10000e37cca4947c68df554e5275b"
- integrity sha512-O8RQUiGnBvBrwV/fLHp2vU+y3w223G+qKUzvW/k2eFwAdbtmCfordoKESXAIGuqAUZjgiM2+Mt3We1pY+tMR3g==
+"@textlint/types@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/types/-/types-13.0.5.tgz#c26037c7a38f600427d4f7f3e72f0b526e3c491c"
+ integrity sha512-H4BzC1wPiN2kJc6WUre6ggIeVKy6vKMAWQYkR0VmMtk1Lu5kysvwRifNuqecVIHpJIBwtVhkhrBlH1fz50SlXg==
dependencies:
- "@textlint/ast-node-types" "^12.1.0"
+ "@textlint/ast-node-types" "^13.0.5"
+
+"@textlint/utils@^13.0.5":
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-13.0.5.tgz#4fd4f019988556f3bfc4c96c06c2f46d7a6dceac"
+ integrity sha512-yh786ZRDrYdOepKG911zPkeemihcBryMIxEltGz10UT2dUqPyHoGoWUc3XbnYFBL4t0DAHVCXZHxAmaKmHqB5Q==
-"@textlint/utils@^12.1.0":
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/@textlint/utils/-/utils-12.1.0.tgz#42b034582a5eb8576f9457e16691d9556617bd40"
- integrity sha512-WE0bxQ/q+PgSslqEBuDi4Z8ZskBA0ZEehmKqcsd0hpDWU4VRU/R9o/WVXwia0APbQxgXPYWaHf1Rb7FAKUcVcg==
+"@tsconfig/node10@^1.0.7":
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.9.tgz#df4907fc07a886922637b15e02d4cebc4c0021b2"
+ integrity sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==
+
+"@tsconfig/node12@^1.0.7":
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d"
+ integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==
+
+"@tsconfig/node14@^1.0.0":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1"
+ integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==
+
+"@tsconfig/node16@^1.0.2":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e"
+ integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==
+
+"@types/glob@^8.0.1":
+ version "8.0.1"
+ resolved "https://registry.yarnpkg.com/@types/glob/-/glob-8.0.1.tgz#6e3041640148b7764adf21ce5c7138ad454725b0"
+ integrity sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw==
+ dependencies:
+ "@types/minimatch" "^5.1.2"
+ "@types/node" "*"
+
+"@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.10"
@@ -1089,15 +246,40 @@
dependencies:
"@types/unist" "*"
+"@types/minimatch@^5.1.2":
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca"
+ integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==
+
+"@types/mocha@^10.0.1":
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.1.tgz#2f4f65bb08bc368ac39c96da7b2f09140b26851b"
+ integrity sha512-/fvYntiO1GeICvqbQ3doGDIP97vWmvFt83GKguJ6prmQM2iXZfFcq6YE8KteFyRtX2/h5Hf91BYvPodJKFYv5Q==
+
+"@types/node@*", "@types/node@^18.11.18":
+ version "18.11.18"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f"
+ integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==
+
+"@types/traverse@^0.6.32":
+ version "0.6.32"
+ resolved "https://registry.yarnpkg.com/@types/traverse/-/traverse-0.6.32.tgz#f9fdfa40cd4898deaa975a14511aec731de8235e"
+ integrity sha512-RBz2uRZVCXuMg93WD//aTS5B120QlT4lR/gL+935QtGsKHLS6sCtZBaKfWjIfk7ZXv/r8mtGbwjVIee6/3XTow==
+
"@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==
-"@ungap/promise-all-settled@1.1.2":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44"
- integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==
+acorn-walk@^8.1.1:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
+ integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
+
+acorn@^8.4.1:
+ version "8.8.2"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
+ integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
ajv@^8.0.1:
version "8.8.2"
@@ -1114,28 +296,11 @@ ansi-colors@4.1.1:
resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
ansi-regex@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-ansi-styles@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
- integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
-
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
@@ -1151,6 +316,11 @@ anymatch@~3.1.2:
normalize-path "^3.0.0"
picomatch "^2.0.4"
+arg@^4.1.0:
+ version "4.1.3"
+ resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
+ integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
+
argparse@^1.0.7:
version "1.0.10"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
@@ -1168,49 +338,16 @@ astral-regex@^2.0.0:
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
-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"
-
-babel-plugin-dynamic-import-node@^2.3.3:
- version "2.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
- integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
- dependencies:
- object.assign "^4.1.0"
-
-babel-plugin-polyfill-corejs2@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz#407082d0d355ba565af24126fb6cb8e9115251fd"
- integrity sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==
- dependencies:
- "@babel/compat-data" "^7.13.11"
- "@babel/helper-define-polyfill-provider" "^0.3.0"
- semver "^6.1.1"
-
-babel-plugin-polyfill-corejs3@^0.4.0:
- version "0.4.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz#0b571f4cf3d67f911512f5c04842a7b8e8263087"
- integrity sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.0"
- core-js-compat "^3.18.0"
-
-babel-plugin-polyfill-regenerator@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz#9ebbcd7186e1a33e21c5e20cae4e7983949533be"
- integrity sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==
- dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.0"
-
bail@^1.0.0:
version "1.0.5"
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.2"
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
@@ -1226,6 +363,11 @@ boundary@^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==
+
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -1234,6 +376,13 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
+brace-expansion@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+ integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
+ dependencies:
+ balanced-match "^1.0.0"
+
braces@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
@@ -1246,71 +395,17 @@ browser-stdout@1.3.1:
resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
-browserslist@^4.17.5, browserslist@^4.19.1:
- version "4.19.1"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.19.1.tgz#4ac0435b35ab655896c31d53018b6dd5e9e4c9a3"
- integrity sha512-u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A==
- dependencies:
- caniuse-lite "^1.0.30001286"
- electron-to-chromium "^1.4.17"
- escalade "^3.1.1"
- node-releases "^2.0.1"
- picocolors "^1.0.0"
-
-buffer-from@^1.0.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
- integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
-
-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"
-
-camelcase@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
- integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=
-
camelcase@^6.0.0:
version "6.2.1"
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.1.tgz#250fd350cfd555d0d2160b1d51510eaf8326e86e"
integrity sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==
-caniuse-lite@^1.0.30001286:
- version "1.0.30001292"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz#4a55f61c06abc9595965cfd77897dc7bc1cdc456"
- integrity sha512-jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw==
-
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==
-chalk@^1.0.0, chalk@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
- integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
- dependencies:
- ansi-styles "^2.2.1"
- escape-string-regexp "^1.0.2"
- has-ansi "^2.0.0"
- strip-ansi "^3.0.0"
- supports-color "^2.0.0"
-
-chalk@^2.0.0:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^4.1.0:
+chalk@^4.1.0, chalk@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
@@ -1338,10 +433,10 @@ charenc@0.0.2:
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=
-chokidar@3.5.2, chokidar@^3.4.0:
- version "3.5.2"
- resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
- integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
+chokidar@3.5.3:
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
+ integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
dependencies:
anymatch "~3.1.2"
braces "~3.0.2"
@@ -1362,32 +457,6 @@ cliui@^7.0.2:
strip-ansi "^6.0.0"
wrap-ansi "^7.0.0"
-clone-deep@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
- integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
- dependencies:
- is-plain-object "^2.0.4"
- kind-of "^6.0.2"
- shallow-clone "^3.0.0"
-
-co@3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/co/-/co-3.1.0.tgz#4ea54ea5a08938153185e15210c68d9092bc1b78"
- integrity sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g=
-
-code-point-at@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
- integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
@@ -1395,59 +464,39 @@ color-convert@^2.0.1:
dependencies:
color-name "~1.1.4"
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
color-name@~1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
-commander@^4.0.1:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
- integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
-
-commondir@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
- integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
+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==
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-convert-source-map@^1.1.0, convert-source-map@^1.7.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
- integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
- dependencies:
- safe-buffer "~5.1.1"
-
-core-js-compat@^3.18.0, core-js-compat@^3.19.1:
- version "3.20.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.20.0.tgz#fd704640c5a213816b6d10ec0192756111e2c9d1"
- integrity sha512-relrah5h+sslXssTTOkvqcC/6RURifB0W5yhYBdBkaPYa5/2KBMiog3XiD+s3TwEHWxInWVv4Jx2/Lw0vng+IQ==
- dependencies:
- browserslist "^4.19.1"
- semver "7.0.0"
+create-require@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
+ integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
crypt@0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=
-debug@4.3.2:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b"
- integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==
+debug@4.3.4, 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"
-debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.3:
+debug@^4.0.0:
version "4.3.3"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
@@ -1459,98 +508,26 @@ decamelize@^4.0.0:
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
-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-is@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
-define-properties@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
- dependencies:
- object-keys "^1.0.12"
-
diff@5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
-diff@^4.0.2:
+diff@^4.0.1, diff@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
-dom-serializer@0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
- integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
- dependencies:
- domelementtype "^2.0.1"
- entities "^2.0.0"
-
-domelementtype@1, domelementtype@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
- integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
-
-domelementtype@^2.0.1:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"
- integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==
-
-domhandler@^2.3.0:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
- integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==
- dependencies:
- domelementtype "1"
-
-domutils@^1.5.1:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
- integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
- dependencies:
- dom-serializer "0"
- domelementtype "1"
-
-electron-to-chromium@^1.4.17:
- version "1.4.26"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.26.tgz#d71b9da220543cf10614a576c3d5ebbe43d96efb"
- integrity sha512-cA1YwlRzO6TGp7yd3+KAqh9Tt6Z4CuuKqsAJP6uF/H5MQryjAGDhMhnY5cEXo8MaRCczpzSBhMPdqRIodkbZYw==
-
emoji-regex@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
-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"
- integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==
-
-entities@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
- integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
-
error-ex@^1.2.0, error-ex@^1.3.1:
version "1.3.2"
resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
@@ -1563,31 +540,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@4.0.0, 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==
-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=
-
esprima@^4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esutils@^2.0.2:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
- integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
-
extend@^3.0.0:
version "3.0.2"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
@@ -1598,6 +560,11 @@ fast-deep-equal@^3.1.1:
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+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-levenshtein@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
@@ -1624,15 +591,6 @@ fill-range@^7.0.1:
dependencies:
to-regex-range "^5.0.1"
-find-cache-dir@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
find-up@5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
@@ -1648,13 +606,6 @@ find-up@^2.0.0:
dependencies:
locate-path "^2.0.0"
-find-up@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
- integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
- dependencies:
- locate-path "^3.0.0"
-
flat-cache@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
@@ -1679,11 +630,6 @@ format@^0.2.0:
resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
integrity sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=
-fs-readdir-recursive@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
- integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==
-
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
@@ -1699,25 +645,11 @@ function-bind@^1.1.1:
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
-gensync@^1.0.0-beta.2:
- version "1.0.0-beta.2"
- resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0"
- integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==
-
get-caller-file@^2.0.5:
version "2.0.5"
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@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
@@ -1730,10 +662,10 @@ glob-parent@~5.1.2:
dependencies:
is-glob "^4.0.1"
-glob@7.1.7:
- version "7.1.7"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
- integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
+glob@7.2.0, glob@^7.1.3:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
+ integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
@@ -1742,62 +674,39 @@ glob@7.1.7:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.0.0, glob@^7.1.1, glob@^7.1.3, glob@^7.2.0:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
- integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
+glob@^7.2.3:
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+ integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
inherits "2"
- minimatch "^3.0.4"
+ minimatch "^3.1.1"
once "^1.3.0"
path-is-absolute "^1.0.0"
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+glob@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e"
+ integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^5.0.1"
+ once "^1.3.0"
graceful-fs@^4.1.2:
version "4.2.8"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a"
integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==
-growl@1.10.5:
- version "1.10.5"
- resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e"
- integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==
-
-has-ansi@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
- integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
- dependencies:
- ansi-regex "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
has-flag@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
-has-symbols@^1.0.1, has-symbols@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
- integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
-
-has-tostringtag@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
- integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
- dependencies:
- has-symbols "^1.0.2"
-
has@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
@@ -1805,20 +714,36 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"
-hast@0.0.2:
- version "0.0.2"
- resolved "https://registry.yarnpkg.com/hast/-/hast-0.0.2.tgz#87950b0180a71df4df9216c304d426db4ea30482"
- integrity sha1-h5ULAYCnHfTfkhbDBNQm206jBII=
+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:
- 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"
+ "@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@^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"
+
+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.0:
version "1.2.0"
@@ -1830,18 +755,6 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9"
integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
-htmlparser2@^3.8.3:
- version "3.10.1"
- resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
- integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==
- dependencies:
- domelementtype "^1.3.1"
- domhandler "^2.3.0"
- domutils "^1.5.1"
- entities "^1.1.1"
- inherits "^2.0.1"
- readable-stream "^3.1.1"
-
inflight@^1.0.4:
version "1.0.6"
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -1850,7 +763,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3:
+inherits@2:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -1868,14 +781,6 @@ is-alphanumerical@^1.0.0:
is-alphabetical "^1.0.0"
is-decimal "^1.0.0"
-is-arguments@^1.0.4:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
- integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^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"
@@ -1905,13 +810,6 @@ is-core-module@^2.2.0:
dependencies:
has "^1.0.3"
-is-date-object@^1.0.1:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
- integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
- dependencies:
- has-tostringtag "^1.0.0"
-
is-decimal@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
@@ -1927,13 +825,6 @@ is-file@^1.0.0:
resolved "https://registry.yarnpkg.com/is-file/-/is-file-1.0.0.tgz#28a44cfbd9d3db193045f22b65fce8edf9620596"
integrity sha1-KKRM+9nT2xkwRfIrZfzo7fliBZY=
-is-fullwidth-code-point@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
- integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs=
- dependencies:
- number-is-nan "^1.0.0"
-
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
@@ -1961,20 +852,10 @@ is-plain-obj@^2.0.0, is-plain-obj@^2.1.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-object@^2.0.4:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
- integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
- dependencies:
- isobject "^3.0.1"
-
-is-regex@^1.0.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
- integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
- dependencies:
- call-bind "^1.0.2"
- has-tostringtag "^1.0.0"
+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-unicode-supported@^0.1.0:
version "0.1.0"
@@ -1986,29 +867,14 @@ is-utf8@^0.2.0:
resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
-
-js-yaml@4.1.0:
+js-yaml@4.1.0, js-yaml@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
dependencies:
argparse "^2.0.1"
-js-yaml@^3.12.0, js-yaml@^3.14.1:
+js-yaml@^3.14.1:
version "3.14.1"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
@@ -2016,16 +882,6 @@ js-yaml@^3.12.0, js-yaml@^3.14.1:
argparse "^1.0.7"
esprima "^4.0.0"
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
-
-jsesc@~0.5.0:
- version "0.5.0"
- resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
- integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-
json-parse-better-errors@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@@ -2036,17 +892,10 @@ json-schema-traverse@^1.0.0:
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
-json5@^2.1.1, json5@^2.1.2:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
- integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==
- dependencies:
- minimist "^1.2.5"
-
-kind-of@^6.0.2:
- version "6.0.3"
- resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
- integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+json5@^2.2.2:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
+ integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
levn@^0.4.1:
version "0.4.1"
@@ -2085,14 +934,6 @@ locate-path@^2.0.0:
p-locate "^2.0.0"
path-exists "^3.0.0"
-locate-path@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
- integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
- dependencies:
- p-locate "^3.0.0"
- path-exists "^3.0.0"
-
locate-path@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
@@ -2100,16 +941,16 @@ locate-path@^6.0.0:
dependencies:
p-locate "^5.0.0"
-lodash.debounce@^4.0.8:
- version "4.0.8"
- resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
- integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168=
-
lodash.truncate@^4.4.2:
version "4.4.2"
resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193"
integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=
+lodash@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+
log-symbols@4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
@@ -2118,30 +959,15 @@ log-symbols@4.1.0:
chalk "^4.1.0"
is-unicode-supported "^0.1.0"
-log-symbols@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
- integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=
- dependencies:
- chalk "^1.0.0"
-
longest-streak@^2.0.0:
version "2.0.4"
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==
-lower-case@^1.1.1:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"
- integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw=
-
-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"
- integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
+make-error@^1.1.1:
+ version "1.3.6"
+ resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2"
+ integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==
markdown-table@^2.0.0:
version "2.0.0"
@@ -2194,7 +1020,7 @@ mdast-util-frontmatter@^0.2.0:
dependencies:
micromark-extension-frontmatter "^0.2.0"
-mdast-util-gfm-autolink-literal@^0.1.0:
+mdast-util-gfm-autolink-literal@^0.1.0, 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==
@@ -2320,51 +1146,81 @@ micromark@^2.11.3, micromark@~2.11.0, micromark@~2.11.3:
debug "^4.0.0"
parse-entities "^2.0.0"
-minimatch@3.0.4, minimatch@^3.0.4:
+minimatch@5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b"
+ integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimatch@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
dependencies:
brace-expansion "^1.1.7"
+minimatch@^3.1.1:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+ integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimatch@^5.0.1:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96"
+ integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==
+ dependencies:
+ brace-expansion "^2.0.1"
+
minimist@^1.2.5:
version "1.2.5"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
-mkdirp@^0.5.0, mkdirp@^0.5.1:
+minimist@^1.2.6:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
+ integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
+
+mkdirp@^0.5.1:
version "0.5.5"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==
dependencies:
minimist "^1.2.5"
-mocha@^9.1.3:
- version "9.1.3"
- resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.1.3.tgz#8a623be6b323810493d8c8f6f7667440fa469fdb"
- integrity sha512-Xcpl9FqXOAYqI3j79pEtHBBnQgVXIhpULjGQa7DVb0Po+VzmSIK9kanAiWLHoRR/dbZ2qpdPshuXr8l1VaHCzw==
+mkdirp@^0.5.6:
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
+ integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
+ dependencies:
+ minimist "^1.2.6"
+
+mocha@^10.2.0:
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
+ integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
dependencies:
- "@ungap/promise-all-settled" "1.1.2"
ansi-colors "4.1.1"
browser-stdout "1.3.1"
- chokidar "3.5.2"
- debug "4.3.2"
+ chokidar "3.5.3"
+ debug "4.3.4"
diff "5.0.0"
escape-string-regexp "4.0.0"
find-up "5.0.0"
- glob "7.1.7"
- growl "1.10.5"
+ glob "7.2.0"
he "1.2.0"
js-yaml "4.1.0"
log-symbols "4.1.0"
- minimatch "3.0.4"
+ minimatch "5.0.1"
ms "2.1.3"
- nanoid "3.1.25"
+ nanoid "3.3.3"
serialize-javascript "6.0.0"
strip-json-comments "3.1.1"
supports-color "8.1.1"
- which "2.0.2"
- workerpool "6.1.5"
+ workerpool "6.2.1"
yargs "16.2.0"
yargs-parser "20.2.4"
yargs-unparser "2.0.0"
@@ -2379,15 +1235,10 @@ ms@2.1.3:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
-nanoid@3.1.25:
- version "3.1.25"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.25.tgz#09ca32747c0e543f0e1814b7d3793477f9c8e152"
- integrity sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==
-
-node-releases@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.1.tgz#3d1d395f204f1f2f29a54358b9fb678765ad2fc5"
- integrity sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==
+nanoid@3.3.3:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
+ integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
normalize-package-data@^2.3.2:
version "2.5.0"
@@ -2404,34 +1255,6 @@ normalize-path@^3.0.0, normalize-path@~3.0.0:
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
-number-is-nan@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
- integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
-
-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.12, object-keys@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
-
-object.assign@^4.1.0:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
- integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
- dependencies:
- call-bind "^1.0.0"
- define-properties "^1.1.3"
- has-symbols "^1.0.1"
- object-keys "^1.1.1"
-
once@^1.3.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
@@ -2458,13 +1281,6 @@ p-limit@^1.1.0:
dependencies:
p-try "^1.0.0"
-p-limit@^2.0.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
- integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
- dependencies:
- p-try "^2.0.0"
-
p-limit@^3.0.2:
version "3.1.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
@@ -2479,13 +1295,6 @@ p-locate@^2.0.0:
dependencies:
p-limit "^1.1.0"
-p-locate@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
- integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
- dependencies:
- p-limit "^2.0.0"
-
p-locate@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
@@ -2498,18 +1307,6 @@ p-try@^1.0.0:
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
-
-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"
-
parse-entities@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
@@ -2537,6 +1334,11 @@ parse-json@^4.0.0:
error-ex "^1.3.1"
json-parse-better-errors "^1.0.1"
+parse5@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
+ integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
+
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
@@ -2578,11 +1380,6 @@ path-type@^3.0.0:
dependencies:
pify "^3.0.0"
-picocolors@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
- integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
-
picomatch@^2.0.4, picomatch@^2.2.1:
version "2.3.0"
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
@@ -2598,11 +1395,6 @@ pify@^3.0.0:
resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-pify@^4.0.1:
- version "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"
@@ -2615,18 +1407,6 @@ pinkie@^2.0.0:
resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
-pirates@^4.0.0:
- version "4.0.4"
- resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.4.tgz#07df81e61028e402735cdd49db701e4885b4e6e6"
- integrity sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==
-
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==
- dependencies:
- find-up "^3.0.0"
-
pluralize@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-2.0.0.tgz#72b726aa6fac1edeee42256c7d8dc256b335677f"
@@ -2637,10 +1417,10 @@ prelude-ls@^1.2.1:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-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@^6.0.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.2.0.tgz#b74f522c31c097b5149e3c3cb8d7f3defd986a1d"
+ integrity sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==
punycode@^2.1.0:
version "2.1.1"
@@ -2654,14 +1434,14 @@ randombytes@^2.1.0:
dependencies:
safe-buffer "^5.1.0"
-rc-config-loader@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/rc-config-loader/-/rc-config-loader-3.0.0.tgz#1484ed55d6fb8b21057699c8426370f7529c52a7"
- integrity sha512-bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ==
+rc-config-loader@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/rc-config-loader/-/rc-config-loader-4.1.2.tgz#e57fc874bde9b1e48d8a8564f2f824f91eafd920"
+ integrity sha512-qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg==
dependencies:
- debug "^4.1.1"
- js-yaml "^3.12.0"
- json5 "^2.1.1"
+ debug "^4.3.4"
+ js-yaml "^4.1.0"
+ json5 "^2.2.2"
require-from-string "^2.0.2"
read-pkg-up@^3.0.0:
@@ -2690,15 +1470,6 @@ read-pkg@^3.0.0:
normalize-package-data "^2.3.2"
path-type "^3.0.0"
-readable-stream@^3.1.1:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
- dependencies:
- inherits "^2.0.3"
- string_decoder "^1.1.1"
- util-deprecate "^1.0.1"
-
readdirp@~3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
@@ -2706,61 +1477,15 @@ readdirp@~3.6.0:
dependencies:
picomatch "^2.2.1"
-regenerate-unicode-properties@^9.0.0:
- version "9.0.0"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz#54d09c7115e1f53dc2314a974b32c1c344efe326"
- integrity sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==
+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:
- regenerate "^1.4.2"
-
-regenerate@^1.4.2:
- version "1.4.2"
- resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
- integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-
-regenerator-runtime@^0.13.4:
- version "0.13.9"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
- integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
-
-regenerator-transform@^0.14.2:
- version "0.14.5"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
- integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
- dependencies:
- "@babel/runtime" "^7.8.4"
-
-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"
-
-regexpu-core@^4.7.1:
- version "4.8.0"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.8.0.tgz#e5605ba361b67b1718478501327502f4479a98f0"
- integrity sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==
- dependencies:
- regenerate "^1.4.2"
- regenerate-unicode-properties "^9.0.0"
- regjsgen "^0.5.2"
- regjsparser "^0.7.0"
- unicode-match-property-ecmascript "^2.0.0"
- unicode-match-property-value-ecmascript "^2.0.0"
-
-regjsgen@^0.5.2:
- version "0.5.2"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
- integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
-
-regjsparser@^0.7.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.7.0.tgz#a6b667b54c885e18b52554cb4960ef71187e9968"
- integrity sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==
- dependencies:
- jsesc "~0.5.0"
+ "@types/hast" "^2.0.0"
+ hast-util-from-parse5 "^7.0.0"
+ parse5 "^6.0.0"
+ unified "^10.0.0"
remark-footnotes@^3.0.0:
version "3.0.0"
@@ -2808,7 +1533,7 @@ require-from-string@^2.0.2:
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
-resolve@^1.10.0, resolve@^1.14.2:
+resolve@^1.10.0:
version "1.20.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975"
integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==
@@ -2823,38 +1548,16 @@ rimraf@2.6.3:
dependencies:
glob "^7.1.3"
-safe-buffer@^5.1.0, safe-buffer@~5.2.0:
+safe-buffer@^5.1.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
-safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
-
-"semver@2 || 3 || 4 || 5", semver@^5.6.0:
+"semver@2 || 3 || 4 || 5":
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-semver@7.0.0:
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==
-
-semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
- version "6.3.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
- integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-
-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@6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
@@ -2862,18 +1565,6 @@ serialize-javascript@6.0.0:
dependencies:
randombytes "^2.1.0"
-shallow-clone@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
- integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
- dependencies:
- kind-of "^6.0.2"
-
-slash@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
- integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
-
slice-ansi@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b"
@@ -2883,23 +1574,10 @@ slice-ansi@^4.0.0:
astral-regex "^2.0.0"
is-fullwidth-code-point "^3.0.0"
-source-map-support@^0.5.16:
- version "0.5.21"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
- integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map@^0.5.0:
- version "0.5.7"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-source-map@^0.6.0:
- version "0.6.1"
- resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+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.1"
@@ -2932,15 +1610,6 @@ sprintf-js@~1.0.2:
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-string-width@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
- integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=
- dependencies:
- code-point-at "^1.0.0"
- is-fullwidth-code-point "^1.0.0"
- strip-ansi "^3.0.0"
-
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
@@ -2950,20 +1619,6 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
-string_decoder@^1.1.1:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
-strip-ansi@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
@@ -2995,6 +1650,13 @@ structured-source@^3.0.2:
dependencies:
boundary "^1.0.1"
+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 "^2.0.0"
+
supports-color@8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
@@ -3002,18 +1664,6 @@ supports-color@8.1.1:
dependencies:
has-flag "^4.0.0"
-supports-color@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
- integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
supports-color@^7.1.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
@@ -3021,10 +1671,10 @@ supports-color@^7.1.0:
dependencies:
has-flag "^4.0.0"
-table@^6.7.3:
- version "6.7.5"
- resolved "https://registry.yarnpkg.com/table/-/table-6.7.5.tgz#f04478c351ef3d8c7904f0e8be90a1b62417d238"
- integrity sha512-LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw==
+table@^6.8.1:
+ version "6.8.1"
+ resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf"
+ integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==
dependencies:
ajv "^8.0.1"
lodash.truncate "^4.4.2"
@@ -3054,45 +1704,39 @@ textlint-rule-no-todo@^2.0.0:
dependencies:
textlint-rule-helper "^2.0.0"
-textlint@^12.1.0:
- version "12.1.0"
- resolved "https://registry.yarnpkg.com/textlint/-/textlint-12.1.0.tgz#5f838d3e2fb202ea3add60305fd53c85ca963480"
- integrity sha512-VZ0iVepE0jUchMfIW0uKGdEdv3l0ajOFvUBcpB1xGOLAz3gVwpdWvlagVlFXuwjc2N+9mcjTM0PCIXNwIs2vQA==
- dependencies:
- "@textlint/ast-node-types" "^12.1.0"
- "@textlint/ast-traverse" "^12.1.0"
- "@textlint/feature-flag" "^12.1.0"
- "@textlint/fixer-formatter" "^12.1.0"
- "@textlint/kernel" "^12.1.0"
- "@textlint/linter-formatter" "^12.1.0"
- "@textlint/module-interop" "^12.1.0"
- "@textlint/textlint-plugin-markdown" "^12.1.0"
- "@textlint/textlint-plugin-text" "^12.1.0"
- "@textlint/types" "^12.1.0"
- "@textlint/utils" "^12.1.0"
- debug "^4.3.3"
- deep-equal "^1.1.1"
+textlint@^13.0.5:
+ version "13.0.5"
+ resolved "https://registry.yarnpkg.com/textlint/-/textlint-13.0.5.tgz#cabad8ca8e94bf5cf922eaecce26b8f86b92b003"
+ integrity sha512-NcsL98yLprpSlY4c+sWf02u+MIbUMypWVY+xf0GCR8qm3eyCpa9SHBdy0qcRY3x1VTQU3EN2rvlwwgQTwfGKcA==
+ dependencies:
+ "@textlint/ast-node-types" "^13.0.5"
+ "@textlint/ast-traverse" "^13.0.5"
+ "@textlint/config-loader" "^13.0.5"
+ "@textlint/feature-flag" "^13.0.5"
+ "@textlint/fixer-formatter" "^13.0.5"
+ "@textlint/kernel" "^13.0.5"
+ "@textlint/linter-formatter" "^13.0.5"
+ "@textlint/module-interop" "^13.0.5"
+ "@textlint/textlint-plugin-markdown" "^13.0.5"
+ "@textlint/textlint-plugin-text" "^13.0.5"
+ "@textlint/types" "^13.0.5"
+ "@textlint/utils" "^13.0.5"
+ debug "^4.3.4"
file-entry-cache "^5.0.1"
get-stdin "^5.0.1"
- glob "^7.2.0"
+ glob "^7.2.3"
is-file "^1.0.0"
- log-symbols "^1.0.2"
md5 "^2.3.0"
- mkdirp "^0.5.0"
+ mkdirp "^0.5.6"
optionator "^0.9.1"
path-to-glob-pattern "^1.0.2"
- rc-config-loader "^3.0.0"
+ rc-config-loader "^4.1.2"
read-pkg "^1.1.0"
read-pkg-up "^3.0.0"
- structured-source "^3.0.2"
+ structured-source "^4.0.0"
try-resolve "^1.0.1"
unique-concat "^0.2.2"
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
@@ -3100,26 +1744,45 @@ to-regex-range@^5.0.1:
dependencies:
is-number "^7.0.0"
-traverse@^0.6.6:
- version "0.6.6"
- resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.6.tgz#cbdf560fd7b9af632502fed40f918c157ea97137"
- integrity sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=
-
-trim@0.0.1:
- version "0.0.1"
- resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd"
- integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0=
+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==
trough@^1.0.0:
version "1.0.5"
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.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/try-resolve/-/try-resolve-1.0.1.tgz#cfde6fabd72d63e5797cfaab873abbe8e700e912"
integrity sha1-z95vq9ctY+V5fPqrhzq76OcA6RI=
+ts-node@^10.9.1:
+ version "10.9.1"
+ resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
+ integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
+ dependencies:
+ "@cspotcode/source-map-support" "^0.8.0"
+ "@tsconfig/node10" "^1.0.7"
+ "@tsconfig/node12" "^1.0.7"
+ "@tsconfig/node14" "^1.0.0"
+ "@tsconfig/node16" "^1.0.2"
+ acorn "^8.4.1"
+ acorn-walk "^8.1.1"
+ arg "^4.1.0"
+ create-require "^1.1.0"
+ diff "^4.0.1"
+ make-error "^1.1.1"
+ v8-compile-cache-lib "^3.0.1"
+ yn "3.1.1"
+
type-check@^0.4.0, type-check@~0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
@@ -3127,48 +1790,23 @@ type-check@^0.4.0, type-check@~0.4.0:
dependencies:
prelude-ls "^1.2.1"
-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==
- dependencies:
- inherits "^2.0.0"
- xtend "^4.0.0"
+typescript@^4.9.4:
+ version "4.9.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
+ integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
-unicode-canonical-property-names-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc"
- integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==
-
-unicode-match-property-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3"
- integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==
+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:
- unicode-canonical-property-names-ecmascript "^2.0.0"
- unicode-property-aliases-ecmascript "^2.0.0"
-
-unicode-match-property-value-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
- integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
-
-unicode-property-aliases-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz#0a36cb9a585c4f6abd51ad1deddb285c165297c8"
- integrity sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==
-
-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"
+ "@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@^9.2.2:
version "9.2.2"
@@ -3204,6 +1842,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"
@@ -3233,10 +1878,10 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"
-util-deprecate@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
+v8-compile-cache-lib@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf"
+ integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==
validate-npm-package-license@^3.0.1:
version "3.0.4"
@@ -3246,6 +1891,14 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
+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@^2.0.0:
version "2.0.4"
resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-2.0.4.tgz#5b43b88171d409eae58477d13f23dd41d52c371a"
@@ -3254,10 +1907,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@^4.0.0:
version "4.2.1"
@@ -3269,29 +1925,30 @@ vfile@^4.0.0:
unist-util-stringify-position "^2.0.0"
vfile-message "^2.0.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=
+vfile@^5.0.0:
+ version "5.3.6"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.6.tgz#61b2e70690cc835a5d0d0fd135beae74e5a39546"
+ integrity sha512-ADBsmerdGBs2WYckrLBEmuETSPyTD4TuLxTrw0DvjirxW1ra4ZwkbzG8ndsv3Q57smvHxo677MHaQrY9yxH8cA==
dependencies:
- wrap-fn "^0.1.0"
+ "@types/unist" "^2.0.0"
+ is-buffer "^2.0.0"
+ unist-util-stringify-position "^3.0.0"
+ vfile-message "^3.0.0"
-which@2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
- integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
- dependencies:
- isexe "^2.0.0"
+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==
word-wrap@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
-workerpool@6.1.5:
- version "6.1.5"
- resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.5.tgz#0f7cf076b6215fd7e1da903ff6f22ddd1886b581"
- integrity sha512-XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw==
+workerpool@6.2.1:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
+ integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
wrap-ansi@^7.0.0:
version "7.0.0"
@@ -3302,13 +1959,6 @@ wrap-ansi@^7.0.0:
string-width "^4.1.0"
strip-ansi "^6.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"
@@ -3321,16 +1971,6 @@ write@1.0.3:
dependencies:
mkdirp "^0.5.1"
-xml-escape@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/xml-escape/-/xml-escape-1.1.0.tgz#3904c143fa8eb3a0030ec646d2902a2f1b706c44"
- integrity sha1-OQTBQ/qOs6ADDsZG0pAqLxtwbEQ=
-
-xtend@^4.0.0:
- version "4.0.2"
- resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
-
y18n@^5.0.5:
version "5.0.8"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
@@ -3369,6 +2009,11 @@ yargs@16.2.0:
y18n "^5.0.5"
yargs-parser "^20.2.2"
+yn@3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50"
+ integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==
+
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"