@marko/language-server 1.4.0 → 1.4.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.
package/dist/index.js CHANGED
@@ -1237,7 +1237,7 @@ ${autocomplete.description}`;
1237
1237
  }
1238
1238
 
1239
1239
  // src/service/marko/complete/Import.ts
1240
- var importTagReg = /(['"])<((?:[^'"\\>]+|\\.)*)>?\1/;
1240
+ var importTagReg = /(['"])<((?:[^'"\\>]|\\.)*)>?\1/;
1241
1241
  function Import({
1242
1242
  node,
1243
1243
  file: { parsed, filename, lookup }
@@ -1533,7 +1533,7 @@ var findDefinition = async (doc, params) => {
1533
1533
 
1534
1534
  // src/service/marko/document-links.ts
1535
1535
  var import_language_tools11 = require("@marko/language-tools");
1536
- var importTagReg2 = /(['"])<((?:[^'"\\>]+|\\.)*)>?\1/g;
1536
+ var importTagReg2 = /(['"])<((?:[^'"\\>]|\\.)*)>?\1/g;
1537
1537
  var findDocumentLinks = async (doc) => {
1538
1538
  return processDoc(doc, extractDocumentLinks);
1539
1539
  };