vueless 0.0.578 → 0.0.579
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/package.json +1 -1
- package/utils/node/dynamicProps.js +1 -1
- package/web-types.json +1 -1
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ const VUELESS_SRC = path.join(VUELESS_DIR, VUELESS_LOCAL_DIR);
|
|
|
15
15
|
|
|
16
16
|
const PROPS_INTERFACE_REG_EXP = /export\s+interface\s+Props\s*{([^}]*)}/s;
|
|
17
17
|
const UNION_SYMBOLS_REG_EXP = /[?|:"|;]/g;
|
|
18
|
-
const WORD_IN_QUOTE_REG_EXP = /([^"]+)
|
|
18
|
+
const WORD_IN_QUOTE_REG_EXP = /"([^"]+)"/g;
|
|
19
19
|
|
|
20
20
|
async function cacheComponentTypes(filePath) {
|
|
21
21
|
const cacheDir = path.join(filePath, ".cache");
|