vitrify 0.18.1 → 0.18.2

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.
@@ -1824,7 +1824,7 @@ textarea {
1824
1824
  const kebabMatch = code.matchAll(/q-(\w)([\w-]*)/g);
1825
1825
  const pascalMatch = code.matchAll(/Q([A-Z][a-z0-9]+)+/g);
1826
1826
  const transitionMatch = code.matchAll(/(transition|transition-show|transition-hide|transition-prev|transition-next)="(\S*)"/g);
1827
- const colorMatch = code.matchAll(/color="(\S*)"/g);
1827
+ const colorMatch = code.matchAll(/color[=|:]"(\w*)"/g);
1828
1828
  const pascalComponentsMatch = [];
1829
1829
  const matches = [];
1830
1830
  for (const match of kebabMatch)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrify",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "license": "MIT",
5
5
  "author": "Stefan van Herwijnen",
6
6
  "description": "Vite as your Full Stack development tool",
@@ -2057,7 +2057,7 @@ textarea {
2057
2057
  const transitionMatch = code.matchAll(
2058
2058
  /(transition|transition-show|transition-hide|transition-prev|transition-next)="(\S*)"/g
2059
2059
  )
2060
- const colorMatch = code.matchAll(/color="(\S*)"/g)
2060
+ const colorMatch = code.matchAll(/color[=|:]"(\w*)"/g)
2061
2061
 
2062
2062
  const pascalComponentsMatch: string[] = []
2063
2063
  const matches: string[] = []