We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49db94 commit 9fbe375Copy full SHA for 9fbe375
django_esm/utils.py
@@ -106,8 +106,6 @@ def parse_package_json(path: Path = None):
106
path / module,
107
settings.BASE_DIR / "node_modules",
108
)
109
- if name == "lit-html":
110
- print("lit-html", module)
111
except KeyError:
112
try:
113
module = exports["import"]
@@ -116,12 +114,8 @@ def parse_package_json(path: Path = None):
116
114
117
115
118
119
120
121
122
for module_name, module in exports.items():
123
124
125
module = next(find_default_key(module))
126
127
yield from get_static_from_abs_path(
0 commit comments