@markuplint/shared 3.6.1-dev.3156 → 3.8.0
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/functions.d.ts +1 -3
- package/package.json +3 -3
package/lib/functions.d.ts
CHANGED
|
@@ -9,9 +9,7 @@ import type { Nullable } from './types';
|
|
|
9
9
|
* @param value The input value to be converted to a non-empty string array.
|
|
10
10
|
* @returns The resulting array of non-empty strings derived from the input value.
|
|
11
11
|
*/
|
|
12
|
-
export declare function toNoEmptyStringArrayFromStringOrArray(
|
|
13
|
-
value: string | readonly string[] | null | undefined,
|
|
14
|
-
): readonly string[];
|
|
12
|
+
export declare function toNoEmptyStringArrayFromStringOrArray(value: string | readonly string[] | null | undefined): readonly string[];
|
|
15
13
|
/**
|
|
16
14
|
* Converts a given value of an item or an array of items into
|
|
17
15
|
* an array of non-nullable items.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/shared",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"description": "Shared functions for Markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"clean": "tsc --build --clean"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"html-entities": "^2.
|
|
22
|
+
"html-entities": "^2.4.0"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "4ab20276db48a6acb29a923ea8666890ca853442"
|
|
25
25
|
}
|