@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.mjs CHANGED
@@ -1240,7 +1240,7 @@ ${autocomplete.description}`;
1240
1240
  }
1241
1241
 
1242
1242
  // src/service/marko/complete/Import.ts
1243
- var importTagReg = /(['"])<((?:[^'"\\>]+|\\.)*)>?\1/;
1243
+ var importTagReg = /(['"])<((?:[^'"\\>]|\\.)*)>?\1/;
1244
1244
  function Import({
1245
1245
  node,
1246
1246
  file: { parsed, filename, lookup }
@@ -1544,7 +1544,7 @@ var findDefinition = async (doc, params) => {
1544
1544
 
1545
1545
  // src/service/marko/document-links.ts
1546
1546
  import { NodeType as NodeType6 } from "@marko/language-tools";
1547
- var importTagReg2 = /(['"])<((?:[^'"\\>]+|\\.)*)>?\1/g;
1547
+ var importTagReg2 = /(['"])<((?:[^'"\\>]|\\.)*)>?\1/g;
1548
1548
  var findDocumentLinks = async (doc) => {
1549
1549
  return processDoc(doc, extractDocumentLinks);
1550
1550
  };