@markuplint/parser-utils 4.0.0-dev.0 → 4.0.0-dev.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/const.d.ts CHANGED
@@ -11,6 +11,7 @@ export declare const reSplitterTag: RegExp;
11
11
  * - U+0009 CHARACTER TABULATION (tab) => `\t`
12
12
  * - U+000A LINE FEED (LF) => `\n`
13
13
  * - U+000C FORM FEED (FF) => `\f`
14
+ * - U+000D CARRIAGE RETURN (CR) => `\r`
14
15
  * - U+0020 SPACE => ` `
15
16
  */
16
- export declare const defaultSpaces: readonly ["\t", "\n", "\f", " "];
17
+ export declare const defaultSpaces: readonly ["\t", "\n", "\f", "\r", " "];
package/lib/const.js CHANGED
@@ -100,6 +100,7 @@ export const reSplitterTag = /<[^>]+>/g;
100
100
  * - U+0009 CHARACTER TABULATION (tab) => `\t`
101
101
  * - U+000A LINE FEED (LF) => `\n`
102
102
  * - U+000C FORM FEED (FF) => `\f`
103
+ * - U+000D CARRIAGE RETURN (CR) => `\r`
103
104
  * - U+0020 SPACE => ` `
104
105
  */
105
- export const defaultSpaces = ['\t', '\n', '\f', ' '];
106
+ export const defaultSpaces = ['\t', '\n', '\f', '\r', ' '];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/parser-utils",
3
- "version": "4.0.0-dev.0+7c596917",
3
+ "version": "4.0.0-dev.20+6b35da16",
4
4
  "description": "Utility module for markuplint parser plugin",
5
5
  "repository": "git@github.com:markuplint/markuplint.git",
6
6
  "author": "Yusuke Hirao <yusukehirao@me.com>",
@@ -24,12 +24,12 @@
24
24
  "clean": "tsc --build --clean"
25
25
  },
26
26
  "dependencies": {
27
- "@markuplint/ml-ast": "4.0.0-dev.0+7c596917",
28
- "@markuplint/types": "4.0.0-dev.0+7c596917",
27
+ "@markuplint/ml-ast": "4.0.0-dev.20+6b35da16",
28
+ "@markuplint/types": "4.0.0-dev.20+6b35da16",
29
29
  "@types/uuid": "^9.0.7",
30
30
  "espree": "^9.6.1",
31
- "type-fest": "^4.8.2",
31
+ "type-fest": "^4.8.3",
32
32
  "uuid": "^9.0.1"
33
33
  },
34
- "gitHead": "7c59691701465a0fb3a4b69187318e8033c463d4"
34
+ "gitHead": "6b35da161d94f784953d0adecc2d28502052d92a"
35
35
  }