sveld 0.26.0 → 0.26.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/lib/ComponentParser.js +1 -1
- package/package.json +1 -1
package/lib/ComponentParser.js
CHANGED
|
@@ -128,7 +128,7 @@ const TYPEDEF_END_REGEX = /(\}|\};)$/;
|
|
|
128
128
|
* // "my context" -> ["my", "context"]
|
|
129
129
|
* ```
|
|
130
130
|
*/
|
|
131
|
-
const CONTEXT_KEY_SPLIT_REGEX = /[-_
|
|
131
|
+
const CONTEXT_KEY_SPLIT_REGEX = /[-_.\s]+/;
|
|
132
132
|
/**
|
|
133
133
|
* Regular expression for matching component comment markers.
|
|
134
134
|
*
|