marko 5.38.9 → 5.38.10

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.
@@ -163,6 +163,8 @@ const entryBuilder = exports.entryBuilder = {
163
163
  for (const tag of fileMeta.tags) {
164
164
  if (tag.endsWith(".marko")) {
165
165
  visitChild(tag);
166
+ } else if (/^@lasso\/marko-taglib\//.test(tag)) {
167
+ state.hasComponents = true;
166
168
  } else {
167
169
  const importedTemplates = tryGetTemplateImports(file, tag);
168
170
  if (importedTemplates) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.38.9",
3
+ "version": "5.38.10",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -163,6 +163,8 @@ export const entryBuilder = {
163
163
  for (const tag of fileMeta.tags) {
164
164
  if (tag.endsWith(".marko")) {
165
165
  visitChild(tag);
166
+ } else if (/^@lasso\/marko-taglib\//.test(tag)) {
167
+ state.hasComponents = true;
166
168
  } else {
167
169
  const importedTemplates = tryGetTemplateImports(file, tag);
168
170
  if (importedTemplates) {