comment-variables 1.2.2 → 1.2.3

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.
@@ -45,7 +45,7 @@ const data = {
45
45
  // ownAliasKey: "LEVELONE#LEVELTWO#OWNALIASKEY", // errors, is its own key/alias
46
46
  // key: "key not allowed", // errors, "key", "value" and "placeholder" not allowed
47
47
  // value: "value not allowed", // errors, "key", "value" and "placeholder" not allowed
48
- // placeholder: "placeholder not allowed", // errors, "key", "value" and "placeholder" not allowed
48
+ placeholder: "placeholder now allowed", // doesn't error, "placeholder" is now allowed
49
49
  // noConcat: "no" + "concat", // errors, unrecognized value
50
50
 
51
51
  // already error via regex, but now enhanced:
@@ -20,6 +20,10 @@
20
20
  "composedVariableAlias": {
21
21
  "value": "Level three. Level three.",
22
22
  "key": "LEVELONE#LEVELTWO#COMPOSEDVARIABLEALIAS"
23
+ },
24
+ "placeholder": {
25
+ "value": "placeholder now allowed",
26
+ "key": "LEVELONE#LEVELTWO#PLACEHOLDER"
23
27
  }
24
28
  }
25
29
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comment-variables",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "A CLI tool for configuring, managing and maintaining JavaScript comments as JavaScript variables.",
5
5
  "bin": {
6
6
  "comment-variables": "./library/index.js",
@@ -30,7 +30,7 @@
30
30
  "type": "module",
31
31
  "dependencies": {
32
32
  "@eslint/markdown": "^6.5.0",
33
- "comment-variables-resolve-config": "^1.14.6",
33
+ "comment-variables-resolve-config": "^1.14.7",
34
34
  "eslint": "^9.29.0"
35
35
  },
36
36
  "devDependencies": {