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
|
@@ -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) {
|