comment-variables 0.10.0 → 0.10.1
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/comments.config.js +2 -0
- package/package.json +2 -2
package/comments.config.js
CHANGED
|
@@ -16,6 +16,8 @@ const data = {
|
|
|
16
16
|
// "#levelThree": "Hashtag", // errors, key as "#" character
|
|
17
17
|
// ".levelThree": "Punctuation", // errors, key is invalid
|
|
18
18
|
// unrecognized: `Unrecognized value.`, // errors, is not a string literal
|
|
19
|
+
// emptyString: "", // errors, string is empty
|
|
20
|
+
// "": "emptyKey", // errors, key is empty caught by the regex
|
|
19
21
|
},
|
|
20
22
|
},
|
|
21
23
|
// for deving
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "comment-variables",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "A CLI tool for configuring, managing and maintaining JavaScript comments as JavaScript variables.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"jscomments": "./library/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"type": "module",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@eslint/markdown": "^6.5.0",
|
|
29
|
-
"comment-variables-resolve-config": "^1.6.
|
|
29
|
+
"comment-variables-resolve-config": "^1.6.1",
|
|
30
30
|
"eslint": "^9.29.0",
|
|
31
31
|
"zod": "^3.25.67"
|
|
32
32
|
},
|