@adobe/helix-config 2.7.0 → 2.7.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.7.1](https://github.com/adobe/helix-config/compare/v2.7.0...v2.7.1) (2024-04-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * adjust regexp for modifiers map ([#55](https://github.com/adobe/helix-config/issues/55)) ([b480fbb](https://github.com/adobe/helix-config/commit/b480fbbe25215950660353aae65820c462df7004))
7
+
1
8
  # [2.7.0](https://github.com/adobe/helix-config/compare/v2.6.0...v2.7.0) (2024-04-23)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-config",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "Helix Config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -36,7 +36,7 @@
36
36
  "modifier-map": {
37
37
  "type": "object",
38
38
  "patternProperties": {
39
- "^/[a-zA-Z0-9-/.]+[*]{0,2}$": {
39
+ "^/[a-zA-Z0-9-/.]*\\*{0,2}$": {
40
40
  "type": "array",
41
41
  "items": [
42
42
  { "$ref": "#/$defs/keyValuePair" }
@@ -99,7 +99,7 @@ export interface Folders {
99
99
  export interface ModifierMap {
100
100
  /**
101
101
  * This interface was referenced by `ModifierMap`'s JSON-Schema definition
102
- * via the `patternProperty` "^/[a-zA-Z0-9-/.]+[*]{0,2}$".
102
+ * via the `patternProperty` "^/[a-zA-Z0-9-/.]*\*{0,2}$".
103
103
  */
104
104
  [k: string]: [] | [KeyValuePair];
105
105
  }
@@ -102,7 +102,7 @@ export interface Folders {
102
102
  export interface ModifierMap {
103
103
  /**
104
104
  * This interface was referenced by `ModifierMap`'s JSON-Schema definition
105
- * via the `patternProperty` "^/[a-zA-Z0-9-/.]+[*]{0,2}$".
105
+ * via the `patternProperty` "^/[a-zA-Z0-9-/.]*\*{0,2}$".
106
106
  */
107
107
  [k: string]: [] | [KeyValuePair];
108
108
  }